Skip to main content
A newer version of this page is available. .

BaseListBoxControl.IncrementalSearch Property

Gets or sets whether incremental searching for items is enabled.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(false)]
public virtual bool IncrementalSearch { get; set; }

Property Value

Type Default Description
Boolean **false**

true if incremental searching for items is enabled; otherwise, false.

Remarks

The incremental search feature allows an end-user to quickly locate items by typing the initial characters of the item’s text. The search is performed in the forward direction. Once an item that matches the search criteria has been found, an end-user can continue searching for the next item matching the same criteria. To continue searching in the forward or backward direction, press the CTRL+DOWN ARROW and CTRL+UP ARROW keys, respectively.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the IncrementalSearch property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also