Method: Item for ChannelsToProcess
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Methods > Method: Item for ChannelsToProcess
Method: Item for ChannelsToProcess
Returns the Channel object of a specific index.
Set oAbstractChannel = Object.Item(iIndex)
| Object | ChannelsToProcess Object with this method |
| iIndex | LongInteger Specifies the index of the selected channel. |
| oAbstractChannel | AbstractChannel Returned object |
The following example generates channel properties with the names of the channels that comprise the Processed channel.
For i = 1 to ProcessedChn.Channels.Count Call ProcessedChn.Properties.Add(ProcessedChn.Channels.Item(i).Name,"Composite") Next