Set the value of a business object in a business object array.
Syntax
void setElementAt (int index, BusObj element)
Parameters
Exceptions
CollaborationException--The setElementAt() method can set the following exception type for this exception:
Notes
This method sets the values of the business object at a specified array position to the values of an input business object.
Examples
The following example creates a new business object of type Item and adds it to the array items, as the fourth element.
items.setElementAt(3, new BusObj("Item"));