Reads an integer value from the JSON ini file
Source position: jsonini.pp line 58
public function TJSONIniFile.ReadInteger( |
const Section: string; |
const Ident: string; |
Default: LongInt |
):LongInt; override; |
Section |
|
The section name to read from |
Ident |
|
The key name to read |
Default |
|
Default value to return if key not found or conversion failed |
The integer value or default if key not found or conversion failed
ReadInteger reads an integer value from the specified section and key. If the stored value is a JSON number, it is converted to integer. If the stored value is a string, it attempts to parse it as an integer. If the key is not found or conversion fails, the Default value is returned.
|
Writes an integer value to the JSON ini file |
|
|
Reads a 64-bit integer value from the JSON ini file |