Vcl.ComCtrls.TComboBoxExStyleEx

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TComboBoxExStyleEx = (csExCaseSensitive, csExNoEditImage, csExNoEditImageIndent,
csExNoSizeLimit, csExPathWordBreak);

C++

enum DECLSPEC_DENUM TComboBoxExStyleEx : unsigned char { csExCaseSensitive, csExNoEditImage, csExNoEditImageIndent, csExNoSizeLimit, csExPathWordBreak };

Properties

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

Description

TComboBoxExStyleEx and TComboBoxExStyles configure the behavior of extended combo box controls.

TComboBoxExStyles is a set of TComboBoxExStyleEx values. These are the values in the TComboBoxExStyleEx type:


Value Meaning

csExCaseSensitive

Searches against item captions are case sensitive. This includes the automatic location of items in the list as the user types.

csExNoEditImage

The items in the list appear without any corresponding images (The combo box ignores their ImageIndex property.)

csExNoEditImageIndent

The items in the list cannot appear indented. (The combo box ignores their Indent property.)

csExNoSizeLimit

The extended combo box can be resized vertically smaller than the edit region and drop-down button. When resized in this way, the combo box appears clipped.

csExPathWordBreak

The backslash (\), forward slash (/), and period (.) characters are treated as word delimiters for keyboard navigation purposes. This enables keyboard navigation of path names and URLs. (This style is not supported on Windows 9x.)