Writes an integer value to the JSON ini file
Source position: jsonini.pp line 70
public procedure TJSONIniFile.WriteInteger( |
const Section: string; |
const Ident: string; |
Value: LongInt |
); override; |
Section |
|
The section name to write to |
Ident |
|
The key name to write |
Value |
|
The integer value to write |
WriteInteger writes an integer 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 an integer value from the JSON ini file |
|
|
Writes a 64-bit integer value to the JSON ini file |