Create (xsldoc)

De Wiki1000

<source lang='delphi'>Constructor Create(aOwner:TComponent);</source>

Cette fonction crée une instance de transformation XSL.

aOwner Propriétaire du document.

Exemple: <source lang='delphi'> procedure foo(const iXSLFile:string); var xsl:TxslDocument; begin

 xsl := TxslDocument.Create(nil);
 xsl.LoadFromFile(iXSLFile);
 ....

end; </source>

Voir aussi:

{{#if:Documents XSL (tech)|

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

|

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

}}