Skip to footer content
USING IRONPDF

This tutorial will demonstrate how to interact with forms in PDF files programmatically.

There are multiple .NET libraries out there on the market that allow us to fill PDF forms programmatically in C#. Some of them are difficult to understand, and some of them need to be paid for.

IronPDF is the best .NET Core library as it is easy to understand and free for development. Apart from filling PDF forms, IronPDF also allows creating new PDFs from HTML String, HTML files, and URLs.

Let's take a look at how to fill PDF forms programmatically using C#. First of all, a Console Application will be created for demonstration, but you can use any as per your requirement.

Create a Visual Studio Project

Open Microsoft Visual Studio. Click on Create New Project > Select Console Application from templates > Press Next > Name your Project. Press Next > Select Target Framework. Click the Create button. The project will be created as shown below.

Programmatically Fill PDF Forms in C# (Coding Tutorial), Figure 1: a newly created Console Application in Visual Studio a newly created Console Application in Visual Studio

Install the IronPDF Library

As discussed before, the IronPDF library will be used in this tutorial. The main reason for using this .NET library is that it is free for development and provides all features in a single library.

Go to the Package Manager Console. Type the following command:

Install-Package IronPdf

This command will install the IronPDF library for us. Next, let's begin the coding.

Read PDF Documents

The first step to filling out a PDF form is reading the PDF document. Obviously, how could we fill out the form without reading it first? The following PDF document will be used for the demonstration. You can download it from the Google Drive Link, or you may use your document.

Programmatically Fill PDF Forms in C# (Coding Tutorial), Figure 2: The sample PDF file to fill out form The sample PDF file to fill out form

The code to read this file is:

using IronPdf;

// Load the PDF document from the file path
PdfDocument doc = PdfDocument.FromFile(@"D:\myPdfForm.pdf");
using IronPdf;

// Load the PDF document from the file path
PdfDocument doc = PdfDocument.FromFile(@"D:\myPdfForm.pdf");
Imports IronPdf



' Load the PDF document from the file path

Private doc As PdfDocument = PdfDocument.FromFile("D:\myPdfForm.pdf")
$vbLabelText   $csharpLabel

Pass the complete path of the PDF document inside the FromFile method. This will read the PDF file from your local system.

Get PDF Forms

Write the following line of code to get the form from the loaded PDF document.

var form = doc.Form;
var form = doc.Form;
Dim form = doc.Form
$vbLabelText   $csharpLabel

Get Form Fields

To get the form fields to set their value, IronPDF makes this very easy by accessing the form fields using two methods: either by field name or via the index. Let's discuss both one by one.

Get form Field by Name

The following code will get the field by name:

// Retrieve the form field using its name
var field = form.FindFormField("First Name");
// Retrieve the form field using its name
var field = form.FindFormField("First Name");
' Retrieve the form field using its name

Dim field = form.FindFormField("First Name")
$vbLabelText   $csharpLabel

The FindFormField method takes the field name as the argument. This is fault-tolerant and will attempt to match case mistakes and partial field names.

Get Form Field by Index

We can also get PDF form fields by using the index. The index starts from zero. The following sample code is used to get form fields by index.

// Retrieve the form field using its index
var field = form.Fields[0];
// Retrieve the form field using its index
var field = form.Fields[0];
' Retrieve the form field using its index

Dim field = form.Fields(0)
$vbLabelText   $csharpLabel

Fill PDF Forms

Next, let's combine all the code to fill out the PDF form.

using IronPdf;

class Program
{
    static void Main()
    {
        // Load the PDF document from the file path
        PdfDocument doc = PdfDocument.FromFile(@"D:\myPdfForm.pdf");

        // Access the PDF form
        var form = doc.Form;

        // Fill out the form fields using their index
        form.Fields[0].Value = "John";
        form.Fields[1].Value = "Smith";
        form.Fields[2].Value = "+19159969739";
        form.Fields[3].Value = "John@email.com";
        form.Fields[4].Value = "Chicago";

        // Save the modified PDF document
        doc.SaveAs(@"D:\myPdfForm.pdf");
    }
}
using IronPdf;

class Program
{
    static void Main()
    {
        // Load the PDF document from the file path
        PdfDocument doc = PdfDocument.FromFile(@"D:\myPdfForm.pdf");

        // Access the PDF form
        var form = doc.Form;

        // Fill out the form fields using their index
        form.Fields[0].Value = "John";
        form.Fields[1].Value = "Smith";
        form.Fields[2].Value = "+19159969739";
        form.Fields[3].Value = "John@email.com";
        form.Fields[4].Value = "Chicago";

        // Save the modified PDF document
        doc.SaveAs(@"D:\myPdfForm.pdf");
    }
}
Imports IronPdf



Friend Class Program

	Shared Sub Main()

		' Load the PDF document from the file path

		Dim doc As PdfDocument = PdfDocument.FromFile("D:\myPdfForm.pdf")



		' Access the PDF form

		Dim form = doc.Form



		' Fill out the form fields using their index

		form.Fields(0).Value = "John"

		form.Fields(1).Value = "Smith"

		form.Fields(2).Value = "+19159969739"

		form.Fields(3).Value = "John@email.com"

		form.Fields(4).Value = "Chicago"



		' Save the modified PDF document

		doc.SaveAs("D:\myPdfForm.pdf")

	End Sub

End Class
$vbLabelText   $csharpLabel

The sample code above will fill the form fields by index values. You can also do the same using the field names mentioned earlier. Let's run the program to see the output.

Filled PDF Form

Programmatically Fill PDF Forms in C# (Coding Tutorial), Figure 3: The filled form in the sample PDF file

You can see that the library can fill the PDF form with the simplest code, without any need for complex logic. This is the reason IronPDF is recommended.

Let's suppose you do not yet have any PDF documents with forms — don't worry, IronPDF provides full support to generate PDF forms. Follow the steps below:

Generate a new PDF form document

Create A New HTML File

Create a new HTML file and paste the following code:

<!DOCTYPE html>
<html>
<body>

<h2>PDF Forms</h2>

<form action="/action_page.php">
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" name="fname"><br>
  <label for="lname">Last name:</label><br>
  <input type="text" id="lname" name="lname"><br>
  <label for="contact">Contact #:</label><br>
  <input type="text" id="contact" name="contact"><br>
  <label for="email">Email:</label><br>
  <input type="text" id="email" name="email"><br>
  <label for="city">City:</label><br>
  <input type="text" id="city" name="city"><br>
</form> 

</body>
</html>
<!DOCTYPE html>
<html>
<body>

<h2>PDF Forms</h2>

<form action="/action_page.php">
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" name="fname"><br>
  <label for="lname">Last name:</label><br>
  <input type="text" id="lname" name="lname"><br>
  <label for="contact">Contact #:</label><br>
  <input type="text" id="contact" name="contact"><br>
  <label for="email">Email:</label><br>
  <input type="text" id="email" name="email"><br>
  <label for="city">City:</label><br>
  <input type="text" id="city" name="city"><br>
</form> 

</body>
</html>
HTML

Save this example HTML File. You can customize this HTML as per your form requirement.

Next, write the following code in your C# Program.

using IronPdf;

class Program
{
    static void Main()
    {
        // Create an instance of ChromePdfRenderer
        var renderer = new ChromePdfRenderer();

        // Render the HTML file as a PDF
        var pdfDocument = renderer.RenderHtmlFileAsPdf(@"D:\myForm.html");

        // Save the PDF document to the specified file path
        pdfDocument.SaveAs(@"D:\myForm.pdf");
    }
}
using IronPdf;

class Program
{
    static void Main()
    {
        // Create an instance of ChromePdfRenderer
        var renderer = new ChromePdfRenderer();

        // Render the HTML file as a PDF
        var pdfDocument = renderer.RenderHtmlFileAsPdf(@"D:\myForm.html");

        // Save the PDF document to the specified file path
        pdfDocument.SaveAs(@"D:\myForm.pdf");
    }
}
Imports IronPdf



Friend Class Program

	Shared Sub Main()

		' Create an instance of ChromePdfRenderer

		Dim renderer = New ChromePdfRenderer()



		' Render the HTML file as a PDF

		Dim pdfDocument = renderer.RenderHtmlFileAsPdf("D:\myForm.html")



		' Save the PDF document to the specified file path

		pdfDocument.SaveAs("D:\myForm.pdf")

	End Sub

End Class
$vbLabelText   $csharpLabel

Run the program to see the resulting PDF forms document.

Programmatically Fill PDF Forms in C# (Coding Tutorial), Figure 3: The PDF form generated from an HTML file The PDF form that generated from an HTML file

Summary

It is important to automatically and programmatically fill out PDF forms. In this article, the easiest approach is suggested for filling PDF forms in C# using IronPDF. Additionally, you also learned how to generate new PDF forms from scratch.

Additionally, IronPDF also offers developers methods to extract text and content from a PDF, render charts in PDFs, insert barcodes, enhance security with passwords and watermark programmatically.

There are other many useful libraries such as IronBarcode for working with barcodes, IronXL for working with Excel documents, and IronOCR for working with OCR. You can get all five libraries for the price of just two by purchasing the complete Iron Suite. Please visit the Iron Software Licensing Page for more details.

Frequently Asked Questions

What is the best way to fill out PDF forms using C#?

Using IronPDF, a .NET library, you can programmatically fill PDF forms by loading the document with PdfDocument.FromFile and accessing the form fields to set their values.

How do I install a library for working with PDFs in my C# project?

To install IronPDF, open the Package Manager Console in Visual Studio and execute the command: Install-Package IronPdf. This will add the IronPDF library to your project.

How can I fill a PDF form using a library in C#?

First, load the PDF document using PdfDocument.FromFile method in IronPDF. Access the form using doc.Form and then set the field values using form.Fields[index].Value or form.FindFormField('FieldName').Value.

Is there a free library for PDF operations in .NET?

IronPDF is free for development purposes, offering a comprehensive set of features without needing to pay until deployment.

Can I generate new PDF forms using a .NET library?

Yes, using IronPDF, you can generate new PDF forms by rendering HTML forms into PDF documents with the ChromePdfRenderer class.

What are some advantages of using a .NET library for PDF operations?

IronPDF offers ease of use, integration into .NET projects, and extensive features like PDF form filling, text extraction, and document security features.

How can I ensure PDF security and compliance in my application?

IronPDF provides solutions for digital signing, redaction, encryption, and protection of PDF documents.

What libraries can assist with various document operations?

Iron Software offers libraries such as IronBarcode for barcode operations, IronXL for Excel document handling, and IronOCR for optical character recognition.

How do I convert an HTML file to a PDF in C#?

To render an HTML file to a PDF, use IronPDF's ChromePdfRenderer and call RenderHtmlFileAsPdf with the path to your HTML file. Save the output using the SaveAs method.

Is it possible to extract text from a PDF using a .NET library?

Yes, IronPDF provides methods to extract text and content from PDF documents, making it versatile for various document handling tasks.

Chipego
Software Engineer
Chipego has a natural skill for listening that helps him to comprehend customer issues, and offer intelligent solutions. He joined the Iron Software team in 2023, after studying a Bachelor of Science in Information Technology. IronPDF and IronOCR are the two products Chipego has been focusing on, but his knowledge of all products is growing daily, as he finds new ways to support customers. He enjoys how collaborative life is at Iron Software, with team members from across the company bringing their varied experience to contribute to effective, innovative solutions. When Chipego is away from his desk, he can often be found enjoying a good book or playing football.