ArrayDeleteat()

Removes an element of this array at the given index. Throws exception is out of bounds

Usage

BOOLEAN = ArrayDeleteat( array, index )
Argument Summary
array Array Object or XML object
index Position index to delete

Calling

Supports named-parameter calling allowing you to use the function like:

ArrayDeleteat(
   array=?, 
   index=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayDeleteat( ArgumentCollection={
   array : ?, 
   index : ?
} );