ICImagingControl.SaveDeviceStateToFile Method

Saves the currently opened device and its settings to a file.
Syntax:
[C#]
public void SaveDeviceStateToFile( string filename );
Parameter Description
filename

The name of a device settings file to be (re-)created.

Limitations:

A valid device must be opened.

Remarks:

SaveDeviceStateToFile saves the following settings of IC Imaging Control:

  • Opened Device and its serial number
  • Video norm
  • Video format
  • Input channel
  • Frame rate
  • Vertical Flip
  • Horizontal Flip
  • All VCDProperties

With ICImagingControl.LoadDeviceStateFromFile, you can re-open the device with the saved settings.

Information:

Introduced in version 2.0

Sample:

The following example saves the currently opened device to a file named "device.dat".

[C#]
ICImagingControl1.SaveDeviceStateToFile("device.dat");
See also: ICImagingControl, ICImagingControl.LoadDeviceStateFromFile

<< ICImagingControl