PowerTools ActiveReports for .NET 11.0J
InsertGroupHF メソッド
使用例 

GroupHeader1およびGroupFooter1というデフォルト名(名前で1が順番を示す)を付けて、それぞれグループヘッダおよび該当したグループフッタをSectionCollectionに挿入します。
オーバーロード一覧
オーバーロード解説
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
参照

関連項目

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

 

 


©2003-2017 GrapeCity inc. All rights reserved.