Skip to main content

TreeListOptionsColumnFilter.AllowAutoFilter Property

Gets or sets whether the column’s values can be filtered using the Automatic Filtering Row.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool AllowAutoFilter { get; set; }

Property Value

Type Default Description
Boolean true

true if the column’s values can be filtered using the automatic filtering row; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowAutoFilter
TreeListColumn
.OptionsFilter .AllowAutoFilter

Remarks

If the TreeListOptionsView.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