IsJsonObject method: JsonObject class

Syntax

IsJsonObject(Name)

Description

Use this method to check whether the property is a Json object.

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 &bIsJsonObj = &jObj.IsJsonObject("Name");