InputChannels.Item Property

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

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

Limitations:

Read only.

Example:

This Basic example selects the first available input channel:

Dim InpCol As VideoFormat
Set InpCol = ICImagingControl1.InputChannels
ICImagingControl1.InputChannel = InpCol.Item( 1 )
See also: InputChannels, InputChannel, InputChannels.Count, InputChannels.FindIndex

<< InputChannels