Articles in this section
Category / Section

How to draw multiple text paragraphs with the correct pagination?

1 min read

You can draw multiple pages with pagination by using the PdfTextElement class available under the Syncfusion.Pdf.Graphics name space.

Refer to the following code example to draw the text by using the PdfTextElement.

C#

public void AddTextElement(string text, PdfFont font, float delay, int space, PdfBrush brush)
{
var prefixSpace = new string(' ', space);
//Creating Pdf text element
PdfTextElement textElement = new PdfTextElement(prefixSpace + text) { Font = font };
//setting the brush to the element
textElement.Brush = brush;
if (CurrentPage.GetClientSize().Height - _yPos <= font.Size)
{
_yPos += delay;
}
//Drawing the textelement in the page and getting the layout result
PdfLayoutResult result = textElement.Draw(CurrentPage, StartingPoint);
//getting the text element bottom position to draw next element
var newYpos = result.Bounds.Bottom + delay;
_yPos = newYpos;
}

Sample Link

https://www.syncfusion.com/downloads/support/directtrac/general/Multiple_Text_Pages580745928.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied