|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function SaveToFile (
strPathname as string
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes SaveToFile (
string strPathname
);
|
|
[C++]
public: enumErrorCodes SaveToFile (
string strPathname
);
|
|
Parameter
|
Description
|
|
|
|
|
strPathname
|
Absolute pathname of the destination file. If this pathname should contain invalid characters, they would be automatically changed into an underscore '_' character.
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|