使用英语阅读

通过


CustomXMLNodes 对象 (Office)

包含 一个 CustomXMLNode 对象的集合,这些对象表示文档中的 XML 节点。

备注

AttributesChildNodes 属性返回此类型的节点的集合。

示例

以下示例选择与 XPath 表达式匹配的一个或多个节点。

Sub CustomXmlNodes() 
    Dim cxp1 As CustomXMLPart 
    Dim cxns As CustomXMLNodes 
 
    With ActiveDocument 
  
        ' Returns the first custom xml part with the given root namespace. 
        Set cxp1 = .CustomXMLParts("urn:invoice:namespace")  
         
        ' Get custom xml nodes using XPath.                              
        Set cxns = cxp1.SelectNodes("//*[@unitPrice > 20]")  
                      
    End With 
     
End Sub 

另请参阅

支持和反馈

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