ICImagingControl.LoadDeviceState Method

Restores the device settings saved with ICImagingControl.SaveDeviceState.
Syntax:
[C#]
public void LoadDeviceState( string deviceStateString, bool OpenDevice );
Parameter Description
deviceStateString

A string containing device information created by ICImagingControl.SaveDeviceState.

OpenDevice

If this parameter is set to false, the method does not open a new device. if the device stored in the settings is different from the one that is already opened, an error is returned. Otherwise the settings are applied to the device. If this parameter is set to true, the method will open the device specified in the settings.

Information:

Introduced in version 2.0

Sample:

The following example loads device settings from a string and starts live video:

[C#]
string deviceStateString = ""; // Assume the string contains device state information try { ICImagingControl1.LoadDeviceState(deviceStateString, false); } catch( Exception ex ) { MessageBox.Show(this, "Load device failed." + ex); } if( ICImagingControl1.DeviceValid ) { ICImagingControl1.LiveStart(); }
See also: ICImagingControl, ICImagingControl.SaveDeviceState

<< ICImagingControl