Text Size Issues in Exported Files
Posted: Fri Apr 18, 2025 6:50 am
Hi everyone,
I'm experiencing a problem with the text size in my exported documents. Here’s the code I’m currently using:
The PDF output displays the text size correctly, but the HTML version appears to have smaller text. Has anyone faced this issue and found a way to fix it?
Thanks for your assistance!
I'm experiencing a problem with the text size in my exported documents. Here’s the code I’m currently using:
Code: Select all
var reportGenerator = new StiReport();
reportGenerator.Load(@"C:\folder\template.mrt");
var reportDocument = reportGenerator.LoadDocument(@"C:\folder\report.mdc");
reportDocument.ExportDocument(StiExportFormat.Pdf, @"C:\folder\output.pdf");
reportDocument.ExportDocument(StiExportFormat.Html, @"C:\folder\output.html");
Thanks for your assistance!