ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / SectionCollection Class / Insert Method / Insert(Int32,SectionType,String) Method
The zero-based index where the new section should be inserted.
GrapeCity.ActiveReports.Extensibility.Layout.ILayoutSection.SectionType (in GrapeCity.ActiveReports.Core.Rendering.dll) of the new section.of the section to insert.
Unique name of the new section.

In This Topic
    Insert(Int32,SectionType,String) Method
    In This Topic
    Creates a new Section of the specified type and name and inserts it into the  SectionCollection at the specified index.
    Syntax
    'Declaration
     
    Public Overloads Function Insert( _
       ByVal index As Integer, _
       ByVal type As SectionType, _
       ByVal name As String _
    ) As Section
    public Section Insert( 
       int index,
       SectionType type,
       string name
    )

    Parameters

    index
    The zero-based index where the new section should be inserted.
    type
    GrapeCity.ActiveReports.Extensibility.Layout.ILayoutSection.SectionType (in GrapeCity.ActiveReports.Core.Rendering.dll) of the new section.of the section to insert.
    name
    Unique name of the new section.

    Return Value

    A section that was created and added into the collection.
    Remarks
    Report, Page and Group sections must be added in a header/footer pair.   The InsertReportHF, InsertPageHF and InsertGroupHF ensure proper pairing of the header/footer.
    See Also