Skip to main content
A newer version of this page is available. .
Tab

ASPxFilterControlBase.AppliedFilterExpression Property

Gets the applied filter expression.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public string AppliedFilterExpression { get; }

Property Value

Type Description
String

A string value that specifies the applied filter expression.

Remarks

The current filter expression is specified by the ASPxFilterControlBase.FilterExpression property. To apply it, call the ASPxFilterControlBase.ApplyFilter method. In this instance, the current filter expression is assigned to the AppliedFilterExpression property.

Once applied, the current filter can be restored to the previously applied expression, specified by the AppliedFilterExpression property. To do this, use the ASPxFilterControlBase.ResetFilter method.

To obtain the applied filter expression on the client, use the ASPxClientFilterControl.GetAppliedFilterExpression method.

See Also