API:System.JSON.TJSONNumber.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const Value: string); overload;
constructor Create(const Value: Double); overload;
constructor Create(const Value: Integer); overload;
constructor Create(const Value: Int64); overload;

C++

__fastcall TJSONNumber(const System::UnicodeString Value)/* overload */;
__fastcall TJSONNumber(const double Value)/* overload */;
__fastcall TJSONNumber(const int Value)/* overload */;
__fastcall TJSONNumber(const __int64 Value)/* overload */;
/* TJSONString.Create */ inline __fastcall TJSONNumber()/* overload */ : TJSONString() { }

Properties

Type Visibility Source Unit Parent
constructor public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONNumber

Description

Constructor for the TJSONString class.

System.JSON.TJSONNumber.Create inherits from System.JSON.TJSONString.Create. All content below this line refers to System.JSON.TJSONString.Create.

Constructor for the TJSONString class.

The implicit version of the Create constructor creates a null JSON string. No further changes to this string are supported.

The other version of the Create constructor creates the JSON string given through the Value argument. This argument cannot be null.

See Also