DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Properties for ChannelGroup <DataPlugin>

Property: Properties for ChannelGroup <DataPlugin>

Contains the Properties collection associated with a ChannelGroup object.

Set oProperties = Object.Properties
ObjectChannelGroup <DataPlugin>
Object with this property
oPropertiesProperties <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
In This Section
Was this information helpful?