Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

Gets the node (subtree) that is applied to the selection.

Script Syntax

Copy Code
var objXMLDOMNode = objXMLDOMSelection.context;
objXMLDOMSelection.context = objXMLDOMNode;

Remarks

Script Parameters

None.

Script Return Value

Object. Returns the subtree that is applied to the selection.

C/C++ Syntax

Copy Code
HRESULT get_context(
  IXMLDOMNode** 
ppNode
);
HRESULT putref_context(
  IXMLDOMNode* 
pNode
);

Remarks

C/C++ Parameters

ppNode

[out, retval] The subtree to apply the pattern to.

pNode

[in] The subtree to apply the pattern to.

C/C++ Return Values

S_OK

Value returned if the method is successful.

S_FALSE (for get_context only)

Value returned if the context is invalid.

E_INVALIDARG (for get_context only)

Value returned if the input argument is Null.

E_FAIL (for putref_context only)

Value returned if a node with a different threading model is provided.

Requirements

Header msxml2.h, msxml2.idl
Windows Embedded CE Windows CE .NET 4.0 and later

General Remarks

Because the selectNodesmethod can be called on any node type, contextcan also be assigned any node type. A node from a different document from the one that originally created IXMLDOMSelectioncan also be specified as long as it has the same threading model. Calling contextalso resets the state of the node list so that nextNodestarts over.

This property applies to the following interface:

IXMLDOMSelection.