SetJsonArray property: JsonNode class

Syntax

SetJsonArray(jArray)

Description

Use this method to set the Json array of the node.

Parameters

Parameter Description

jArray

Specifies the Json array of the node as a JsonArray object.

Returns

None.

Example

Local JsonNode &jNode = CreateJsonNode();
Local JsonArray &jArr = CreateJsonArray();
&jNode.SetJsonArray(&jArr);