How to add formatted HTML tag in PdfGridCell?
Add HtmlTag in PdfGridCell
Follow the given steps to add HTML style text in the PDF grid:
- Initialize the PdfHtmlTextElement with the HTML content.
- Assign the PdfHtmlTextElement object to the grid cell value.Note:
The PdfHtmlTextElement class supports a basic set of HTML tags to render HTML format text in the PDF document. Refer to https://help.syncfusion.com/file-formats/pdf/working-with-text#adding-a-html-styled-text for more details.
Code snippet
// Create PDF document PdfDocument doc = new PdfDocument();// Add pages PdfPage page = doc.Pages.Add();
// Create PdfGrid PdfGrid grid = new PdfGrid();
// Add PdfGridRow PdfGridRow row = grid.Rows.Add();
// Add 2 columns grid.Columns.Add(2);
row.Cells[0].Value = "1"; row.Cells[1].Value = "2";
row = grid.Rows.Add();
string longText = "<font color='#FF0000'>Essential PDF</font> is a <br/>.NET" +
"library with the capability to produce Adobe PDF files";
PdfFont font = new PdfStandardFont(PdfFontFamily.Courier, 14);
// Create PdfHtmlTextElement PdfHTMLTextElement richTextElement = new PdfHTMLTextElement(longText, font, PdfBrushes.Black);
richTextElement.TextAlign = TextAlign.Left; row.Cells[0].Value = "Hello World"; row.Cells[1].Value = richTextElement;
// Draw PdfGrid grid.Draw(page.Graphics, new PointF(0, 0));
// Save PDF document doc.Save("button1.pdf");
// Close document doc.Close(true);
Sample Link: https://www.syncfusion.com/downloads/support/directtrac/140556/ze/HtmlTag920183025
Note:
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from a trial setup or from 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 formatted HTML tag in PdfGridCell.
You can refer to our WinForms PDF’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms PDF documentation to understand how to present and manipulate data.
For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms PDF and other WinForms components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!