XMLNode.Attributes Özellik
Alır bir Microsoft.Office.Interop.Word.XMLNodes özniteliklerini temsil eden bir koleksiyon XMLNode denetim.
Ad alanı: Microsoft.Office.Tools.Word
Derleme: Microsoft.Office.Tools.Word (Microsoft.Office.Tools.Word.dll içinde)
Sözdizimi
'Bildirim
ReadOnly Property Attributes As XMLNodes
XMLNodes Attributes { get; }
Özellik Değeri
Tür: Microsoft.Office.Interop.Word.XMLNodes
A Microsoft.Office.Interop.Word.XMLNodes özniteliklerini temsil eden bir koleksiyon XMLNode denetim.
Notlar
Tüm Microsoft.Office.Interop.Word.XMLNode denetimlerini Microsoft.Office.Interop.Word.XMLNodes kullanarak döndürülen koleksiyon Attributes özelliğine sahip bir XMLNode.NodeType özelliği değeri wdXMLNodeAttribute.
Örnekler
Aşağıdaki kod örneğinde Attributes özellik bir öznitelik eklemek için bir XMLNode denetim.NamespaceURI Özelliği, şema ad alanı belirtmek için kullanılır.Örnek sonra her öznitelik arasında dolaşır XMLNode ve öznitelik adı ve değeri görüntüler.Adı XMLNode karşı elde edilen BaseName özelliği.Bu örnek, geçerli belgenin içerdiği varsayılır bir XMLNode adlı CustomerNode olan bir NewCustomer öznitelik şemada bildirilmiş.
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 Güvenliği
- Anında arayanlar için tam güven. Bu üye kısmen güvenilen kodla kullanılamaz. Daha fazla bilgi için bkz. Kısmen Güvenilen Koddan Kitaplıkları Kullanma.