Property: Default for Property <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: Default for Property <DataPlugin>
Property: Default for Property <DataPlugin>
Specifies whether a property is a base property.
Object.Default
| Object | Property <DataPlugin> Object with this property |
| Object.Default | LongInteger 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