Skip to main content
.NET 6.0+

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.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[Browsable(false)]
[DefaultValue(null)]
public string FilterString { get; set; }

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";
See Also