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

In This Topic
    Name Property (ReportSection)
    In This Topic
    Gets or sets the name of the report section.
    Syntax
    'Declaration
     
    Public Property Name As String
    public string Name {get; set;}

    Property Value

    A System.String value indicating the name of the report section.
    Example
    ReportSection section = new ReportSection();
    section.Name = "Section1";
    See Also