共用方式為


ControlCollection.Contains 方法 (Object)

判斷指定的控制項是否為 ControlCollection 執行個體的成員。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
Function Contains ( _
    control As Object _
) As Boolean
bool Contains(
    Object control
)

參數

傳回值

型別:System.Boolean
如果已在集合中找到控制項,則為 true,否則為 false。

範例

下列程式碼範例會將 Button 控制項加入至工作表的頂端,然後在訊息方塊中顯示按鈕的索引。

Private Sub ExcelControlIndexOf()

    Dim Button1 As Microsoft.Office.Tools.Excel. _
        Controls.Button = Me.Controls.AddButton( _
        0, 0, 56.25, 17.25, "Button1")
    Button1.Text = "OK"

    If Me.Controls.Contains(Button1) Then
        MessageBox.Show("The index of Button1 is " _
        & Controls.IndexOf(Button1))
    End If

End Sub 
private void ExcelControlIndexOf()
{

    Microsoft.Office.Tools.Excel.Controls.Button button1 =
        this.Controls.AddButton(0, 0, 56.25, 17.25,
        "button1");
    button1.Text = "OK";

    if (this.Controls.Contains(button1))
    {
        MessageBox.Show("The index of button1 is " +
            Controls.IndexOf(button1));
    }
}

.NET Framework 安全性

請參閱

參考

ControlCollection 介面

Contains 多載

Microsoft.Office.Tools.Excel 命名空間