Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomTextEditProperties.LookupItems Property

Specifies the list of words required to implement the automatic completion feature within an editor.

#Declaration

Delphi
property LookupItems: TStrings read; write;

#Property Value

Type
TStrings

#Remarks

The LookupItems property specifies the list of words, which will be automatically completed when a user enters their first symbols into an editor. Set the editor’s Properties.IncrementalSearch property to True to enable the automatic completion feature within the editor.

Important

The auto-complete is not supported in the masked mode (the mask is specified via the EditMask property).

The LookupItemsSorted property determines whether the automatic completion words list is sorted in alphabetical order. The automatic completion words list can be navigated through by pressing the Up and Down keys when the editor has focus (implemented for all editors starting from TcxCustomDropDownEdit).

See Also