ActiveReports 13
InsertReportHF Method
Example 

GrapeCity.ActiveReports Assembly > GrapeCity.ActiveReports Namespace > SectionCollection Class : InsertReportHF Method
Inserts a report header and a matching report footer into the SectionCollection.
Overload List
OverloadDescription
Inserts a report header and a matching report footer into the SectionCollection.  
Remarks
Only one ReportHeader and one ReportFooter section are allowed in a report layout.
Example
GrapeCity.ActiveReports.SectionReport rpt = New GrapeCity.SectionReports.ActiveReport();
    rpt.Sections.Add(GrapeCity.ActiveReports.SectionReport.SectionType.Detail,"Detail");
    rpt.Sections.InsertReportHF();
    rpt.Sections[0].BackColor = System.Drawing.Color.DarkOrchid;
    rpt.Sections[1].BackColor = System.Drawing.Color.Orchid;
    rpt.Sections[2].BackColor = System.Drawing.Color.DarkOrchid;
    rpt.Run();
    this.Viewer1.Document = rpt.Document;
Dim rpt As New GrapeCity.ActiveReports.SectionReport
    rpt.Sections.Add(GrapeCity.ActiveReports.SectionReport.SectionType.Detail, "Detail")
    rpt.Sections.InsertReportHF()
    rpt.Sections(0).BackColor = System.Drawing.Color.DarkOrchid
    rpt.Sections(1).BackColor = System.Drawing.Color.Orchid
    rpt.Sections(2).BackColor = System.Drawing.Color.DarkOrchid
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
See Also

Reference

SectionCollection Class
SectionCollection Members
ReportHeader Class
ReportFooter Class
Section Class