Skip to main content

TreeListOptionsFind.AllowIncrementalSearch Property

Gets or sets whether or not end-users can utilize incremental search to find required records.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool AllowIncrementalSearch { get; set; }

Property Value

Type Default Description
Boolean false

true if end-users can utilize incremental search to find required records; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowIncrementalSearch
TreeList
.OptionsFind .AllowIncrementalSearch

Remarks

To find a specific record, an end-user can focus any record within a TreeListColumn and start typing. The first record that matches the text a user types will be highlighted.

TreeList - Incremental Search

If there are more records that match this text, end-users can navigate through them by pressing CTRL+UP and CTRL+DOWN keys. Unless the TreeListOptionsFind.ExpandNodesOnIncrementalSearch setting is enabled, it is impossible to navigate to matching records within collapsed nodes.

To enable or disable the incremental search feature for a specific TreeList column, utilize the TreeListColumn.AllowIncrementalSearch property.

See Also