Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XPView.GroupCriteriaString Property

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

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.2.dll

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