ActiveReports 6 Online Help
Add Method (SectionCollection)
Example 

Adds a new section to the collection with the specified name.
Overload List
OverloadDescription
Add(SectionType,String)Adds the specified SectionType to the SectionCollection.  
Add(Section)Adds the specified section to the SectionCollection.  
Remarks
When modifying the layout of a report, the Insert methods are easier to use for header/footer section pairs.
Example
DataDynamics.ActiveReports.ActiveReport rpt = new DataDynamics.ActiveReports.ActiveReport();
    rpt.Sections.Add(DataDynamics.ActiveReports.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;
Dim rpt As New DataDynamics.ActiveReports.ActiveReport
    rpt.Sections.Add(DataDynamics.ActiveReports.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

Reference

SectionCollection Class
SectionCollection Members
SectionType Enumeration

Send Feedback