مشاركة عبر


XMLNode.Attributes الخاصية

تحصل على Microsoft.Office.Interop.Word.XMLNodesيمثل السمات لمجموعة XMLNodeعنصر تحكم.

مساحة الاسم:  Microsoft.Office.Tools.Word
التجميع:  Microsoft.Office.Tools.Word (في Microsoft.Office.Tools.Word.dll)

بناء الجملة

'إقرار
ReadOnly Property Attributes As XMLNodes
    Get
XMLNodes Attributes { get; }

قيمة الخاصية

النوع: Microsoft.Office.Interop.Word.XMLNodes
Microsoft.Office.Interop.Word.XMLNodesالذي يمثل السمات لمجموعة XMLNodeعنصر تحكم.

ملاحظات

الجميع Microsoft.Office.Interop.Word.XMLNodeيتحكم في Microsoft.Office.Interop.Word.XMLNodesالمجموعة التي يتم إرجاعها بواسطة استخدام Attributesتوافر XMLNode.NodeTypeالقيمة خاصية wdXMLNodeAttribute.

أمثلة

التعليمة البرمجية التالية مثال يستخدم Attributesخاصية لإضافة سمة إلى XMLNodeعنصر التحكم. NamespaceURIخاصية هو يستخدم لتعيين مساحة الاسم المخطط. ثم المثال بالتكرار عبر كل سمة في XMLNodeويعرض اسم السمة وقيمة الخاصة به. الاسم XMLNodeيتم الحصول عليه من BaseNameخاصية. يفترض هذا المثال الذي مستند الحالي يحتوي على XMLNodeباسم CustomerNodeيحتوي NewCustomerالتصريح عن السمة في المخطط.

Private Sub DisplayAttributes()
    Dim newAttribute As Word.XMLNode = _
        Me.CustomerNode.Attributes.Add("NewCustomer", _
        Me.CustomerNode.NamespaceURI)
    newAttribute.NodeValue = "yes"

    Dim attribute1 As Word.XMLNode
    For Each attribute1 In Me.CustomerNode.Attributes
        MsgBox("'" & Me.CustomerNode.BaseName & _
            "' has the attribute '" & attribute1.BaseName & _
            "' with the value '" & attribute1.NodeValue & "'.")
    Next attribute1
End Sub
private void DisplayAttributes()
{
    Word.XMLNode newAttribute = 
        this.CustomerNode.Attributes.Add("NewCustomer",
        this.CustomerNode.NamespaceURI, ref missing);
    newAttribute.NodeValue = "yes";

    foreach (Word.XMLNode attribute1 in this.CustomerNode.Attributes)
    {
        MessageBox.Show("'" + this.CustomerNode.BaseName +
            "' has the attribute '" + attribute1.BaseName +
            "' with the value '" + attribute1.NodeValue +
            "'.");
    }
}

أمن NET Framework.

راجع أيضًَا

المرجع

XMLNode واجهة

XMLNode الأعضاء

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