ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ControlCollection Class / Add Method
The ARControl to add to the collection.
Example

In This Topic
    Add Method (ControlCollection)
    In This Topic
    Adds the specified control to the control collection.
    Syntax
    'Declaration
     
    Public Sub Add( _
       ByVal control As ARControl _
    ) 
    public void Add( 
       ARControl control
    )

    Parameters

    control
    The ARControl to add to the collection.
    Remarks
    The Add method adds the control to the end of the collection.
    Example
    private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs)
    {
        GrapeCity.ActiveReports.SectionReportModel.TextBox t = new GrapeCity.ActiveReports.SectionReportModel.TextBox();
        t.Text="Insert text here.";
        this.Sections[0].Controls.Add (t);
    }
    Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
        Dim t As New GrapeCity.ActiveReports.SectionReportModel.TextBox
        t.Text = "Insert text here."
        Me.Sections(0).Controls.Add(t)
    End Sub
    See Also