Export report to PDF/A format
Posted: Mon Sep 05, 2011 3:36 am
I am trying to export a report to PDF/A format using this code:
Stimulsoft.Report.StiReport report = new StiReport();
report.RegData(dataSet1);
report.Load(strRapportmalkatalog + "\\protokoll.mrt");
report.Render(true);
report.Show(true);
Then, when im ready to export, the code looks like this:
report.ExportDocument(StiExportFormat.Pdf, filename);
But this is just Pdf and not PDF/A. I am using version 2011.1.1000.0 of the library, and the only place i can see PDF/A is in the report previewer. But I need to do this in the code.
Stimulsoft.Report.StiReport report = new StiReport();
report.RegData(dataSet1);
report.Load(strRapportmalkatalog + "\\protokoll.mrt");
report.Render(true);
report.Show(true);
Then, when im ready to export, the code looks like this:
report.ExportDocument(StiExportFormat.Pdf, filename);
But this is just Pdf and not PDF/A. I am using version 2011.1.1000.0 of the library, and the only place i can see PDF/A is in the report previewer. But I need to do this in the code.