Link

Syntax

AddArray(array)

Description

Use this method to add an Array object to the JSON Array.

Parameters

Name Description
array Specifies the array to add to the JSON Array as an Array object.

Returns

None.

Example

Local array of any &aaMyArray;
   
&aaMyArray = CreateArrayAny("test", True, 6, Null);
Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
   
&oArray.AddArray(&aaMyArray);