GrapeCity ActiveReports for .NET 16.0J
Add メソッド (ControlCollection)
使用例 

GrapeCity.ActiveReports.SectionReportModel 名前空間 > ControlCollection クラス : Add メソッド
コレクションに追加する control。
コントロールコレクションに指定したコントロールを追加します。
シンタックス
'宣言
 
Public Sub Add( _
   ByVal control As ARControl _
) 
public void Add( 
   ARControl control
)

パラメータ

control
コレクションに追加する control。
解説

Addメソッドは、コントロールをコレクションの末尾に追加します。

使用例
private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs)
{
    GrapeCity.ActiveReports.SectionReportModel.TextBox t = new GrapeCity.ActiveReports.SectionReportModel.TextBox();
    t.Text="ここにテキストを入力します。";
    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 = "ここにテキストを入力します。"
    Me.Sections(0).Controls.Add(t)
End Sub
参照

ControlCollection クラス
ControlCollection メンバ
AddRange メソッド