SaveSettings
Description
Stores the current camera settings in the system registry.
Syntax
[VB]
objActiveGige.SaveSettings( Profile )
[C/C++]
HRESULT SaveSettings( BSTR Profile );
Data Types
[VB]
Profile
: String
Return value
: None
Parameters
[C/C++]
Profile
[in]
The name of the registry key in which the settings will be saved.
Return Values
S_OK
Success
E_FAIL
Failure.
Example
This VB example saves the current camera settings in the registry:
Private Sub
SaveSettings_Click()
ActiveGige1.SaveSettings ("FluorescentHighRes")
End Sub
Remarks
Also see
LoadSettings
.