DIAdem Help

Property: Default for Property <DataPlugin>

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

Property: Default for Property <DataPlugin>

Specifies whether a property is a base property.

Object.Default
ObjectProperty <DataPlugin>
Object with this property
Object.DefaultLongInteger with read access
The value is TRUE if the property is a base property.

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