windowsforms-devexpress-dot-xtragrid-dot-columns-dot-optionscolumn-2c654e2a.md
Gets or sets whether incremental searches can be performed on the column.
Namespace : DevExpress.XtraGrid.Columns
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public bool AllowIncrementalSearch { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Property AllowIncrementalSearch As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if incremental searches can be performed against the column; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AllowIncrementalSearch |
|---|---|
| GridColumn |
.OptionsColumn .AllowIncrementalSearch
|
If the View’s GridOptionsBehavior.AllowIncrementalSearch option is set to true incremental searches can be performed against all the columns whose AllowIncrementalSearch property is set to true. Set a column’s AllowIncrementalSearch property to false to disable incremental searches for this column.
See Also