ArrayInsertat()

Adds an element to this array/xml object at the given index. Throws exception is out of bounds

Usage

BOOLEAN = ArrayInsertat( array, index, data )
Argument Summary
array Array Object or XML object
index Position index to add
data Data to add

Calling

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

ArrayInsertat(
   array=?, 
   index=?, 
   data=?
);

Supports passing parameters as a structure using ArgumentCollection:

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