ControlCollection.IndexOf 方法 (Object)

搜索指定控件,并返回该控件在 ControlCollection 实例中的第一个匹配项的从零开始的索引。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)

语法

声明
Function IndexOf ( _
    control As Object _
) As Integer
int IndexOf(
    Object control
)

参数

返回值

类型:System.Int32
控件的索引,如果控件不在 ControlCollection 实例中,则为 -1。

示例

下面的代码示例将一个 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 接口

IndexOf 重载

Microsoft.Office.Tools.Excel 命名空间