XMLNode.SelectNodes(String, String, Boolean) Method

Definition

Returns a XMLNodes collection that represents all the nodes that match a specified XPath string in the order in which they appear.

public Microsoft.Office.Interop.Word.XMLNodes SelectNodes (string XPath, string PrefixMapping = "", bool FastSearchSkippingTextNodes = false);
abstract member SelectNodes : string * string * bool -> Microsoft.Office.Interop.Word.XMLNodes
Public Function SelectNodes (XPath As String, Optional PrefixMapping As String = "", Optional FastSearchSkippingTextNodes As Boolean = false) As XMLNodes

Parameters

XPath
String

Required String. A valid XPath string. For more information on XPath, see the XPath reference documentation on the Microsoft Developer Network (MSDN) Web site.

PrefixMapping
String

Optional Object. Provides the prefix in the schema against which to perform the search. Use the PrefixMapping parameter if your XPath parameter uses names to search for elements.

FastSearchSkippingTextNodes
Boolean

Optional Boolean. True skips all text nodes while searching for the specified node. False includes text nodes in the search. Default value is False.

Returns

Remarks

Setting the FastSearchSkippingTextNodes parameter to True diminishes performance, because Microsoft Word searches all nodes in a document against the text contained in the node.

Applies to