Removes the specified object from the given vector object.
Syntax
removeElement( vector , object )
vector.removeElement( object )
Parameters
vector
|
the vector object use.
|
object
|
the object to delete.
|
Returns
boolean
|
true if the specified object existed.
false if the specified object was not found.
|
Example
v.removeElement( o )
|