ArrayAppend()

Adds a new element to the end of the array, or if an XML object, adds a new child element.

Usage

BOOLEAN = ArrayAppend( array, toadd )
Argument Summary
array Array Object or XML object
toadd Data to add

Calling

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

ArrayAppend(
   array=?, 
   toadd=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayAppend( ArgumentCollection={
   array : ?, 
   toadd : ?
} );