{{sidenavigation.sidenavigationExpandLabel}}
{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}} {{helpModel.downloadHelpPdfDataStatus}}

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)
i-net Clear Reports
This application uses cookies to allow login. By continuing to use this application, you agree to the use of cookies.


Help - MakeArray