Vcl.ExtCtrls.TCustomCategoryPanel.GetChildren
Delphi
procedure GetChildren(Proc: TGetChildProc; Root: TComponent); override;
C++
DYNAMIC void __fastcall GetChildren(System::Classes::TGetChildProc Proc, System::Classes::TComponent* Root);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Vcl.ExtCtrls.pas Vcl.ExtCtrls.hpp |
Vcl.ExtCtrls | TCustomCategoryPanel |
Description
Calls a specified procedure for every control in the category panel.
GetChildren is called by the streaming system that loads and saves components. Applications seldom need to call this routine.
GetChildren executes the callback specified by the Proc parameter for every child control listed by the Controls property.
Override GetChildren to limit or augment which child controls are saved with the control. When overriding GetChildren, call the procedure passed as the Proc parameter for every child control that should be saved.
The Proc parameter defines the callback.
The Root parameter is ignored.