DIAdem Help

Property: Value for Property <DataPlugin>

  • Updated2024-09-12
  • 1 minute(s) read

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
ObjectProperty <DataPlugin>
Object with this property
Object.ValueVariant 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

Log in to get a better experience