HI,
is there a possibility in StiWebViewerFx, that RTF is rendered as text and not as an image when saving to a PDF file?
RTF in PDF Output
-
- Posts: 32
- Joined: Fri Dec 07, 2012 1:40 pm
Re: RTF in PDF Output
Hello.
We need additional time to prepare an answer for you.
Thank you.
We need additional time to prepare an answer for you.
Thank you.
Re: RTF in PDF Output
Hello,
For this you need to handle the ReportExport event and load report template once again in this event, for example:
Thank you.
For this you need to handle the ReportExport event and load report template once again in this event, for example:
Code: Select all
protected void StiWebViewerFx1_ReportExport(object sender, StiWebViewerFx.StiExportReportEventArgs e)
{
e.Report.Load("MyReport.mrt");
}