Extending product function with VBA : System Architect collections : OfCollection class : Item
  
Item
Each member of the collection has a specific index number within the collection derived when the collection is created. The item variable is an object based upon the index of the collection. Its index number or name, if known, may reference this object.
Parameters
Data type: Boolean
Read-only
Example
Dim oDef as Definition, coll as OfCollection, i as integer
Set coll = oDef.GetPropertyAsCollection("Operations")
Debug.Print coll.Name
For i = 1 to coll.Count
Debug.Print coll.Item(i).Name
Next i
See also
OfCollection class