API:Vcl.ExtCtrls.TCustomColorBox.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomColorBox

Description

Creates and initializes a TCustomComboBox instance.

Vcl.ExtCtrls.TCustomColorBox.Create inherits from Vcl.StdCtrls.TCustomComboBox.Create. All content below this line refers to Vcl.StdCtrls.TCustomComboBox.Create.

Creates and initializes a TCustomComboBox instance.

Call Create to generate a combo box at runtime. Combo boxes placed on forms at design time are created automatically.

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

See Also