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. + + +Updates the value in ItemIndex when the value at the position does not match +the specified value. + + +

+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. +

+ + +Added in LCL version 4.0. + + + + + + + + +Value compared to the existing value stored at ItemIndex, and applied to the +Text for the control. + + + +

+Returns True if the position where the specified value is stored was +different than the position in ItemIndex. +

+
+ Performs actions needed when the Sorted property is changed. @@ -2772,11 +2805,15 @@ Updates ItemIndex when the new value for the control is updated.

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. -Handles AutoComplete and AutoSelect for the control. + +Handles AutoComplete and AutoSelect for the control. +

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