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 a new TCustomColorBox object.

Call Create to instantiate a color box at runtime. TCustomColorBox objects placed on a form at design time are created automatically.

AOwner specifies the owner of the color box. This component (typically the form) is responsible for freeing the color box.

See Also