CustomXMLParts.SelectByNamespace 方法 (Office)

选择其命名空间与搜索条件匹配的自定义 XML 部件的集合。

语法

表达式SelectByNamespace (NamespaceURI)

表达 返回 CustomXMLParts 对象的表达式。

参数

名称 必需/可选 数据类型 说明
NamespaceURI 必需 字符串 包含命名空间 URI。

返回值

CustomXMLParts

备注

如果具有此命名空间的自定义 XML 部件不存在,则该方法将返回空的 CustomXMLParts 集合对象。

示例

以下示例选择与命名空间匹配的所有自定义 XML 部件,然后从与 XPath 表达式匹配的部分中选择一个节点。

Dim cxp1 As CustomXMLParts 
Dim cxn As CustomXMLNode 
 
' Returns all of the custom xml parts with the given namespace. 
 Set cxp1 = ActiveDocument.CustomXMLParts.SelectByNamespace("urn:invoice:namespace")    
 
' Get the node matching the XPath expression.                              
Set cxn = cxp1(1).SelectSingleNode("//*[@supplierID = 1]") 

另请参阅

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。