API:Vcl.ExtCtrls.TCustomRadioGroup.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomRadioGroup

Description

Creates and initializes a TCustomGroupBox instance.

Vcl.ExtCtrls.TCustomRadioGroup.Create inherits from Vcl.StdCtrls.TCustomGroupBox.Create. All content below this line refers to Vcl.StdCtrls.TCustomGroupBox.Create.

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