diff --git a/docs/xml/lcl/stdctrls.xml b/docs/xml/lcl/stdctrls.xml index 94866635ca..c5d2c90a20 100644 --- a/docs/xml/lcl/stdctrls.xml +++ b/docs/xml/lcl/stdctrls.xml @@ -1617,10 +1617,10 @@ Despite similarities in appearance to TCustomEdit and (Delphi compatible).
-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 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 @@ -1633,12 +1633,12 @@ 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. +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 Style to control the display style and drawing mechanism +enabled for the drop-down list on the control.
Use AutoDropDown, AutoComplete,
@@ -1850,6 +1850,39 @@ value is assigned to the TextHint property.
+Called when the editable value in Text is stored for the control, including
+when a key up event causes the auto-completed text to be updated for the
+control.
+
+Returns True if the position where the specified value is stored was
+different than the position in ItemIndex.
+
RealSetText is an overridden method in TCustomComboBox.
It ensures that ItemIndex is updated with the ordinal position in
-Items where the AValue argument is found. MatchListItem
-is called to get the position for AValue using the case sensitivity and search
-order settings in the AutoCompleteText. If there are no values stored in
-Items, ItemIndex is set to -1. A visible emulated TextHint
-is hidden when AValue is not an empty string ('').
+Items where the AValue argument is found. The value in
+ItemIndex is determined by locating the specified value using the case
+sensitivity and search order settings in the AutoCompleteText. If there are no
+values stored in Items, or AValue is not stored there, ItemIndex is set to
+-1.
+
+A visible emulated TextHint is hidden when AValue is not an empty
+string ('').
The inherited method is called prior to exit. This causes the widgetset class
@@ -2826,7 +2863,9 @@ method, the inherited KeyDown method is called.
KeyUp is an overridden method in TCustomComboBox, and calls the
@@ -2841,9 +2880,11 @@ the values in SelText and Text are the same.
In addition, alphanumeric key codes are used to perform AutoComplete text
location using the options enabled in the AutoCompleteText
-property. The values in Text, SelStart, and SelLength
-are updated (when needed) and the Select method is called to
-reflect the operation.
+property. The values in Text, SelStart, and
+SelLength are updated (when needed) and the Select
+method is called to reflect the operation. If the key causes the
+auto-completed text to differ from the value in Text, ItemIndex is updated to
+reflect the auto-completed text value.
KeyUp is called when TLMKeyUp control messages are processed in
@@ -2860,6 +2901,7 @@ the handlers for the control.
+
TWinControl.KeyUp