BBjVector::insertItem
Description
Inserts an object into the vector.
Syntax
Return Value |
Method |
---|---|
void |
insertItem(int index, Object item!) |
Parameters
Variable |
Description |
---|---|
index |
This is the 0-based index at which the object will be inserted into the vector. The index must be less than or equal to the size of the vector. |
item! |
The object to be inserted into the vector. |
Return Value
None.
Remarks
Each object in this vector with an index greater or equal to the specified index is shifted upward to have an index one greater than its previous value.
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.