API:Vcl.DBCtrls.TDBRadioGroup.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDBRadioGroup

Description

Creates and initializes a TCustomRadioGroup instance.

Vcl.DBCtrls.TDBRadioGroup.Create inherits from Vcl.ExtCtrls.TCustomRadioGroup.Create. All content below this line refers to Vcl.ExtCtrls.TCustomRadioGroup.Create.

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