Property: ChannelGroup for ImplicitChannel
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: ChannelGroup for ImplicitChannel
Property: ChannelGroup for ImplicitChannel
Specifies the channel group to which the implicit channel is assigned.
Set oChannelGroup = Object.ChannelGroup
Object | ImplicitChannel Object with this property |
oChannelGroup | ChannelGroup <DataPlugin> Returned object |
The following example displays the name of the channel group that contains the Temp channel:
Dim i, oMyChn For i = 1 to Root.ChannelGroups.Count For Each oMyChn in Root.ChannelGroups(i).Channels If oMyChn.Name = "Temp" Then Call MsgBoxDisp(oMyChn.ChannelGroup.Name) End If Next Next