Sets the object at the specified index into the given vector object to the specified object.
Syntax
setElementAt( vector , object , index )
vector.setElementAt( object , index )
Parameters
vector
|
the vector object use.
|
object
|
object to use.
|
index
|
which object to replace [ 0 , size - 1 ].
|
Returns
Example
v.setElementAt( object, index )
|