ICImagingControl.VideoFormatCurrent Property

Returns the selected Videoformat object.
Syntax:
[C#]
public TIS.Imaging.VideoFormat VideoFormatCurrent;
Information:

Introduced in version 3.1

Sample:

This example shows how to query the current used video format and show its height:

[C#]
TIS.Imaging.VideoFormat CurrentVideoFormat = null; CurrentVideoFormat = ICImagingControl1.VideoFormatCurrent; if( CurrentVideoFormat != null ) { Console.WriteLine("Current video format height is " + CurrentVideoFormat.Height.ToString()); } else { Console.WriteLine("Currently no device opened"); }
See also: VideoFormat

<< ICImagingControl