VideoNorms is a collection of VideoNorm objects. A VideoNorms collection is used to obtain the available video norms of the current video capture device. The ICImagingControl.VideoNorms property returns a VideoNorms collection.
This example shows how to fill a combo box with the available video norms:
Dim VidNrmCol As VideoNorms Dim VidNrm As VideoNorm Set VidNrmCol = ICImagingControl1.VideoNorms For Each VidNrm In VidNrmCol cboVideoNormComboBox.AddItem VidNrm.Name Next
Property | Description | ||
Count | Returns the count of VideoNorm objects in the collection. |
||
Item | Returns the VideoNorm at the specified position. |
||
Method | Description | ||
FindIndex | Searches the collection for a given string. The string contains the name of a video norm. |
||