ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ReportHeader Class
Members Example

In This Topic
    ReportHeader Class
    In This Topic
    The ReportHeader section is printed once at the beginning of the report.
    Object Model
    ReportHeader Class
    Syntax
    'Declaration
     
    Public Class ReportHeader 
       Inherits Section
    public class ReportHeader : Section 
    Example
    private void ReportHeader_Format(object sender, System.EventArgs eArgs)
    {
        this.reportHeader1.NewPage = NewPage.None;
    }
    Private Sub ReportHeader_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles ReportHeader.Format
       Me.ReportHeader.NewPage = NewPage.None
    End Sub
    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.SectionReportModel.Section
          GrapeCity.ActiveReports.SectionReportModel.ReportHeader

    See Also