Adds the specified
SectionType to the SectionCollection.
Adds a section to the SectionCollection.
Overload List
Remarks
Example
C# | Copy Code |
---|
GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport();
rpt.Sections.Add(GrapeCity.ActiveReports.Document.Section.SectionType.Detail,"detail");
rpt.Sections.InsertPageHF();
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; |
Visual Basic | Copy Code |
---|
Dim rpt As New GrapeCity.ActiveReports.SectionReport
rpt.Sections.Add(GrapeCity.ActiveReports.Document.Section.SectionType.Detail, "Detail1")
rpt.Sections.InsertPageHF()
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 |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also