GetInteger method: JsonValue class

Syntax

GetInteger()

Description

Use this method to return integer value of the object.

Parameters

None.

Returns

Integer.

Example

Local JsonValue &jVal = CreateJsonValue();
&jVal.SetInteger(5);
Local integer &jValInt = &jVal.GetInteger();