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

Call Create to instantiate a TDBRadioGroup object at runtime. For radio groups placed on forms at design time, Create is called automatically.

Pass a single Component as a parameter to provide the TDBRadioGroup object with an Owner that is responsible for freeing it.

Create calls the inherited constructor method, then initializes internal objects and variables used to control data access.

See Also