Event handler for JSON floating-point values
Source position: jsonreader.pp line 80
type TOnJSONFloat = procedure( |
Sender: TObject; |
const AValue: TJSONFloat |
) of object; |
Sender |
|
Object that triggered the event |
AValue |
|
Floating-point value found in the JSON data |
TOnJSONFloat is an event handler type that is called when a JSON floating-point number value is encountered during parsing. The event provides the sender object and the floating-point value that was found in the JSON data.
|
Event fired when a JSON floating-point value is encountered |