{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}

MakeArray

Creates an array and initializes it with values x1 to xn.

Usage:

MakeArray( x1, ..., xN )

Parameters:

x1 The value that initialises the first array element
xn The value that initialises the last array element

If there were no parameters passed to the MakeArray function, this call will result in an empty, untyped value.

Returns:

New array with initialized values according to the input values.

Examples:

//creates an new array
MakeArray(1,4,2,4,3,2,1,7)	//[1,4,2,4,3,2,1,7]
//creates an new array and stores it into a new array variable
NumberVar array variable := MakeArray(1,4,2,4,3,2,1,7)