'Usage
Dim instance As DataItemCollection Dim index As Integer Dim value As DataItem instance.Item(index) = value value = instance.Item(index)
Parameters
- index
- The zero-based index in the collection to get or set.
'Usage
Dim instance As DataItemCollection Dim index As Integer Dim value As DataItem instance.Item(index) = value value = instance.Item(index)
This method implements a standard collection operation. It is one of the principle methods you will use to read or change elements in the collection. You can read or modify any element in the collection with this method.
You can indicate the element you are interested in with an integer. The index should be a zero-based index to the element in the collection.