Basic Syntax CrystalClear Syntax Before Reading Records

MakeArray( x1, ..., xn )


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

Please note: 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)

See also:


i-net software strives to provide accurate product documentation. Please give us your feedback using the form below.
NOTE: This form is for documentation feedback only. For technical assistance, please send an email to crystalclear@inetsoftware.de.

This page is: very poor very good
Comment: