ControlCollection.IndexOf 方法 (Object)

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

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

语法

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

参数

返回值

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

示例

下面的代码示例向文档开头添加一个 Button 控件,然后在消息框中显示该按钮的索引。

Private Sub WordControlIndexOf()
    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Button1 As Microsoft.Office.Tools.Word.Controls.Button _
        = Me.Controls.AddButton(0, 0, 56.25F, 17.25F, "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 WordControlIndexOf()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Controls.Button button1 =
        this.Controls.AddButton(0, 0, 56.25F, 17.25F,
        "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.Word 命名空间