Writes a floating-point value to the JSON ini file
Source position: jsonini.pp line 68
public procedure TJSONIniFile.WriteFloat( |
const Section: string; |
const Ident: string; |
Value: Double |
); override; |
Section |
|
The section name to write to |
Ident |
|
The key name to write |
Value |
|
The floating-point value to write |
WriteFloat writes a floating-point value to the specified section and key. The value is stored as a JSON number in the underlying JSON object. If the section does not exist, it is created automatically.
|
Reads a floating-point value from the JSON ini file |