Item property

Examples


The Item property returns a data object from a collection.

Syntax

DUOSObjects.Item(objectID)

Parameters

DUOSObjects – A collection of data objects in the DUOS.

objectID – The unique identifier for the data object in the collection.

Comments

The Item property is the default member of the DUOSObjects collection. If you omit the Item property from your VBA code, the collection assumes you’re returning the data object for the specified collection. The following example includes the Item property:

ItemCollection.Item("ITM001")

This example omits the Item property:

ItemCollection("ITM001")


Documentation Feedback