'Usage
Dim instance As DataItemCollection Dim value As DataItem instance.Remove(value)
Parameters
- value
- The DataItem to remove from the collection.
'Usage
Dim instance As DataItemCollection Dim value As DataItem instance.Remove(value)
This method implements a standard collection operation. It will search the collection for the given DataItem and remove it from the collection. If there are multiple occurrences of the object in the collection, this method will remove only the first one (the one with the lowest index.) If there are no occurrences of the given object, this method will do nothing.