Share via


input Property (Windows Embedded CE 6.0)

1/6/2010

Specifies which XML input tree to transform.

Script Syntax

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

Remarks

Ee502092.collapse(en-US,WinEmbedded.60).gifScript Parameters

None.

Ee502092.collapse(en-US,WinEmbedded.60).gifScript 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.

Ee502092.collapse(en-US,WinEmbedded.60).gifC/C++ Syntax

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

Remarks

Ee502092.collapse(en-US,WinEmbedded.60).gifC/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.

Ee502092.collapse(en-US,WinEmbedded.60).gifC/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.

Ee502092.collapse(en-US,WinEmbedded.60).gifRequirements

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

General Remarks

Setting this property resets the state of the processor.

See Also

Reference

XML DOM Properties