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, can reference this object.
Parameters
Data type: Boolean
Read-only
Example
Dim coll As SACollection, i As Integer Set coll = Definition.MetaItem.MetaProperties For i = 1 To coll.Count Debug.Print coll.Item(i).Name Next i