共用方式為


ControlCollection.Contains 方法 (Object)

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

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

語法

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

參數

傳回值

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

範例

下列程式碼範例加入 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 介面

Contains 多載

Microsoft.Office.Tools.Word 命名空間