MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportSection Class / Label Property
Example

In This Topic
Label Property (ReportSection)
In This Topic
Gets or sets a label to identify an instance of a report section within the client UI, providing a user-friendly label in the Document Map or in Dashboard tabs.
Syntax
'Declaration
 
Public Property Label As ExpressionInfo
 

Property Value

An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing the label for the report section.
Example
ReportSection section = new ReportSection();
section.Label = ExpressionInfo.FromString("Section Label");
See Also