diff --git a/docs/xml/lcl/stdctrls.xml b/docs/xml/lcl/stdctrls.xml index 6d08d525e1..208109e1f6 100644 --- a/docs/xml/lcl/stdctrls.xml +++ b/docs/xml/lcl/stdctrls.xml @@ -1595,7 +1595,9 @@ height items when enabled in settings for the control. -The base class for combo-box components. + +The base class for combo-box components. +

TCustomComboBox is a TWinControl descendant which @@ -1604,10 +1606,10 @@ Component Library).

A combo-box is visually represented as an edit control and a scrollable list -of items which can be selected. The list can be always visible, or opened -when needed using a drop-down indicator. In addition, the items in the -control be drawn using using the built-in mechanisms for the widgetset class -or using an owner-drawn style. +of items which can be selected. The list can always be visible, or opened +when needed using a drop-down indicator. In addition, the items displayed on +the control be drawn using using the built-in mechanisms for the widgetset +class or using an owner-drawn style.

Despite similarities in appearance to TCustomEdit and @@ -1615,19 +1617,38 @@ Despite similarities in appearance to TCustomEdit and (Delphi compatible).

-Use the Style property to control the display style and drawing -mechanism enabled for Items in the control. +Use Items to access the entries displayed in the drop-down list. Use +AddItem or AddHistoryItem to add entries to +the list of items. Use OnGetItems to dynamically populate the Items +in the control when the drop-down list is displayed.

-Use properties like AutoComplete, AutoCompleteText, and -AutoDropDown to control the behavior of the edit field or -drop-down list in the control. +The selectable values in Items can be maintained at design-time by +clicking on the ellipsis character (...) displayed next to Items in the +Object Inspector.

-Use Items to access existing list items defined the control. Use -AddItem or AddHistoryItem to add entries to the list -items in the control. Use OnGetItems to dynamically populate the -Items in the control when the drop-down list is displayed. +The Text property reflects the text entered directly into the edit +box, or selected either manually or by auto-completion from the Items in the +list. At run-time, the entry selected from the list replaces the text in the +edit box, and ItemIndex holds the (zero-based) index number of the +selected item. If no value is selected from the drop-down list, the default +text (if any) remains for any information typed directly into the control Text, +and ItemIndex takes the value of -1. +

+

+Use Style to control the display style and drawing mechanism enabled +for the drop-down list on the control. +

+

+Use AutoDropDown, AutoComplete, +AutoCompleteText, and AutoDropDown to control the +behavior of the edit box and its interaction with the drop-down list on the +control. +

+

+Use ItemHeight and ItemWidth to control the appearance +for the Items displayed on the drop-down list.

Do not create instances of TCustomComboBox. Use one of the descendent @@ -1635,10 +1656,19 @@ classes, like TComboBox or TComboBoxEx.

The Height property in TCustomComboBox / TComboBox cannot be changed for some -platforms, including Windows and macOS Carbon. It is best to set AutoSize to +platforms, including Windows and macOS. It is best to set AutoSize to True to ensure consistent size handling on the supported platforms. + +Changing the value in BorderStyle to bsNone has no effect for the Windows +widgetset. It is not possible to remove the border on the Windows platform. +
+ + + +TComboBoxEx +
@@ -4293,44 +4323,77 @@ set to True and the mouse is over the control. -A combination of an edit box and a (drop-down) list allowing one of several -options to be chosen. +Implements a control with an edit box and a drop-down list allowing one of +several options to be chosen.

-The Text property reflects the text entered into the edit box, or selected -from the list. +TComboBox is a TCustomComboBox descendant which +implements the a combo-box component in the LCL (Lazarus Component Library).

-The selectable values are kept in the Items list. Clicking on the -ellipsis character (...), next to Items in the Object -Inspector, opens an editor which allows the designer to populate the Items -list. +A combo-box is visually represented as an edit control and a scrollable list +of items which can be selected. The list can always be visible, or opened +when needed using a drop-down indicator. In addition, the items displayed on +the control be drawn using using the built-in mechanisms for the widgetset +class or using an owner-drawn style.

-At run-time, the entry selected from the list replaces the text in the edit -box, and ItemIndex holds the (zero-based) index number of the -selected item. +Despite similarities in appearance to TCustomEdit and +TCustomList, the class inherits no properties from these classes +(Delphi compatible).

-If no value is selected from the drop-down list, the default text (if any) -remains, or any information typed directly into Text will be -returned, and ItemIndex takes the value of -1. +Use Items to access the entries displayed in the drop-down list. Use +AddItem or AddHistoryItem to add entries to +the list of items. Use OnGetItems to dynamically populate the Items +in the control when the drop-down list is displayed. +

+

+The selectable values in Items can be maintained at design-time by +clicking on the ellipsis character (...) displayed next to Items in the +Object Inspector. +

+

+The Text property reflects the text entered directly into the edit +box, or selected either manually or by auto-completion from the Items in the +list. At run-time, the entry selected from the list replaces the text in the +edit box, and ItemIndex holds the (zero-based) index number of the +selected item. If no value is selected from the drop-down list, the default +text (if any) remains for any information typed directly into the control Text, +and ItemIndex takes the value of -1. +

+

+Use Style to control the display style and drawing mechanism enabled +for the drop-down list on the control. +

+

+Use AutoDropDown, AutoComplete, +AutoCompleteText, and AutoDropDown to control the +behavior of the edit box and its interaction with the drop-down list on the +control. +

+

+Use ItemHeight and ItemWidth to control the appearance +for the Items displayed on the drop-down list.

-The Height property in TComboBox cannot be changed for some platforms, like -Windows and macOS Carbon. It is best to set AutoSize to True to ensure -consistent size handling on the supported platforms. +The Height property in TCustomComboBox / TComboBox cannot be changed for some +platforms, including Windows and macOS. It is best to set AutoSize to +True to ensure consistent size handling on the supported platforms. Changing the value in BorderStyle to bsNone has no effect for the Windows -widgetset. It is impossible to remove the border under Windows. +widgetset. It is not possible to remove the border on the Windows platform.
- + + +TComboBoxEx +