Previous topic

RegCurReg

Next topic

RegEnumerateKeys

This Page

RegDeleteΒΆ

RegDelete deletes the named registry value of the current key.

bool = RegDelete(ssKey)

Return Value

If the function succeeds, the return value is TRUE (1); otherwise it is FALSE (0).

Parameters

ssKey

ssKey.

Example

b = RegConnect("HKEY_CURRENT_USER");
b = RegOpen("Software\RSB\UniPlot");
// Deletes the named registry value of the current key.
print RegDelete("Stringtable");

id-1667016