 Loading...
Class XSLTProcessor
Implements XSL-T transformations.
Members Table
The following table lists the members exposed by the XSLTProcessor object.
|
Show:
|
Property |
Type |
Readonly |
Description |
Method |
Returns |
Description |
clearParameters
|
Void |
Removes all set parameters from this XSLTProcessor |
Sytaxis:
object.clearParameters()
|
getParameter
|
Variant |
Gets a parameter if previously set by setParameter. |
Sytaxis:
object.getParameter(namespaceURI, localName) Arguments:
Name |
Type |
O/R |
Description |
namespaceURI |
String |
Required |
The namespaceURI of the XSLT parameter |
localName |
String |
Required |
The local name of the XSLT parameter |
|
importStylesheet
|
Void |
Imports the stylesheet into this XSLTProcessor for transformations. |
Sytaxis:
object.importStylesheet(node) Arguments:
Name |
Type |
O/R |
Description |
node |
XMLNode |
Required |
The stylesheet node. |
|
removeParameter
|
Void |
Removes a parameter, if set. |
Sytaxis:
object.removeParameter(namespaceURI, localName) Arguments:
Name |
Type |
O/R |
Description |
namespaceURI |
String |
Required |
The namespaceURI of the XSLT parameter |
localName |
String |
Required |
The local name of the XSLT parameter |
|
reset
|
Void |
Remove all parameters and stylesheets from this XSLTProcessor |
Sytaxis:
object.reset()
|
setParameter
|
Void |
Sets a parameter to be used in subsequent transformations with this XSLTProcessor. |
Sytaxis:
object.setParameter(namespaceURI, localName, value) Arguments:
Name |
Type |
O/R |
Description |
namespaceURI |
String |
Required |
The namespaceURI of the XSLT parameter |
localName |
String |
Required |
The local name of the XSLT parameter |
value |
Variant |
Required |
The new value of the XSLT parameter |
|
transformToDocument
|
XMLDocument |
Transforms the node source applying the stylesheet given by the importStylesheet method. |
Sytaxis:
object.transformToDocument(node) Arguments:
Name |
Type |
O/R |
Description |
node |
XMLNode |
Required |
The node to be transformed. |
|
transformToFragment
|
XMLDocumentFragment |
Transforms the node source applying the stylesheet given by the importStylesheet method. |
Sytaxis:
object.transformToFragment(node, output) Arguments:
Name |
Type |
O/R |
Description |
node |
XMLNode |
Required |
The node to be transformed. |
output |
XMLDocument |
Required |
This document is used to generate the output. |
|
Event |
B |
C |
Interface |
Description |
Constant |
Value |
Description |
|
|