System.JSON.Builders.TJSONCollectionBuilder.TParentType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TParentType = (None, Elements, Pairs);

C++

enum class DECLSPEC_DENUM TParentType : unsigned char { None, Elements, Pairs };

Properties

Type Visibility Source Unit Parent
enum public
System.JSON.Builders.pas
System.JSON.Builders.hpp
System.JSON.Builders TJSONCollectionBuilder

Description

Defines the possible parent item types.

TParentType can have one of the following values:

  • Elements: Indicates that the parent item is an array, therefore a TElements.
  • Pairs: Indicates that the parent item is an object, therefore a TPairs.
  • None: Indicates that there is no parent item.

See Also