windowsforms-devexpress-dot-xtragrid-dot-columns-dot-optionscolumnfilter-b7b5e138.md
Gets or sets whether the column’s values can be filtered using the auto filter row.
Namespace : DevExpress.XtraGrid.Columns
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool AllowAutoFilter { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Overridable Property AllowAutoFilter As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the column’s values can be filtered using the automatic filtering row; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AllowAutoFilter |
|---|---|
| GridColumn |
.OptionsFilter .AllowAutoFilter
|
If the View’s GridOptionsView.ShowAutoFilterRow option is set to true the automatic filtering row can be used to filter data against specific columns. If however a column’s AllowAutoFilter property is set to false its data cannot be filtered via this row (the auto filter row’s cell for this column will be disabled).
See Also