DataTree.WriteBool
Writes boolean data to the value and returns True on success.
[C++]
bool WriteBool(char* Key, char* ValueName, bool Value);
[Pascal]
function WriteBool(Key : string; ValueName : string; Value : boolean): Boolean;
[VB6]
not applicable;
[ActiveX]
not applicable;
[C#]
public bool WriteBool(string Key, string ValueName, bool Value);
[VB.NET]
Public Function WriteBool(ByVal Key As String, ByVal ValueName As String, ByVal Value As Boolean) As Boolean
[Java]
public boolean WriteBool(String Key, String ValueName, boolean Value);
[Java ME]
public boolean WriteBool(String Key, String ValueName, boolean Value);
[Palm]
bool WriteBool(char* Key, char* ValueName, bool Value);
[DLL]
not applicable;
- Key - key name. For more information look here.
- ValueName - value name. For more information look here.
- Value - written value.
True on success.
False on failure.
Use this method to write boolean data to the value.
|