XMLNode.NodeType 属性
获取一个值,该值指示 XMLNode 是特性还是元素。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
ReadOnly Property NodeType As WdXMLNodeType
WdXMLNodeType NodeType { get; }
属性值
类型:Microsoft.Office.Interop.Word.WdXMLNodeType
表示节点类型的 WdXMLNodeType 值之一。
备注
NodeType 属性可以为下列 WdXMLNodeType 值之一:
wdXMLNodeAttribute 指示特性节点。
wdXMLNodeElement 指示元素节点。
使用 NodeType 属性确定正在处理的节点的类型,以便不会尝试对节点执行无效的操作。 例如,尽管 Attributes 属性出现在 XMLNode 控件的可用属性列表中,但它只适用于元素节点。
示例
下面的代码示例使用 NodeType 属性确定 XMLNode 是元素节点还是特性节点。 如果 XMLNode 是一个元素,此示例将使用 NodeText 属性设置该元素中的文本。 如果 XMLNode 是一个特性,此示例将使用 NodeValue 属性设置该特性的值。 此示例假定当前文档包含一个名为 CustomerLastNameNode 的 XMLNode。
Private Sub DisplayNodeDetails()
If Me.CustomerLastNameNode.NodeType = _
Word.WdXMLNodeType.wdXMLNodeElement Then
Me.CustomerLastNameNode.NodeText = "Smith"
MsgBox("The element '" & Me.CustomerLastNameNode.BaseName & _
"' has the text '" & Me.CustomerLastNameNode.NodeText & "'.")
ElseIf Me.CustomerLastNameNode.NodeType = _
Word.WdXMLNodeType.wdXMLNodeAttribute Then
Me.CustomerLastNameNode.NodeValue = "Smith"
MsgBox("The attribute '" & Me.CustomerLastNameNode.BaseName & _
"' has the value '" & Me.CustomerLastNameNode.NodeValue & "'.")
End If
End Sub
private void DisplayNodeDetails()
{
if (this.CustomerLastNameNode.NodeType ==
Word.WdXMLNodeType.wdXMLNodeElement)
{
this.CustomerLastNameNode.NodeText = "Smith";
MessageBox.Show("The element '" +
this.CustomerLastNameNode.BaseName + "' has the text '" +
this.CustomerLastNameNode.NodeText + "'.");
}
else if (this.CustomerLastNameNode.NodeType ==
Word.WdXMLNodeType.wdXMLNodeAttribute)
{
this.CustomerLastNameNode.NodeValue = "Smith";
MessageBox.Show("The attribute '" +
this.CustomerLastNameNode.BaseName + "' has the value '" +
this.CustomerLastNameNode.NodeValue + "'.");
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。