Vcl.StdCtrls.TCustomGroupBox.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TCustomGroupBox(System::Classes::TComponent* AOwner);
/* TWinControl.CreateParented */ inline __fastcall TCustomGroupBox(HWND ParentWindow) : Vcl::Controls::TCustomControl(ParentWindow) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomGroupBox

Description

Creates and initializes a TCustomGroupBox instance.

Call Create to instantiate a group box at runtime. Group boxes placed on forms at design time are created automatically.

AOwner is the component, typically a form, that is responsible for freeing the group box. It becomes the value of the Owner property.

See Also