The Item property returns a single InfoStore object from the InfoStores collection. Read-only.
objInfoStoresColl.Item(index)
objInfoStoresColl.Item(storeName)
The Item property is the default property of an InfoStores collection, meaning that objInfoStoresColl(index) is syntactically equivalent to objInfoStoresColl.Item(index) in Microsoft® Visual Basic® code.
Object (InfoStore)
The Item property works like an accessor property for small collections.
Although the Item property itself is read-only, the InfoStore object it returns can be accessed in the normal manner, and its properties retain their respective read/write or read-only accessibility.
For more information on using the Count and Item properties in an InfoStores collection, see the example in the Count property.