Performs subsets of a larger XSLT transformation by selecting the XSLT mode to start with. This makes it possible to minimize the amount of XSLT processing.
The default value of the start mode is the empty string, "".
objXSLProcessor.setStartMode(mode, namespace)
Using setStartMode is essentially the same as your XSLT style sheet starting with the following rule:
<xsl:template match="/"> <xsl:apply-templates select="*" mode="{mode}"/> </xsl:template>
Applies To: XSLProcessor Object