Code: Select all
report.ExportDocument(Stimulsoft.Report.StiExportFormat.Pdf, stream)
Is it possibile to do it?
Thank you.
Code: Select all
report.ExportDocument(Stimulsoft.Report.StiExportFormat.Pdf, stream)
Code: Select all
StiPdfExportSettings exportSettings = new StiPdfExportSettings();
exportSettings.UserAccessPrivileges = StiUserAccessPrivileges.None;
report.ExportDocument(Stimulsoft.Report.StiExportFormat.Pdf, stream, exportSettings);