TComboBoxExStyleEx and TComboBoxExStyles configure the behavior of extended combo box controls.
TComboBoxExStyleEx = ( csExCaseSensitive, csExNoEditImage, csExNoEditImageIndent, csExNoSizeLimit, csExPathWordBreak );
enum TComboBoxExStyleEx { csExCaseSensitive, csExNoEditImage, csExNoEditImageIndent, csExNoSizeLimit, csExPathWordBreak };
ComCtrls
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 can't 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). |
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|