Reads a time value from the JSON ini file
Source position: jsonini.pp line 64
public function TJSONIniFile.ReadTime( |
const Section: string; |
const Ident: string; |
Default: TDateTime |
):TDateTime; 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 time value or default if key not found or conversion failed
ReadTime reads a time value from the specified section and key. If the stored value is a JSON number, the fractional part is extracted as the time component. If the stored value is a string, it is parsed using time format (0000-00-00Thh:nn:ss.zzz). If the key is not found or conversion fails, the Default value is returned.
|
Writes a time value to the JSON ini file |
|
|
Reads a date value from the JSON ini file |
|
|
Reads a date-time value from the JSON ini file |