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 TCustomRadioGroup instance.

Call Create to instantiate a radio group at runtime. Radio group components added to forms at design time are created automatically.

AOwner is the component that is responsible for freeing the radio group instance. It becomes the value of the Owner property.

See Also