مشاركة عبر


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 واجهة

ControlCollection الأعضاء

Contains التحميل الزائد

Microsoft.Office.Tools.Word مساحة الاسم