ArrayResize()

Grows the size of the array to the value givens

Usage

BOOLEAN = ArrayResize( array, size )
Argument Summary
array Array Object
size Size value

Calling

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

ArrayResize(
   array=?, 
   size=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayResize( ArgumentCollection={
   array : ?, 
   size : ?
} );