Method: Item for Properties <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Methods > Method: Item for Properties <DataPlugin>
Method: Item for Properties <DataPlugin>
Returns the Property object associated with a specific name or with a specific index.
Set oProperty = Object.Item(PropNameOrIndex)
| Object | Properties <DataPlugin> Object with this method |
| PropNameOrIndex | Variant Specifies the name or the index of the specific property. |
| oProperty | Property <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"