Difference between revisions of "SaveSetting"
From SCAR Divi Manual
(→Description) |
(→Availability) |
||
Line 6: | Line 6: | ||
==Availability== | ==Availability== | ||
SCAR Divi 3.00 > Current | SCAR Divi 3.00 > Current | ||
+ | |||
+ | *Before SCAR 3.25 the settings were saved to the registry for the regular version and the settings file for the portable version. | ||
==Description== | ==Description== |
Revision as of 15:24, 2 July 2011
Definition
procedure SaveSetting(section, setting, value: AnsiString);
Availability
SCAR Divi 3.00 > Current
- Before SCAR 3.25 the settings were saved to the registry for the regular version and the settings file for the portable version.
Description
Saves a setting value given by the string value to the scripts settings file in the section defined by the string section with the setting name defined by the string setting.
Example
begin SaveSetting('TestScript', 'Test', 'Hello World!'); WriteLn(LoadSetting('TestScript', 'Test')); DeleteSetting('TestScript', 'Test'); end.
Output:
Hello World!