XPDataView.Filter Property
In This Article
Gets or sets the criteria used to perform client-side filtering of data view rows.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
#Declaration
[DefaultValue(null)]
public CriteriaOperator Filter { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Criteria |
null | A Criteria |
#Remarks
To clear filtering, set the Filter property to null (Nothing in Visual Basic).
#Example
The following code snippet demonstrates filtering capabilities of the XPDataView. Filter criteria specified via the XPDataView.Filter
and XPDataView.FilterString properties below, provide the identical functionality, and can be used interchangeably.
xpDataView1.Filter = CriteriaOperator.Parse("Age < 50");
xpDataView1.Filter = new BinaryOperator("Age", 50, BinaryOperatorType.Less);
xpDataView1.FilterString = "Age < 50";
See Also