TiXI
3.3.0
|
Functions | |
DLL_EXPORT ReturnCode | tixiXSLTransformationToString (TixiDocumentHandle handle, const char *xslFilename, char **resultText) |
Performs a XML transformation . More... | |
DLL_EXPORT ReturnCode | tixiXSLTransformationToFile (TixiDocumentHandle handle, const char *xslFilename, const char *resultFilename) |
Performs a XML transformation and saves the result to resultFilename. More... | |
Function to perform XSL transformations.
DLL_EXPORT ReturnCode tixiXSLTransformationToFile | ( | TixiDocumentHandle | handle, |
const char * | xslFilename, | ||
const char * | resultFilename | ||
) |
Performs a XML transformation and saves the result to resultFilename.
Fortran syntax:
tixi_xsl_transformation_to_file( integer handle, character*n xslFilename, character*n resultFilename, integer error )
[in] | handle | handle as returned by tixiOpenDocument, tixiOpenDocumentRecursive, tixiOpenDocumentFromHTTP, tixiCreateDocument or tixiImportFromString |
[in] | xslFilename | The name of a local file with XSL mapping informations. |
[in] | resultFilename | The name of a local file to store the resulting XML document in. |
DLL_EXPORT ReturnCode tixiXSLTransformationToString | ( | TixiDocumentHandle | handle, |
const char * | xslFilename, | ||
char ** | resultText | ||
) |
Performs a XML transformation .
Fortran syntax:
tixi_xsl_transformation_to_string( integer handle, character*n xslFilename, character*n resultFilename, integer error )
[in] | handle | handle as returned by tixiOpenDocument, tixiOpenDocumentRecursive, tixiOpenDocumentFromHTTP, tixiCreateDocument or tixiImportFromString |
[in] | xslFilename | The name of a local file with XSL mapping informations. |
[out] | resultText | The resulting document of the transformation. |