Interactivity in the exported report
Posted: Mon Jul 18, 2016 9:47 am
I need interactivity to be available only in preview mode, but when I export to PDF interactivity is still available. How can I achieve that?
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
foreach (StiPage page in this.RenderedPages)
{
foreach (StiComponent comp in page.Components)
{
if (comp is StiText)
comp.HyperlinkValue = "";
}
}