Skip to main content
.NET 6.0+

XPView.GroupCriteriaString Property

Gets or sets the grouping criteria which is associated with the view.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

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

Property Value

Type Default Description
String null

A String value that specifies the grouping criteria.

Remarks

This example retrieves the cars that are in the Saloon category and cost less than $100,000.

xpView1.GroupCriteriaString = "[Category] = 'Saloon' AND [Price] < 100000";
See Also