windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-vgridoptionsfind-309e15f4.md
Gets or sets the delay, in milliseconds, after which a data search is initiated (if automatic search mode is active).
Namespace : DevExpress.XtraVerticalGrid.Rows
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[DefaultValue(1000)]
[XtraSerializableProperty]
public virtual int FindDelay { get; set; }
<DefaultValue(1000)>
<XtraSerializableProperty>
Public Overridable Property FindDelay As Integer
| Type | Default | Description |
|---|---|---|
| Int32 | 1000 |
An integer that specifies the delay, in milliseconds, after which a data search is initiated.
|
You can access this nested property as listed below:
| Object Type | Path to FindDelay |
|---|---|
| VGridControlBase |
.OptionsFind .FindDelay
|
When using the Find Panel, you can use the VGridOptionsFind.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