XPDataView.FilterString Property
Gets or sets the string representation of 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
NuGet Package: DevExpress.Xpo
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | null | A string representation of a CriteriaOperator object which specifies the filtering criteria. |
Remarks
The string assigned to this property is automatically converted to criteria using CriteriaOperator.Parse and is set to the XPDataView.Filter property.
To clear filtering, assign an empty string to the FilterString property.
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";