property Item | |
Syntax: | VARIANT*pVal = object.Item ( Index ) |
Parameters: |
Index As
Variant -
Index within in the collection. 1 based. |
Description: | Example: Dim oTrkItemType As Object Dim oTrkItemTypes As Object Set oTrkItemTypes =
CreateObject("Tracker.TrkItemTypes") For i = 1 To oTrkItemTypes.count Set oTrkItemType = oTrkItemTypes.item(i) trace "Item Class " & oTrkItemType.ItemClass Next i ... |