XSLTransform.TransformFromNode
Syntax:
Parameters:
<Node> (required)
DOM node representing an initial tree for XSL conversion.
<XMLRecord> (optional)
XML writing object for writing the conversion result. This parameter is worth specifying if the data are converted to an XML document. If this parameter is specified, conversion results will be written to the object XMLWriter, in this case there will be no returned value.
Returned value:
Conversion results.
Description:
Availability:
Example:
Transform = New XSLTransform; Transform.LoadFromFile("c:/transforms/transform.xsl"); Transform.AddParameter("low_sales", 30000); Result = Transform.TransformFromString(StrXML); |