windowsforms-devexpress-dot-xtratreelist-dot-columns-dot-treelistoptionsfind-c731e37e.md
Gets or sets whether or not end-users can utilize incremental search to find required records.
Namespace : DevExpress.XtraTreeList.Columns
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool AllowIncrementalSearch { get; set; }
<DefaultValue(False)>
<XtraSerializableProperty>
Public Overridable Property AllowIncrementalSearch As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if end-users can utilize incremental search to find required records; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AllowIncrementalSearch |
|---|---|
| TreeList |
.OptionsFind .AllowIncrementalSearch
|
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.
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