Table of Contents

TJPrimitive.Create Constructor

Overloads

TJPrimitive.Create(Boolean)

Creates a new JSON primitive holding a Boolean value.

Syntax

Unit: Bcl.Json.Classes

constructor TJPrimitive.Create(const Value: Boolean);

Parameters

<-> Parameter Type Description
const Value Boolean The Boolean value.

See also

TJPrimitive.Create(Double)

Creates a new JSON primitive holding a Double value.

Syntax

Unit: Bcl.Json.Classes

constructor TJPrimitive.Create(const Value: Double);

Parameters

<-> Parameter Type Description
const Value Double The Double value.

See also

TJPrimitive.Create(Integer)

Creates a new JSON primitive holding an Integer value.

Syntax

Unit: Bcl.Json.Classes

constructor TJPrimitive.Create(const Value: Integer);

Parameters

<-> Parameter Type Description
const Value Integer The Integer value.

See also

TJPrimitive.Create(Int64)

Creates a new JSON primitive holding an Int64 value.

Syntax

Unit: Bcl.Json.Classes

constructor TJPrimitive.Create(const Value: Int64);

Parameters

<-> Parameter Type Description
const Value Int64 The Int64 value.

See also

TJPrimitive.Create(string)

Creates a new JSON primitive holding a string value.

Syntax

Unit: Bcl.Json.Classes

constructor TJPrimitive.Create(const Value: string);

Parameters

<-> Parameter Type Description
const Value string The string value.

See also