ActiveReports 13
Insert Method (SectionCollection)
Example 

GrapeCity.ActiveReports Assembly > GrapeCity.ActiveReports Namespace > SectionCollection Class : Insert Method
Inserts a section into the collection at the specified index.
Overload List
OverloadDescription
Inserts a section at the specified index in the collection.  
Creates a new Section of the specified type and name and inserts it into the  SectionCollection at the specified index.  
Example
GrapeCity.ActiveReports.ActiveReport rpt = New GrapeCity.ActiveReports.ActiveReport();
    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.arv.Document = rpt.Document;
Dim rpt As New GrapeCity.ActiveReports.ActiveReport
    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
See Also

Reference

SectionCollection Class
SectionCollection Members