MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Grouping Class / GroupExpressions Property
Example

In This Topic
GroupExpressions Property
In This Topic
Gets a set of expressions by which to group the data.
Syntax
'Declaration
 
Public ReadOnly Property GroupExpressions As IList(Of ExpressionInfo)
 

Property Value

An ExpressionInfoCollection object by which to group the data.
Example
Grouping group = new Grouping();
group.GroupExpressions.Add(ExpressionInfo.FromString("=Fields!Category.Value"));
See Also