Partager via


input Property (Windows CE 5.0)

Send Feedback

Specifies which XML input tree to transform.

[Script]

Script Syntax

var objXMLDOMNode = objXSLProcessor.input;
objXMLDOMXSLProcessor.input = objXMLDOMNode;

Script Parameters

None.

Script Return Value

The input XML to which to apply the transformation. This can be any object that supports ISequentialStream, IStream, or an IXMLDOMNode. If applying the transformation to an IXMLDOMNode, any node type and any threading model can be specified. If this argument is Null, the existing input will be cleared.

[C/C++]

C/C++ Syntax

HRESULT get_input(VARIANT* pVar);HRESULT put_input(VARIANT pVar);

C/C++ Parameters

  • pVar
    [out, retval][in] The input XML to which to apply the transformation. This can be any object that supports ISequentialStream, IStream, or an IXMLDOMNode. If applying the transformation to an IXMLDOMNode, any node type and any threading model can be specified. If this argument is Null, the existing input will be cleared.

C/C++ Return Values

  • E_FAIL
    Value returned if readyState is READYSTATE_INTERACTIVE.
  • E_INVALIDARG
    Value returned if the variant is not VT_DISPATCH or VT_UNKNOWN.
  • E_NOINTERFACE
    Value returned if the argument does not support IStream or IXMLDOMNode.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.

General Remarks

Setting this property resets the state of the processor.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.