Property: Value for Property <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: Value for Property <DataPlugin>
Property: Value for Property <DataPlugin>
Specifies the value of a property of the Root object, of the ChannelGroup object, of the Channel object, or of the ImplicitChannel object.
Object.Value
Object | Property <DataPlugin> Object with this property |
Object.Value | Variant with read and write access The Store object properties only have read access. |
The following example checks all properties of the Root object and deletes the value of this property if it is not a base property:
Dim oMyProp For Each oMyProp in Root.Properties If not oMyProp.Default Then oMyProp.Value = "" End If Next