Skip to main content

TcxCustomTextEditProperties.LookupItems Property

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

Declaration

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