Skip to main content

DataViewBase.UseOnlyCurrentColumnInIncrementalSearch Property

Gets or sets whether the incremental search should be performed for the focused column values only.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public bool UseOnlyCurrentColumnInIncrementalSearch { get; set; }

Property Value

Type Description
Boolean

true, if an incremental search is performed against the current column only; otherwise, false.

Remarks

The UseOnlyCurrentColumnInIncrementalSearch property is set to false by default. When the incremental search is enabled (the DataViewBase.IncrementalSearchMode property is set to Enabled), the incremental search is performed within all the visible columns in the view. To disable the incremental search for a particular column, set the column’s ColumnBase.AllowIncrementalSearch property to false.

To make grid perform an incremental search for the focused column only, set the UseOnlyCurrentColumnInIncrementalSearch property to true.

See Also