DataTree.Delete
Deletes key or value.
[C++]
bool Delete(char* Key, char* ValueName);
[Pascal]
function Delete(Key, ValueName : string): Boolean;
[VB6]
not applicable;
[ActiveX]
not applicable;
[C#]
public bool Delete(string Key, string ValueName);
[VB.NET]
Public Function Delete(ByVal Key As String, ByVal ValueName As String) As Boolean
[Java]
public boolean Delete(String Key, String ValueName);
[Java ME]
public boolean Delete(String Key, String ValueName);
[Palm]
bool Delete(char* Key, char* ValueName);
[DLL]
not applicable;
- Key - key name. For more information look here.
- ValueName - name of the value you want to delete. If you don't set this parameter then key with all subkeys and values will be deleted. For more information look here.
True on success
False if non-existent value or root key is specified.
Use this method to delete key or value. If you delete key all its values and subkeys are deleted.
|