Array SetValRange

From MultiCharts
Revision as of 14:44, 20 January 2012 by 194.84.116.138 (talk) (Created page with "Assigns a specified value to each element within a specified range, of the specified one-dimensional array. ==== Usage ==== <syntaxhighlight>Array_SetValRange(ArrayName,Sta...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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);