Articles in this section
Category / Section

How to create table in a PDF file from DataTable in WinForms PDF?

3 mins read

Syncfusion Essential PDF is a .NET PDF library used to create, read, and edit PDF documents. Using this library, you can create a PDF table in document from DataTable in C# and VB.NET.

Steps to create table in PDF from DataTable programmatically:

  1. Create a new console C# application project. Create console application in Visual Studio in WinForms PDF
  2. Install the Syncfusion.Pdf.WinForms NuGet package as reference to your .NET Framework applications from NuGet.org. Install nuget packages in WinForms PDF
  3. Include the following namespaces in the Program.cs file.

C#

using Syncfusion.Pdf;
using Syncfusion.Pdf.Grid;
using System.Data;
using System.Drawing;

 

VB.NET

Imports System.Drawing
Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Grid

 

  1. Use the following code snippet to create table in a PDF file from DataTable.

C#

//Create a new PDF document
using (PdfDocument doc = new PdfDocument())
{
  //Add a page
  PdfPage page = doc.Pages.Add();
 
  //Create a PdfGrid
  PdfGrid pdfGrid = new PdfGrid();
 
  //Create a DataTable
  DataTable dataTable = new DataTable();
 
  //Add columns to the DataTable
  dataTable.Columns.Add("ID");
  dataTable.Columns.Add("Name");
 
  //Add rows to the DataTable
  dataTable.Rows.Add(new object[] { "E01", "Clay" });
  dataTable.Rows.Add(new object[] { "E02", "Thomas" });
  dataTable.Rows.Add(new object[] { "E03", "George" });
  dataTable.Rows.Add(new object[] { "E04", "Stefan" });
  dataTable.Rows.Add(new object[] { "E05", "Mathew" });
 
  //Assign data source
  pdfGrid.DataSource = dataTable;
 
  //Draw grid to the page of PDF document
  pdfGrid.Draw(page, new PointF(10, 10));
 
  //Save the document
  doc.Save("Output.pdf");
}

 

VB.NET

'Create a new PDF document
Using doc As PdfDocument = New PdfDocument()
 
  'Add a page
  Dim page As PdfPage = doc.Pages.Add()
 
  'Create a PdfGri
  Dim pdfGrid As PdfGrid = New PdfGrid
 
  'Create a DataTable.
  Dim dataTable As DataTable = New DataTable
 
  'Add columns to the DataTable
  dataTable.Columns.Add("ID")
  dataTable.Columns.Add("Name")
 
  'Add rows to the DataTable
  dataTable.Rows.Add(New Object() {"E01", "Clay"})
  dataTable.Rows.Add(New Object() {"E02", "Thomas"})
  dataTable.Rows.Add(New Object() {"E03", "George"})
  dataTable.Rows.Add(New Object() {"E04", "Stefan"})
  dataTable.Rows.Add(New Object() {"E05", "Mathew"})
 
  'Assign data source
  pdfGrid.DataSource = dataTable
 
  'Draw grid to the page of PDF document
  pdfGrid.Draw(page, New PointF(10, 10))
 
  'Save the document
  doc.Save("Output.pdf")
 
End Using

 

A complete working sample can be downloaded from Create-PDF-Table using DataTable.zip

By executing the program, you will get the PDF document as follows. Create Table in PDF File using DataTable in WinForms PDF

Take a moment to peruse the documentation, where you can find other options like drawing right-to-left text and multi-column text, consuming TrueType fonts, Standards fonts, and CJK fonts. Also, the features like PDF form filling, extract text or images from PDF, and protect PDF documents with code examples.

Refer here to explore the rich set of Syncfusion Essential PDF features.

An online sample link to create table in a PDF file.

Note:

Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion license key in your application to use the components without trail message.

 

Conclusion

I hope you enjoyed learning about how to create table in a PDF file from DataTable.

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 Diagram 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 forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

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