setProperty Method
A version of this page is also available for
4/8/2010
Used for setting the SelectionLanguage or SelectionNamespaces internal properties (flags).
Script Syntax
objXMLDOMDocument2.setProperty(name, value);
Remarks
Script Parameters
- name
The SelectionLanguage value.
- value
Either the "XPath" or "XSLPattern" value.
Script Return Value
None.
C/C++ Syntax
HRESULT setProperty(
BSTR name,
VARIANT value
);
Remarks
C/C++ Parameters
- name
[in] The "SelectionLanguage" value.
- value
[in] Either "XPath" or "XSLPattern".
C/C++ Return Values
- S_OK
Value returned if successful.
- E_FAIL
Value returned if name or value is invalid.
Requirements
Header | msxml2.h, msxml2.idl |
Library | uuid.lib |
Windows Embedded CE | Windows CE .NET 4.0 and later |
General Remarks
The following table shows properties that you can set using this method. Existing properties from DOMDocument are not accessible through this method. White space is not stripped or normalized in property names or values.
Name | Value |
---|---|
SelectionLanguage internal property (flag) |
"XPath" or "XSLPattern" The SelectionLanguage property defaults to "XSLPattern". This property indicates the type of query the user plans to pass into selectNodes or selectSingleNode. "XSLPattern" is the default for backward compatibility. This flag applies to all nodes whose ownerDocument property points to this document object. Therefore, if a given node is moved to a different document, its selectNode behavior may change depending on the SelectionLanguage setting in the new document. The following Jscript example on the client shows how to set the SelectionLanguage to XPath for the xmldoc object.
|
SelectionNamespaces internal property (flag) |
A space delimited set of Namespace names. For example:
With the SelectionNamespaces internal property (flag), the selectSingleNode method and selectNodes method can now use qualified names. |
This method applies to the following interface: