DIAdem Help

Method: Item for Properties <DataPlugin>

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

Method: Item for Properties <DataPlugin>

Returns the Property object associated with a specific name or with a specific index.

Set oProperty = Object.Item(PropNameOrIndex)
ObjectProperties <DataPlugin>
Object with this method
PropNameOrIndexVariant
Specifies the name or the index of the specific property.
oPropertyProperty <DataPlugin>
Returned object

The following example changes the value of the Description Root property.

Dim oMyProp
Set oMyProp = Root.Properties.Item("Description")
oMyProp.Value = "Example"

Log in to get a better experience