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 coll As SAObjects, i As Integer Set coll = sa.Encyclopedia.GetAllDiagrams coll.ReadAll For i = 1 To coll.Count Debug.Print coll.Item(i).Name Next i