ArrayIndexexists()

Determines if the index exists within the array or binary object

Usage

BOOLEAN = ArrayIndexexists( array, index )
Argument Summary
array Array/Binary Object
index Position index

Calling

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

ArrayIndexexists(
   array=?, 
   index=?
);

Supports passing parameters as a structure using ArgumentCollection:

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