API:System.JSON.TJSONNumber.Value
Delphi
function Value: string; override;
C++
virtual System::UnicodeString __fastcall Value();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.JSON.pas System.JSON.hpp |
System.JSON | TJSONNumber |
Description
Returns the string content of the JSON string.
System.JSON.TJSONNumber.Value inherits from System.JSON.TJSONString.Value. All content below this line refers to System.JSON.TJSONString.Value.
Returns the string content of the JSON string.
Value returns the string representing the array of characters - contained in the FStrBuffer field - that is used to store the actual JSON string data.
Value returns an empty string ''
if
FStrBuffer keeps null
.
Compare with ToString.