Syntax
AddJsonArray(json_array)
Description
Use this method to add a JsonArray to the JSON Array.
Parameters
Name | Description |
---|---|
json_array | Specifies the Json array to add to the JSON Array as a JsonArray data type. |
Returns
None.
Example
Local JsonArray &jaJson = CreateJsonArray();
/* Populate Json Array ... */
Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
&oArray.AddJsonArray(&jaJson);