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 命名空间