Link

Syntax

SetArray(array_value)

Description

Use this method to set the array value of the JSON Node.

Parameters

Name Description
array_value Specifies the array value of the JSON Node as an Array object.

Returns

None.

Example

Local array of any &aaMyArray;
   
&aaMyArray = CreateArrayAny("test", True, 6, Null);
Local PSM_JSON:Node &oNode = create PSM_JSON:Node();
   
&oNode.SetArray(&aaMyArray);