ByteScout Premium Suite - C# - Fill form w-4 with pdf sdk - ByteScout

ByteScout Premium Suite – C# – Fill form w-4 with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – C# – Fill form w-4 with pdf sdk

fill form w 4 with pdf sdk in C# with ByteScout Premium Suite

Learn to code in C# to make fill form w 4 with pdf sdk with this simple How-To tutorial

These source code samples are assembled by their programming language and functions they use. ByteScout Premium Suite was created to assist fill form w 4 with pdf sdk in C#. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.

The below SDK samples describe how to quickly make your application do fill form w 4 with pdf sdk in C# with the help of ByteScout Premium Suite. If you want to know how it works, then this C# sample code should be copied and pasted into your application’s code editor. Then just compile and run it. Enjoy writing a code with ready-to-use sample C# codes to implement fill form w 4 with pdf sdk using ByteScout Premium Suite.

On our website you may get trial version of ByteScout Premium Suite for free. Source code samples are included to help you with your C# application.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using System.Collections.Generic; using System.Diagnostics; using Bytescout.PDF; namespace FillFormExample { /// <summary> /// This example demonstrates how to fill PDF form programmatically. /// </summary> class Program { static void Main() { // Map of form fields and sample values to set Dictionary<string, object> fieldMap = new Dictionary<string, object>() { { "f1_01[0]", "John J" }, // FirstName and middle initial { "f1_02[0]", "Smith" }, // LastName { "f1_03[0]", "111-111-3333" }, // Security number { "f1_04[0]", "12 Palm st., Hill Valley" }, // Home address { "f1_05[0]", "CA 12345" }, // City, Town, State and ZIP { "c1_1[1]", "True" }, // Married { "f1_06[0]", "123" }, // Total number of allowance { "f1_07[0]", "443.44" }, // Additional amount { "f1_09[0]", "Google, Somewhere in CA" }, // Employer's name and address { "f1_10[0]", "12-3-2012" }, // First date of employment { "f1_11[0]", "EMP223344" } // Employer identification number }; // Load PDF form Document pdfDocument = new Document(@".\W-4.pdf"); pdfDocument.RegistrationName = "demo"; pdfDocument.RegistrationKey = "demo"; // Get first page Page page = pdfDocument.Pages[0]; // Get widget by its name and change value foreach (KeyValuePair<string, object> keyValuePair in fieldMap) { Annotation annotation = page.Annotations[keyValuePair.Key]; if (annotation is CheckBox) { ((CheckBox)annotation).Checked = Convert.ToBoolean(keyValuePair.Value); } else if (annotation is EditBox) { ((EditBox)annotation).Text = (string)keyValuePair.Value; } } // Save modified document pdfDocument.Save("result.pdf"); // Cleanup pdfDocument.Dispose(); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("result.pdf"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next