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