Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridOptionsFilter.AllowFilter Property

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

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.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