InputChannels is a collection of InputChannel objects. A InputChannels collection is used to obtain the available input channels of the current video capture device. The ICImagingControl.InputChannels property returns a InputChannels collection.
This example shows how to fill a combo box with the available input channels:
Dim InpCol As InputChannels Dim Channel As InputChannel Set InpCol = ICImagingControl1.InputChannels For Each Channel In InpCol cboInputChannelComboBox.AddItem Channel.Name Next
Property | Description | ||
Count | Returns the count of InputChannel objects in the collection. |
||
Item | Returns the InputChannel at the specified position. |
||
Method | Description | ||
FindIndex | Searches the collection for a given string. The string contains the name of an input channel. |
||