Arrays

You can declare arrays for internal variables by specifying dimension(s).

To declare an array, enter the number of elements in the Dim. column of the Dictionary (see procedure here).

Declare an Array for an Internal Variable

For a multi-dimensional array (note that arrays have at most three dimensions), enter the number of elements for each dimension separated by commas (for example 2,10,4 is a 3 dimensional array, the first dimension has 2 elements, the second dimension has 10 elements, and the third dimension has 4 elements).


  • All indexes are 0 based. For example, in the case of a single dimension array, the first element is always identified by ArrayName[0].