Property: Properties for ChannelGroup <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: Properties for ChannelGroup <DataPlugin>
Property: Properties for ChannelGroup <DataPlugin>
Contains the Properties collection associated with a ChannelGroup object.
Set oProperties = Object.Properties
Object | ChannelGroup <DataPlugin> Object with this property |
oProperties | Properties <DataPlugin> Returned object |
The following example checks all properties of the first channel group. The example creates the group property Test_Status if this property does not exist.
Dim oMyGrp, oMyProp, bFound Set oMyGrp = Root.ChannelGroups(1) For Each oMyProp in oMyGrp.Properties If oMyProp.Name = "Test_Status" Then bfound = TRUE End If Next If not bFound Then Call oMyGrp.Properties.Add("Test_Status","Pass") End If