Need to know how to override the default XML element /node generation. the Can you please share the "API" help document as well? Currently passing it as null in the following api to generate xml.
void ExportDocumentEx(IDocument Document, string ExportRootFolder, string FileName, IFileExportParams ExportParams = null);
Thanks
Comments
1 comment
Hi,
As far as I understand you want to change the way data is exported into XML file. Generally to do this you should do the following:
1. CreateFileExportParams.
2. Specify the export format to XML
3. Change the properties of FileExportParams::XMLParams object to configur export.
4. Pass the FileExportParams object to the ExportDocumentEx method.
Please find more information about this in Help → Guided Tour → Advanced Techniques → Tuning Export Parameters.
Please sign in to leave a comment.