How to add fixed-height paragraph border?
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
Note:
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from the trial setup or the NuGet feed, include a license key in your projects. Refer to the link to learn about generating and registering the Syncfusion® license key in your application to use the components without a trial message.
Conclusion:
I hope you enjoyed learning about how to add fixed-height paragraph border.
You can refer to our Flutter PDF feature tour page to learn about its other groundbreaking features and documentation, and how to quickly get started with configuration specifications. You can also explore our Flutter PDF Flutter PDF examples to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to explore our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums or feedback portal. We are always happy to assist you!