ICImagingControl.LoadDeviceState Method

Restores the device settings saved with ICImagingControl.SaveDeviceState.
Syntax:
Public Sub LoadDeviceState( deviceStateString As String, OpenDevice As Boolean )
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 IC Imaging Control 2.0

Sample:

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

Dim deviceStateString As String
' Assume the string contains data
ICImagingControl1.LoadDeviceState deviceStateString, false
ICImagingControl1.LiveStart
See also: ICImagingControl, ICImagingControl.SaveDeviceState

<< ICImagingControl