PDF Export Editable Property
Posted: Wed Mar 23, 2011 9:51 pm
Does Reports.Web support the PDF editable property. Can I set the pdf export to non editable, non printable etc... In code behind?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
webViewer1.ReportExport += new Stimulsoft.Report.Web.StiExportDataEventHandler(webViewer1_ReportExport);
...
void webViewer1_ReportExport(object sender, Stimulsoft.Report.Web.StiExportDataEventArgs e)
{
if (e.Settings is StiPdfExportSettings)
{
StiPdfExportSettings pdfSettings = e.Settings as StiPdfExportSettings;
pdfSettings.UserAccessPrivileges = StiUserAccessPrivileges.None;
}
}