API Reference
| Classic JavaDoc |
RegistryKey.deleteValue
public void deleteValue(String subKey, String valueName)
public void deleteValue(String valueName)
Deletes the specified value in the specified sub-key of this registry key.
Throws:
Is equivalent to:
openKey(subKey).deleteValue(valueName);
subKey | the sub-key where the value is stored. |
valueName | the value name to be deleted. |
RegistryException | if this key has been closed or any other error occurs. |
public void deleteValue(String valueName)
Deletes the specified value from this registry key.Parameters:
Throws:
valueName | the value name to be deleted. |
RegistryException | if this key has been closed or any other error occurs. |
Community comments
Powered by JavaDocPlus