TransformToString (xsldoc)

De Wiki1000

<source lang='delphi'>function TransformToString(source:TxmlDocument):string;</source>

Cette fonction transforme un document source vers une chaîne.

Result Chaîne résultat de la transformation.
source Document source à transformer.

Exemple: <source lang='delphi'> function doTransform(const iXSLFile:string; source:TxmlDocument):string; var xsl:TxslDocument; begin

 xsl := TxslDocument.Create(nil);
 xsl.LoadfromFile(iXSLFile);
 Result := xsl.TransformToString(source);

end; </source>

Voir aussi:

{{#if:Documents XSL (tech)|

{{#if:Documents XSL (tech)|— Documents XSL (tech) |}} — Développement DSM

|

{{#if:|— [[{{{1}}}]] |}} — Développement DSM

}}