Page 1 of 1
RTF in PDF Output
Posted: Mon Feb 18, 2013 5:23 am
by hellenschmidt
HI,
is there a possibility in StiWebViewerFx, that RTF is rendered as text and not as an image when saving to a PDF file?
Re: RTF in PDF Output
Posted: Mon Feb 18, 2013 9:31 am
by HighAley
Hello.
We need additional time to prepare an answer for you.
Thank you.
Re: RTF in PDF Output
Posted: Wed Feb 27, 2013 11:00 am
by Vladimir
Hello,
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");
}
Thank you.