ET_JsonValueType

Overview

Type:

Enumeration

Available as of:

V1.4.15.0

Description

The enumeration ET_JsonValueType specifies the type of the value of the selected item.

Enumeration Elements

Name

Value (INT)

The value of the selected item ...

TypeString

1

... consists of a number of characters and is interpreted as text.

TypeNumber

2

... is interpreted as a number. A conversion to the corresponding numerical data type (for example, INT or REAL) is supported.

TypeBoolean

3

... represents a boolean type. The value is either TRUE or FALSE.

TypeNull

4

... is null.

TypeArray

5

... is an array.

TypeObject

6

... is an object.

TypeStringTrunked

7

... is the same as TypeString, but the value is truncated based on the global parameter specifying the maximum length (GPL.Gc_uiJsonMaxLengthOfValue).

TypeInvalid

8

... is invalid.

Used By

  • FB_JsonUtilities