Articles in this section
Category / Section

How to add fixed-height paragraph border?

1 min read

You can draw the PdfTextElement for the particular paragraph by using rectangle bounds and can draw the rectangle by using graphics at the specified bounds as border.

Refer to the following code example to achieve the above requirements.

C#

//Creates a new PDF document.
PdfDocument doc = new PdfDocument();
doc.PageSettings.Margins.All = 0;
//Adds a new page to PDF document.
PdfPage page = doc.Pages.Add();
//Creates PDF graphics for the page.
PdfGraphics graphics = page.Graphics;
//Creates a text element
PdfTextElement element = new PdfTextElement();
element.Brush = new PdfSolidBrush(Color.Black);
element.StringFormat = format;
element.Text = " How to add fixed-height paragraph border?”;
element.Font = new PdfStandardFont(PdfFontFamily.TimesRoman, 9);
//Initializing size for rectangle
SizeF sz = new SizeF(80, 60);
//Draws rectangle
page.Graphics.DrawRectangle(PdfPens.Black, PdfBrushes.White, new RectangleF(new PointF(10, 10), sz));
//Draws text on to the page with respective boundaries of the rectangle
element.Draw(page, new RectangleF(new PointF(10, 10), sz), layoutFormat);

Sample Link

https://www.syncfusion.com/downloads/support/directtrac/general/ParagraphSample-884800425.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