RTF in PDF Output

Stimulsoft Reports.WEB discussion
Post Reply
hellenschmidt
Posts: 32
Joined: Fri Dec 07, 2012 1:40 pm

RTF in PDF Output

Post 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?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: RTF in PDF Output

Post by HighAley »

Hello.

We need additional time to prepare an answer for you.

Thank you.
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

Re: RTF in PDF Output

Post 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.
Post Reply