The file to save the current device configuration.





In This Topic

TwainSaveConfiguration(String) Method

In This Topic
Saves to a file the current settings of the opened source, e.g. DPI, paper size, color format.
Syntax
'Declaration
 
Public Overloads Function TwainSaveConfiguration( _
   ByVal FilePath As String _
) As Boolean
public bool TwainSaveConfiguration( 
   string FilePath
)
public function TwainSaveConfiguration( 
    FilePath: String
): Boolean; 
public function TwainSaveConfiguration( 
   FilePath : String
) : boolean;
public: bool TwainSaveConfiguration( 
   string* FilePath
) 
public:
bool TwainSaveConfiguration( 
   String^ FilePath
) 

Parameters

FilePath
The file to save the current device configuration.

Return Value

TRUE if successful, FALSE otherwise -> Use TwainGetLastResultCode() and TwainGetLastConditionCode() methods for diagnosing the error.
Remarks
Before using this method check that the TWAIN state is TWAIN_SOURCE_OPEN (4) To get the TWAIN state, use the TwainGetState() method.
See Also