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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.