CustomXMLPart.SelectNodes Method
Office Developer Reference |
Selects a collection of nodes from a custom XML part.
Note |
---|
References to DTDs from custom XML parts are not supported. DTD references in custom XML parts will not resolve, and custom XML parts containing DTD references generate an exception when an attempt is made to save the file's content to a flat XML file. |
Syntax
expression.SelectNodes(XPath)
expression An expression that returns a CustomXMLPart object.
Parameters
Name | Required/Optional | Data Type | Description |
---|---|---|---|
XPath | Required | String | Contains the XPath expression. |
Return Value
CustomXMLNodes
Example
The following example demonstrates adding a custom XML part, selecting a part matching a namespace URI, and then selecting nodes within that part that match an XPath expression.
Visual Basic for Applications |
---|
|
See Also