Dim instance AsIntegerCollectionDim index AsIntegerDim value AsInteger
instance.Item(index) = value
value = instance.Item(index)
Parameters
index
The zero-based index in the collection to get or set.
Remarks
This method implements a standard collection operation. It is the
principle method you will use to read or change elements in the
collection. You can read or modify any element in the collection with
this method.