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

VGridControl.ActiveFilterCriteria Property

Gets or sets the current filter criteria.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
[Browsable(false)]
public CriteriaOperator ActiveFilterCriteria { get; set; }

#Property Value

Type Description
CriteriaOperator

A CriteriaOperator object which represents the overall filter criteria.

#Remarks

The currently applied data filer can be accessed using the ActiveFilterCriteria property. If the currently applied data filter needs to be temporarily disabled, set the VGridControl.ActiveFilterEnabled property to false. To clear the applied filters, call VGridControl.ClearRowsFilter.

To specify a filter condition as a string according to the Criteria Language Syntax, use the VGridControl.ActiveFilterString property.

See Also