We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

RTF text cutoff

I am tying to put RTF text into a PDF via IPDFGraphics.DrawRTFText(0,0,rtfString) but it gets sut off at the end of the page. There are numerous posts about this and in the ASP.NET section of PDF it was it would be fixed in 2-3 weeks back in 6/2006 - what happened? Has this been fixed?

1 Reply

AD Administrator Syncfusion Team February 9, 2007 08:54 AM UTC

Hi Jason,

This can be done by setting the BreakBehavior of the GraphicState object to AutoBreakBehavior.Cropping and passing this object to the DrawRTFText method as an argument.

props.BreakBehavior =AutoBreakBehavior.Cropping

//Draw RTF text at the specified Location.
pdfDoc.LastPage.Graphics.DrawRTFText(New PointF(10,50), rtf,props)

The way that RTF support is implemented is by rendering rich text to a vector image using the richtextbox control internally and then the vector image gets rendered into the PDF document. The BreakBehavior setting to the graphicstate object is for making the multipage image span across several pages.

Please take a look into the attached sample and let me know if you have any queries.

Thanks for your interest in Syncfusion products.

Best Regards,
Bhuvaneswari




RTFToPDF.zip

Loader.
Live Chat Icon For mobile
Up arrow icon