XPView.Filter Property
In This Article
Gets or sets the expression used to filter the rows displayed in the view (on the client side).
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
#Declaration
[Browsable(false)]
public CriteriaOperator Filter { get; set; }
#Property Value
Type | Description |
---|---|
Criteria |
A Criteria |
#Remarks
To clear filtering set the Filter property’s value to null (Nothing in Visual Basic).
The following sample filters the view to display only those records where the value in the Age column is less than 40.
For general information on how to filter both a data store and retrieved data, see Filtering.
See Also