API:Vcl.FileCtrl.TDriveComboBox

From RAD Studio API Documentation
Jump to: navigation, search

Vcl.StdCtrls.TCustomComboBoxVcl.StdCtrls.TCustomComboVcl.Controls.TCustomListControlVcl.Controls.TWinControlVcl.Controls.TControlSystem.Classes.TComponentSystem.Classes.TPersistentTDriveComboBox

Delphi

TDriveComboBox = class(TCustomComboBox)

C++

class PASCALIMPLEMENTATION TDriveComboBox : public Vcl::Stdctrls::TCustomComboBox

Properties

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

Description

TCustomComboBox is the base class for combobox components.

Vcl.FileCtrl.TDriveComboBox inherits from Vcl.StdCtrls.TCustomComboBox. All content below this line refers to Vcl.StdCtrls.TCustomComboBox.

TCustomComboBox is the base class for combobox components.

Use TCustomComboBox as a base class when defining a control that represents a specialized Windows combo box. A combo box is an edit box with a scrollable list attached to it; users can select an item from the list or type directly into the edit box. 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 uses the extended combo box features such as images associated with entries, do not use TCustomComboBox. Instead, use the TCustomComboBoxEx class instead.

Do not create instances of TCustomComboBox. To put a combo box in a form, use a descendant of TCustomComboBox, such as TComboBox.

See Also