The Item property returns a data object from a collection.
DUOSObjects.Item(objectID)
• DUOSObjects – A collection of data objects in the DUOS.
• objectID – The unique identifier for the data object in the collection.
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")