DataTree.EnumValues
Fills the Strings list with names of values of the specified key.
[C++]
bool EnumValues(char* Key, TStringList* Strings);
[Pascal]
function EnumValues(Key : string; Strings : Strings): Boolean;
[VB6]
not applicable;
[ActiveX]
not applicable;
[C#]
public bool EnumValues(string Key, ArrayList Strings);
[VB.NET]
Public Function EnumValues(ByVal Key As String, ByVal Strings As ArrayList) As Boolean
[Java]
public boolean EnumValues(String Key, Vector Strings);
[Java ME]
public boolean EnumValues(String Key, Vector Strings);
[Palm]
bool EnumValues(char* Key, TStringList* Strings);
[DLL]
not applicable;
- Key - key name. For more information look here.
- Strings - name of list where names of valies will be written.
True on success.
False on failure.
Use this method to get names of all values of the specified key.
|