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

レポートヘッダおよび対応するレポートフッタをSectionCollectionに追加します。
オーバーロード一覧
オーバーロード解説
InsertReportHFレポートヘッダおよび該当したレポートフッタをSectionCollectionに挿入します。  
解説

1つのレポートレイアウトに追加できるのは、ReportHeaderセクションとReportFooterセクションそれぞれ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.InsertReportHF();
    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.InsertReportHF()
    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 メンバ
ReportHeader クラス
ReportFooter クラス
Section クラス

 

 


©2003-2017 GrapeCity inc. All rights reserved.