ActiveReports 8
ReportHeader Class
Members  Example  See Also 
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace : ReportHeader Class

Glossary Item Box

The ReportHeader section is printed once at the beginning of the report.

Object Model

ReportHeader Class

Syntax

Visual Basic (Declaration) 
Public Class ReportHeader 
   Inherits Section
C# 
public class ReportHeader : Section 

Example

C#Copy Code
private void ReportHeader_Format(object sender, System.EventArgs eArgs)
{
    this.reportHeader1.NewPage = NewPage.None;
}
Visual BasicCopy Code
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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also