Insert the specified object at the given index into the specified vector object.
Syntax
insertElementAt( vector , object , index )
vector.insertElementAt( object , index )
Parameters
vector
|
the vector object to use.
|
object
|
the object ( string, integer, double, object ) to insert.
|
index
|
where to insert the new object [ 0 , size - 1 ] into the vector object.
|
Returns
vector
|
the new vector object with the inserted object.
|
Example
v.insertElementAt( o, index )
|