XMLNode.NamespaceURI 属性
获取 XMLNode 控件的架构命名空间的统一资源标识符 (URI)。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
ReadOnly Property NamespaceURI As String
string NamespaceURI { get; }
属性值
类型:System.String
XMLNode 控件的架构命名空间的 URI。
备注
创作用于 Microsoft Office Word 的 XML 架构时,强烈建议您在架构中指定 TargetNamespace 设置。
示例
下面的代码示例使用 Attributes 属性向 XMLNode 控件添加特性。 NamespaceURI 属性用于指定架构命名空间。 然后,此示例循环访问 XMLNode 中的每个特性并显示特性的名称及其值。 XMLNode 的名称从 BaseName 属性获取。 此示例假定当前文档包含一个名为 CustomerNode 的 XMLNode,它具有一个在架构中声明的 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。