Object: Property <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
(Channel
Object: Property <DataPlugin>
The Property object provides a property for the Root object, for the ChannelGroup object, or for the Channel object. This property is either a base property of the data model, or a user-defined custom property.
The following example checks all Root properties and creates the Sensor_Type property if this property does not exist.
Dim oMyProp, bFound For Each oMyProp in Root.Properties If oMyProp.Name = "Sensor_Type" Then bfound = TRUE End If Next If not bFound Then Call Root.Properties.Add("Sensor_type","TC-N") End If