Remove an element at a particular position in this business object array.
Syntax
void removeElementAt(int index)
Parameters
Exceptions
CollaborationException--The removeElementAt() method can set the following exception type for this exception:
Notes
After an element is removed from the array, the array resizes, possibly changing the indexes of existing elements.
Examples
The following example deletes the sixth business object in the array items.
items.removeElementAt(5);