GrapeCity ActiveReports for .NET 14.0J
InsertPageHF メソッド
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionCollection クラス : InsertPageHF メソッド
ページヘッダおよび対応するページフッタをSectionCollectionに追加します。
オーバーロード一覧
オーバーロード解説
PageHeader1およびPageFooter1というデフォルト名(名前で1が順番を示す)を付けて、それぞれページヘッダおよび該当したページフッタをSectionCollectionに挿入します。  
解説

1つのレポートレイアウトに追加できるのは、PageHeaderセクションとPageFooterセクションそれぞれ1つずつに限られます。

使用例
Private void button2_Click(object sender, System.EventArgs e)
{
    GrapeCity.ActiveReports.SectionReport rpt = New GrapeCity.ActiveReports.SectionReport();
    rpt.Sections.Add(GrapeCity.GrapeCity.ActiveReports.v10.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.arv.Document = rpt.Document;
}
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim rpt As New GrapeCity.ActiveReports.SectionReport
    rpt.Sections.Add(GrapeCity.GrapeCity.ActiveReports.v10.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
End Sub
参照

SectionCollection クラス
SectionCollection メンバ
PageHeader クラス
PageFooter クラス
Section クラス