VideoNorms.Item Property

Returns the VideoNorm at the specified position.
Syntax:
Public Item(Index As Long) As VideoNorm
Parameter Description
Index

Specifies the Index of the VideoNorm to return. The Index must lie in int the range [1, VideoNorms.Count ], otherwise an error occurs.

Limitations:

Read only.

Example:

This example selects the first available video norm:

Dim VidNrmCol As VideoNorms
Set VidNrmCol = ICImagingControl1.VideoNorms
ICImagingControl1.VideoNorm = VidNrmCol.Item( 1 )
See also: VideoNorms, VideoNorm, VideoNorms.Count, VideoNorms.FindIndex

<< ICImagingControl.VideoNorms