DataTree.ReadMultiString
Reads MultiString data from the specified key/value.
[C++]
bool ReadMultiString(char* Key, char* ValueName, TStringList* Strings);
[Pascal]
function ReadMultiString(Key : string; ValueName : string; Strings : TStrings): Boolean;
[VB6]
not applicable;
[ActiveX]
not applicable;
[C#]
public bool ReadMultiString(string Key, string ValueName, ArrayList Strings);
[VB.NET]
Public Function ReadMultiString(ByVal Key As String, ByVal ValueName As String, ByVal Strings As ArrayList) As Boolean
[Java]
public boolean ReadMultiString(String Key, String ValueName, Vector Strings);
[Java ME]
public boolean ReadMultiString(String Key, String ValueName, Vector Strings);
[Palm]
bool ReadMultiString(char* Key, char* ValueName, TStringList* Strings);
[DLL]
not applicable;
- Key - key name. For more information look here.
- ValueName - value name. For more information look here.
- Strings - is filled with read data on success and is not changed on failure.
True on success.
False on failure.
Use this method to read MultiString data from specified key/value. On success returns True and fills Strings with data read. On failure the Strings contents are not changed and False is returned.
Note: this method doesn't clear Strings.
|