Поделиться через


CustomXMLParts.SelectByNamespace Method (Office)

Selects the collection of custom XML parts whose namespace matches the search criteria.

Syntax

expression .SelectByNamespace(NamespaceURI)

expression An expression that returns a CustomXMLParts object.

Parameters

Name

Required/Optional

Data Type

Description

NamespaceURI

Required

String

Contains a namespace URI.

Return Value

CustomXMLParts

Remarks

If no custom XML parts with this namespace exist, the method returns an empty CustomXMLParts collection object.

Example

The following example selects all of the custom XML parts matching the namespace and then selects a node from those parts that match an XPath expression.

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]") 

See Also

Concepts

CustomXMLParts Object

CustomXMLParts Object Members