System.Win.Registry.TRegistryIniFile.ReadSubSections
Delphi
procedure ReadSubSections(const Section: string; Strings: TStrings; Recurse: Boolean = False); override;
C++
virtual void __fastcall ReadSubSections(const System::UnicodeString Section, System::Classes::TStrings* Strings, bool Recurse = false);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.Win.Registry.pas System.Win.Registry.hpp |
System.Win.Registry | TRegistryIniFile |
Description
Reads the names of all sections in a registry key into a string list.
Call ReadSubSections to retrieve the names of all sections in a registry key into a string list object.
Strings specifies the string object to hold the retrieved names. Strings can point to a TStrings object, or to a component property, such as Items for a TListBox component, that is a TStrings object itself.
ReadSubSections retrieves the names of all subsections if Recurse is True.