mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-12 21:59:36 +02:00
LCL: TComboBoxStyle: added comments
git-svn-id: trunk@19274 -
This commit is contained in:
parent
5ad839caa4
commit
1fca13596b
@ -236,8 +236,13 @@ const
|
||||
DefaultComboBoxAutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending];
|
||||
|
||||
type
|
||||
TComboBoxStyle = (csDropDown, csSimple, csDropDownList, csOwnerDrawFixed,
|
||||
csOwnerDrawVariable);
|
||||
TComboBoxStyle = (
|
||||
csDropDown, // like an TEdit plus a button to drop down the list, default
|
||||
csSimple, // like an TEdit plus a TListBox
|
||||
csDropDownList, // like TLabel plus a button to drop down the list
|
||||
csOwnerDrawFixed, // like csDropDownList, but custom drawn
|
||||
csOwnerDrawVariable // like csDropDownList, but custom drawn and with each item can have another height
|
||||
);
|
||||
|
||||
TOwnerDrawState = TBaseOwnerDrawState;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user