IRegistryKey.WriteDouble

Syntax

WriteDouble(ValueName: String; Value: Double);

Parameters

ValueName - name of the parameter, which value must be changed.

Value - value that must be set to the parameter in the registry.

Description

The WriteDouble method changes value of the parameter containing real numbers.

Comments

Name and new value are passed by the ValueName and Value parameters respectively. If the parameter or subkey does not exist, it is created automatically. If the parameter exists, the type and value is changed according to the entered data.

If it is required to change value of the default parameter, pass empty string ("") as a name.

Example

Sub Main;

Var

RegKey, SubKey: IRegistryKey;

Begin

RegKey := RegistryClass.CurrentUser;

SubKey := RegKey.OpenSubKey("Software\MyProject\Params", True);

SubKey.WriteDouble("Param1", 3.14);

End Sub Main;

After executing the example the real value 3.14 is set for the parameter with the Param1 name located in the subkey HKEY_CURRENT_USER\Software\MyProject\Params.

See also:

IRegistryKey