Interactivity in the exported report
Interactivity in the exported report
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?
Re: Interactivity in the exported report
Hello.
Could you specify what kind of interaction you want do disable?
Thank you.
Could you specify what kind of interaction you want do disable?
Thank you.
Re: Interactivity in the exported report
hyperlink (disable the ability click, change the cursor and tooltip)
Re: Interactivity in the exported report
Hello,
In this case, you can disable hyperlink before Export in the Exporting event of the report:
Thank you.
In this case, you can disable hyperlink before Export in the Exporting event of the report:
Code: Select all
foreach (StiPage page in this.RenderedPages)
{
foreach (StiComponent comp in page.Components)
{
if (comp is StiText)
comp.HyperlinkValue = "";
}
}
- Attachments
-
- ReportSample.mrt
- (4.28 KiB) Downloaded 123 times