ActiveReports 12
InsertPageHF Method
Example 

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.ActiveReports Namespace > SectionCollection Class : InsertPageHF Method
Inserts a page header and a matching page footer into the SectionCollection.
Overload List
OverloadDescription
Inserts a page header and a page matching footer into the SectionCollection with the default names PageHeader1, PageFooter1; where 1 is an order number.  
Remarks
Only one PageHeader and one PageFooter section are allowed in a report layout.
Example
GrapeCity.ActiveReports.SectionReport rpt = New GrapeCity.ActiveReports.SectionReport();
    rpt.Sections.Add(GrapeCity.ActiveReports.SectionReport.SectionType.Detail,"Detail");
    rpt.Sections.InsertPageHF();
    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.InsertPageHF()
    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
PageHeader Class
PageFooter Class
Section Class