Returns the XSL style sheet to compile into an XSL template.
Set objXMLDOMNode = objXSLTemplate.stylesheet
HRESULT get_stylesheet(IXMLDOMNode** stylesheet);
The style sheet document is made read-only, while the style sheet belongs to the template or any associated processor. The read-only flag is removed when the style sheet is released from all templates and/or processor objects.
The processor objects created by this template take a "snapshot" of the current style sheet and always use the same style sheet, so they are isolated from changes to this stylesheet property. The only way to update the processor to the new style sheet is to create a new processor (this satisfies the ASP scenarios shown in the IXSLTemplate example).
Provides the XSL style sheet to compile into an XSL template. The style sheet document is made read-only, while the style sheet belongs to the template or any associated processor. The read-only flag is removed when the style sheet is released from all templates and/or processor objects.
The processor objects created by this template take a "snapshot" of the current style sheet and always use the same style sheet, so they are isolated from changes to this stylesheet property. The only way to update the processor to the new style sheet is to create a new processor (this satisfies the ASP scenarios shown in the XSLTemplate example).
objXSLTemplate.stylesheet = objXMLDOMNode
HRESULT putref_stylesheet(IXMLDOMNode* stylesheet);