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

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > ControlCollection クラス : Contains メソッド
コレクション内で検索するコントロール。
指定したコントロールがコレクションのメンバであるかどうかを決定します。
シンタックス
'宣言
 
Public Function Contains( _
   ByVal control As ARControl _
) As Boolean
public bool Contains( 
   ARControl control
)

パラメータ

control
コレクション内で検索するコントロール。

戻り値の型

コントロールがコレクションのメンバである場合は True、そうでなければ False を返します。

使用例
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);

    if (this.Sections[0].Controls.Contains(t)) 
    { 
        System.Windows.Forms.MessageBox.Show("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)
    If Me.Sections(0).Controls.Contains(t) Then
        MessageBox.Show("t")
    End If
End Sub
参照

ControlCollection クラス
ControlCollection メンバ