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

DataViewBase.IncrementalSearchMode Property

Gets or sets a value specifying whether end-users can locate rows by typing the desired column value.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.Core.dll

Declaration

public IncrementalSearchMode IncrementalSearchMode { get; set; }

Property Value

Type Description
IncrementalSearchMode

An IncrementalSearchMode enumeration value that is the incremental search mode.

Available values:

Name Description
Disabled

The incremental search is disabled.

Default

For the master or regular grid, the incremental search is disabled by default. For the detail grid, the incremental search is enabled if the incremental search for the master grid is enabled.

Enabled

The incremental search is enabled.

Remarks

The incremental search is disabled by default. To enable incremental search for the GridControl’s View, set the IncrementalSearchMode property to IncrementalSearchMode.Enabled.

To disable the incremental search for a specific column, set its ColumnBase.AllowIncrementalSearch property value to false.

Note

Master-detail representation specifics.

If the detail View’s IncrementalSearchMode property is set to IncrementalSearchMode.Default, the incremental search functionality will be enabled in the detailed view if this functionality is enabled in the master view.

See Also