C++
virtual Acad::ErrorStatus ProfileExport( const ACHAR * strProfileName, const ACHAR * exportFileName ) = 0;
Description
The ACAD settings in the registry for the specified profile, strProfileName, are written out to the .arg file, exportFileName, in REGEDIT4 format.
The function could return with the following return codes:
Acad::eProfileDoesNotExist | The specified profile name is not found in the registry. |
Acad::eNoFileName | No file name specified. |
Acad::eInvalidFileExtension | The file should have an .arg extension. |
Acad::eCantOpenFile | File permission error. |
Acad::eRegistryAccessError | Could not access/update registry. |
Acad::eOk | Operation completed successfully. |
Parameters
Parameters | Description |
---|---|
strProfileName | Input profile name |
exportFileName | Output .arg file name |