aspnet-devexpress-dot-web-dot-aspxfiltercontrolbase-e54c0f0c.md
Gets the applied filter expression.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public string AppliedFilterExpression { get; }
Public ReadOnly Property AppliedFilterExpression As String
| Type | Description |
|---|---|
| String |
A string value that specifies the applied filter expression.
|
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