XSLTProcessor

open external class XSLTProcessor(source)

An XSLTProcessor applies an XSLT stylesheet transformation to an XML document to produce a new XML document as output. It has methods to load the XSLT stylesheet, to manipulate xsl:param parameter values, and to apply the transformation to documents.

MDN Reference

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
Link copied to clipboard
fun getParameter(namespaceURI: String?, localName: String): Any
Link copied to clipboard
Link copied to clipboard
fun removeParameter(namespaceURI: String?, localName: String)
Link copied to clipboard
Link copied to clipboard
fun setParameter(namespaceURI: String?, localName: String, value: Any?)
Link copied to clipboard
Link copied to clipboard