See Also

SectionCollection Class  | SectionCollection Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Insert Method

Inserts a section into the collection at the specified index.

Overload List

Inserts a section at the specifed 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

[C#] 

Private void btnDynamic_Click(object sender, System.EventArgs e) 

    DataDynamics.ActiveReports.ActiveReport rpt = New DataDynamics.ActiveReports.ActiveReport(); 
    rpt.Sections.Add(DataDynamics.ActiveReports.SectionType.Detail,"Detail"); 
    rpt.Sections.InsertPageHF(); 
    rpt.Sections.Insert(0,DataDynamics.ActiveReports.SectionType.ReportHeader,"rh"); 
    rpt.Sections.Insert(4,DataDynamics.ActiveReports.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; 
}

[Visual Basic] 

Private Sub btnDynamic_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDynamic.Click
    Dim rpt As New DataDynamics.ActiveReports.ActiveReport
    rpt.Sections.Add(DataDynamics.ActiveReports.SectionType.Detail, "Detail")
    rpt.Sections.InsertPageHF()
    rpt.Sections.Insert(0, DataDynamics.ActiveReports.SectionType.ReportHeader, "rh")
    rpt.Sections.Insert(4, DataDynamics.ActiveReports.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

See Also

SectionCollection Class  | SectionCollection Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.