ByteScout Premium Suite - C# - Read form values from 1099-int form with pdf sdk - ByteScout

ByteScout Premium Suite – C# – Read form values from 1099-int form with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – C# – Read form values from 1099-int form with pdf sdk

How to read form values from 1099 int form with pdf sdk in C# and ByteScout Premium Suite

Learn to code in C# to read form values from 1099 int form with pdf sdk with this step-by-step tutorial

Read form values from 1099 int form with pdf sdk is simple to apply in C# if you use these source codes below. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording. It can read form values from 1099 int form with pdf sdk in C#.

This prolific sample source code in C# for ByteScout Premium Suite contains various functions and other necessary options you should do calling the API to read form values from 1099 int form with pdf sdk. Simply copy and paste in your C# project or application you and then run your app! Applying C# application mostly includes various stages of the software development so even if the functionality works please test it with your data and the production environment.

Trial version of ByteScout Premium Suite is available for free. Source code samples are included to help you with your C# app.

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 Bytescout.PDF; using System; namespace ReadForm { class Program { static void Main(string[] args) { // Load PDF form Document pdfDocument = new Document(@"f1099int_filled.pdf"); pdfDocument.RegistrationName = "demo"; pdfDocument.RegistrationKey = "demo"; // Read from second page Page page = pdfDocument.Pages[1]; Console.WriteLine("F1099int_filled Form values are as follows"); // Is Void var lIsVoid = ((CheckBox)page.Annotations["c2_1[0]"]).Checked; Console.WriteLine({code}quot;Is Void: {lIsVoid}"); // Payer's info var cPayerInfo = ((EditBox)page.Annotations["f2_1[0]"]).Text; Console.WriteLine({code}quot;Payer Info: {cPayerInfo}"); // Payer's TIN var cPayerTin = ((EditBox)page.Annotations["f2_2[0]"]).Text; Console.WriteLine({code}quot;Payer TIN: {cPayerTin}"); // Recipient's TIN var cRecipientTin = ((EditBox)page.Annotations["f2_4[0]"]).Text; Console.WriteLine({code}quot;Recipient TIN: {cRecipientTin}"); // Street Address 1 var cStreetAddress1 = ((EditBox)page.Annotations["f2_5[0]"]).Text; Console.WriteLine({code}quot;Street Address - 1: {cStreetAddress1}"); // Street Address 2 var cStreetAddress2 = ((EditBox)page.Annotations["f2_6[0]"]).Text; Console.WriteLine({code}quot;Street Address - 2: {cStreetAddress2}"); // Cleanup pdfDocument.Dispose(); Console.WriteLine(); Console.WriteLine("Press any key to exit...."); Console.ReadLine(); } } }

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