GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports 名前空間 > SectionCollection クラス : Insert メソッド |
オーバーロード | 解説 |
---|---|
Insert(Int32,Section) | コレクション内の指定したインデックスにセクションを追加します。 |
Insert(Int32,SectionType,String) | 種類と名前を指定して新しいセクションを作成し、SectionCollection内の指定したインデックスに挿入します。 |
Private void btnDynamic_Click(object sender, System.EventArgs e) { GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport(); rpt.Sections.Add(GrapeCity.ActiveReports.Document.Section.SectionType.Detail,"Detail"); rpt.Sections.InsertPageHF(); rpt.Sections.Insert(0,GrapeCity.ActiveReports.Document.Section.SectionType.ReportHeader,"rh"); rpt.Sections.Insert(4,GrapeCity.ActiveReports.Document.Section.SectionType.ReportFooter,"rf"); rpt.Sections[0].BackColor = System.Drawing.Color.PowderBlue; rpt.Sections[1].BackColor = System.Drawing.Color.DarkOrchid; rpt.Sections[2].BackColor = System.Drawing.Color.Orchid; rpt.Sections[3].BackColor = System.Drawing.Color.DarkOrchid; rpt.Sections[4].BackColor = System.Drawing.Color.PowderBlue; rpt.Run(); this.viewer1.Document = rpt.Document; }
Private Sub btnDynamic_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDynamic.Click Dim rpt As New GrapeCity.ActiveReports.SectionReport rpt.Sections.Add(GrapeCity.ActiveReports.Document.Section.SectionType.Detail, "Detail") rpt.Sections.InsertPageHF() rpt.Sections.Insert(0, GrapeCity.ActiveReports.Document.Section.SectionType.ReportHeader, "rh") rpt.Sections.Insert(4, GrapeCity.ActiveReports.Document.Section.SectionType.ReportFooter, "rf") rpt.Sections(0).BackColor = System.Drawing.Color.PowderBlue rpt.Sections(1).BackColor = System.Drawing.Color.DarkOrchid rpt.Sections(2).BackColor = System.Drawing.Color.Orchid rpt.Sections(3).BackColor = System.Drawing.Color.DarkOrchid rpt.Sections(4).BackColor = System.Drawing.Color.PowderBlue rpt.Run() Me.Viewer1.Document = rpt.Document End Sub