ArraySet()

Sets the range of elements to the value given

Usage

BOOLEAN = ArraySet( array, start, end, value )
Argument Summary
array Array/XML Object
start Start index
end End index
value value to set

Calling

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

ArraySet(
   array=?, 
   start=?, 
   end=?, 
   value=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArraySet( ArgumentCollection={
   array : ?, 
   start : ?, 
   end : ?, 
   value : ?
} );