Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnViewOptionsFind.FindDelay Property

Gets or sets the delay in milliseconds, after which a data search is initiated (if automatic search mode is active).

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[DefaultValue(1000)]
[XtraSerializableProperty]
public virtual int FindDelay { get; set; }

#Property Value

Type Default Description
Int32 1000

An integer that specifies the delay in milliseconds, after which a data search is initiated.

#Property Paths

You can access this nested property as listed below:

Object Type Path to FindDelay
ColumnView
.OptionsFind .FindDelay

#Remarks

When using the Find Panel, you can use the ColumnViewOptionsFind.FindMode property to choose whether a data search is initiated automatically or must be started manually. In automatic search mode, a search starts after an end-user has stopped typing text, after the delay specified by the FindDelay property.

See Also