ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / SectionCollection Class / Add Method
Example

In This Topic
    Add Method (SectionCollection)
    In This Topic
    Adds the specified GrapeCity.ActiveReports.Extensibility.Layout.
    ILayoutSection.SectionType (in GrapeCity.ActiveReports.Core.Rendering.dll) to the SectionCollection.
    Overload List
    OverloadDescription
    Adds the specified GrapeCity.ActiveReports.Extensibility.Layout.
    ILayoutSection.SectionType (in GrapeCity.ActiveReports.Core.Rendering.dll) to the SectionCollection.  
    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
    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;
    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
    See Also

    Reference

    SectionCollection Class
    SectionCollection Members
    GrapeCity.ActiveReports.Extensibility~GrapeCity.ActiveReports.Extensibility.Layout.ILayoutSection~SectionType