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