Word.SelectNodesOptions interface
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Provides configuration options for the XmlNode.selectNodes and Document.selectNodes methods.
Remarks
Properties
fast |
If provided, specifies whether to skip text nodes in the search. The default value is |
prefix |
If provided, specifies the prefix mapping for the XPath expression. The default value is "" (empty string). |
Property Details
fastSearchSkippingTextNodes
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
If provided, specifies whether to skip text nodes in the search. The default value is false
.
fastSearchSkippingTextNodes?: boolean;
Property Value
boolean
Remarks
prefixMapping
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
If provided, specifies the prefix mapping for the XPath expression. The default value is "" (empty string).
prefixMapping?: string;
Property Value
string