ArrayGet()

Returns the element at the position given; if a binary object returns the byte at the position.

Usage

OBJECT = ArrayGet( array, index )
Argument Summary
array Array/Binary Object
index Position index

Calling

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

ArrayGet(
   array=?, 
   index=?
);

Supports passing parameters as a structure using ArgumentCollection:

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