Skip to main content

VGridOptionsFilter.AllowFilter Property

Gets or sets whether end-users can filter data using the filter dropdowns.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

Declaration

[XtraSerializableProperty]
public virtual bool AllowFilter { get; set; }

Property Value

Type Description
Boolean

true if end-users can filter data using the filter dropdowns; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowFilter
VGridControl
.OptionsFilter .AllowFilter

Remarks

End-users can filter the VGridControl‘s data using filter dropdowns which can be invoked by clicking on the filter buttons displayed within row headers. By default, all rows display these buttons enabling end-users to apply data filtering. If the AllowFilter property value is true the visibility of these buttons for each individual column can be overridden using the VGridOptionsRowFilter.AllowFilter option. If the AllowFilter property value is false, none of the row headers display filter buttons. The rows’ VGridOptionsRowFilter.AllowFilter option is ignored in this case.

For more information on data filtering, see the Filtering Overview topic.

See Also