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

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionCollection クラス : InsertGroupHF メソッド
GroupHeader1およびGroupFooter1というデフォルト名(名前で1が順番を示す)を付けて、それぞれグループヘッダおよび該当したグループフッタをSectionCollectionに挿入します。
オーバーロード一覧
オーバーロード解説
GroupHeader1およびGroupFooter1というデフォルト名(名前で1が順番を示す)を付けて、それぞれグループヘッダおよび該当したグループフッタをSectionCollectionに挿入します。  
grHeaderNameおよびgrFooterName引数に名前を指定し、グループヘッダおよび該当したグループフッタをSectionCollectionに挿入します。  
解説

新しいセクションは、グループ内部のレベル、レポートレイアウトのDetailセクションの直前と直後に追加されます。

使用例
GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport();
    rpt.Sections.Add(GrapeCity.ActiveReports.Document.Section.SectionType.Detail,"Detail");
    rpt.Sections.InsertGroupHF();
    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.Viewer.Document = rpt.Document;
Dim rpt As New GrapeCity.ActiveReports.SectionReport
    rpt.Sections.Add(GrapeCity.ActiveReports.Document.Section.SectionType.Detail, "Detail")
    rpt.Sections.InsertGroupHF()
    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
参照

SectionCollection クラス
SectionCollection メンバ
GroupHeader クラス
GroupFooter クラス
Section クラス