Vcl.ComCtrls.TCustomComboBoxEx

From RAD Studio API Documentation
Jump to: navigation, search

Vcl.StdCtrls.TCustomComboVcl.Controls.TCustomListControlVcl.Controls.TWinControlVcl.Controls.TControlSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTCustomComboBoxEx

Delphi

TCustomComboBoxEx = class(TCustomCombo)

C++

class PASCALIMPLEMENTATION TCustomComboBoxEx : public Vcl::Stdctrls::TCustomCombo

Properties

Type Visibility Source Unit Parent
class public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls Vcl.ComCtrls

Description

TCustomComboBoxEx is the base class for combo box components that support extended combo box features such as images on the list entries.

Use TCustomComboBoxEx as a base class when defining a control that represents a Windows extended combo box (ComboBoxEx). An extended combo box is an edit box with a scrollable list attached to it that provides native support for item images. Users can select an item from the list or type directly into the edit box. Extended combo boxes can present the list as a drop-down list or as a list box that is always visible.

Note: To create a combo box class that does not use the extended combo box features such as images associated with entries, use the TCustomComboBox class instead.

Do not create instances of TCustomComboBoxEx. To put an extended combo box in a form, use a descendant of TCustomComboBoxEx, such as TComboBoxEx.

See Also