API:Vcl.DBCtrls.TDBCheckBox.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates and initializes a TCustomCheckBox instance.

Vcl.DBCtrls.TDBCheckBox.Create inherits from Vcl.StdCtrls.TCustomCheckBox.Create. All content below this line refers to Vcl.StdCtrls.TCustomCheckBox.Create.

Creates and initializes a TCustomCheckBox instance.

Call Create to generate a check box at runtime. Check boxes placed on forms at design time, Create is called automatically.

AOwner is a component, typically the form, that is responsible for freeing the check box instance.

See Also