DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

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
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
In This Section
Was this information helpful?