Link

Syntax

FromJsonArray(json_array)

Description

Use this method to populate the JSON Array from an existing JsonArray object.

Parameters

Name Description
json_array Specifies the Json array as a JsonArray object.

Returns

None.

Example

Local JsonArray &jaJson = CreateJsonArray();
   
/* Populate JsonArray ... */
   
Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
&oArray.FromJsonArray(&jaJson);