Returns the object at the specified index into the given vector object.
Syntax
elementAt( vector , index )
vector.elementAt( index )
Parameters
vector
|
the vector object to use.
|
index
|
the index into the specified vector object.
|
Returns
object
|
the element at the given index.
|
Example
value = v.elementAt( index )
|