+1 888 340 6572

Array SetValRange

From MultiCharts
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Assigns a specified value to each element within a specified range, of the specified one-dimensional array.

Usage

Array_SetValRange(ArrayName,StartIndex,EndIndex,Value)

Where:

ArrayName - an expression specifying the name of an array
StartIndex - a numerical expression specifying the starting index for the range
EndIndex - a numerical expression specifying the ending index for the range
Value - a value to be assigned to each element within the range

Example

Assign a value of True to each element within a segment, beginning at index 4 and ending at index 6, of Array1:

Array_SetValRange(Array1,4,6,True);