IsJsonArray method: JsonObject class
Syntax
IsJsonArray(Name)
Description
Use this method to check whether the property is a Json array.
Parameters
| Parameter | Description |
|---|---|
|
Name |
Specifies the name of the property that needs to be checked as a string. |
Returns
Boolean.
Example
Local JsonObject &jObj = CreateJsonObject();
&jObj.AddProperty("Name", "TYPE_STRING");
Local boolean &bIsJsonArr = &jObj.IsJsonArray("Name");