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