output Property

 

Gets a custom output to write the result of the transformation.

Script Syntax

output = objXSLProcessor.output;  
objXSLProcessor.output (output);  

Parameters

output
The object to which to write the output of the transformation.

Example

This Jscript example uses the resource file, sample2.xsl, listed later in this topic.

var xslt = new ActiveXObject("Msxml2.XSLTemplate.3.0");
var xslDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument.3.0");
var xslProc;
xslDoc.async = false;
xslDoc.load("sample2.xsl");
if (xslDoc.parseError.errorCode != 0) {
   var myErr = xslDoc.parseError;
   WScript.Echo("You have error " + myErr.reason);
} else {
   xslt.stylesheet = xslDoc;
   var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.3.0");
   xmlDoc.async = false;
   xmlDoc.load("books.xml");
   if (xmlDoc.parseError.errorCode != 0) {
      var myErr = xmlDoc.parseError;
      WScript.Echo("You have error " + myErr.reason);
   } else {
         xslProc = xslt.createProcessor();
      xslProc.input = xmlDoc;
      xslProc.transform();
      WScript.Echo(xslProc.output);
   }
}

Visual Basic Syntax

output = objXSLProcessor.output  
objXSLProcessor.output (output)  

Parameters

output
The object to which to write the output of the transformation.

Resource File

The Jscript example listed above uses the following resource file.

Sample2.xsl

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"/>
    <xsl:param name="param1"/>
  <xsl:template match="/">
        Hello
  </xsl:template>
  <xsl:template match="/" mode="edit">
        In Edit Mode
  </xsl:template>
  <xsl:template match="/" mode="view">
        In View Mode
  </xsl:template>
</xsl:stylesheet>

C/C++ Syntax

HRESULT get_output (VARIANT* pOutput);  
HRESULT put_output (VARIANT output);  

Parameters

pOutput[out, retval]
The custom output object or a BSTR containing the transformation result.

output[in]
The object to write the output of the transformation to.

C/C++ Return Values

E_NOINTERFACE
Value returned if the given output object does not support a supported interface.

E_FAIL
Value returned if the readyState property is READYSTATE_INTERACTIVE.

Remarks

The output property can be any object/interface that supports IStream, IPersistStream, DOMDocument, ASP IResponse, ADODB.Stream, or IMXWriter.

When a new transform is started, the processor will use a QueryInterface this output for IStream. When the transform is complete or reset is called, IStream is released. The only method that is used on IStream is Write. The bytes written to the stream will be encoded according to the encoding attribute on the <xsl:output> element.

If you do not provide a custom output, then you will get a string when you read this property. The string contains the incrementally buffered transformation result.

Reading this property has the side effect of resetting that internal buffer so that each time you read the property you get the next chunk of output. In this case, the output is always generated in the Unicode encoding, and the encoding attribute on the <xsl:output> element is ignored.

Versioning

Implemented in:

MSXML 3.0, MSXML 6.0

Applies to

IXSLProcessor