ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Grouping Class / Label Property
Example

In This Topic
Label Property (Grouping)
In This Topic
Gets or sets a label to identify an instance of the group within the client UI, providing a user-friendly label for searching.
Syntax
'Declaration
 
Public Property Label As ExpressionInfo
 

Property Value

An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing label to identify an instance of the group within the client UI.
Example
Grouping group = new Grouping();
group.Label = ExpressionInfo.FromString("GroupLabel");
See Also