Vcl.CheckLst.TCheckListBox.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.CheckLst.pas
Vcl.CheckLst.hpp
Vcl.CheckLst TCheckListBox

Description

Instantiates a list box control.

Vcl.CheckLst.TCheckListBox.Create inherits from Vcl.StdCtrls.TCustomListBox.Create. All content below this line refers to Vcl.StdCtrls.TCustomListBox.Create.

Instantiates a list box control.

Call Create to instantiate a list box control at runtime. For list boxes created at design time, Create is called automatically.AOwner is the component that is responsible for freeing the list box. It becomes the value of the Owner property. If AOwner is nil, the caller is responsible for explicitly freeing the control.

See Also