This sample source code below will demonstrate you how to read form values from PDF form in VB.NET. ByteScout PDF SDK is the library for pdf documents generation, modification and updates. Can also generate and fill PDF forms. Provides support for text (fonts, style, size, font family), layers, pdf form fields, vector and raster drawings and you can use it to read form values from PDF form with VB.NET.
Fast application programming interfaces of ByteScout PDF SDK for VB.NET plus the instruction and the code below will help you quickly learn how to read form values from PDF form. Just copy and paste the code into your VB.NET application’s code and follow the instruction. You can use these VB.NET sample examples in one or many applications.
ByteScout PDF SDK free trial version is available on our website. VB.NET and other programming languages are supported.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports Bytescout.PDF ''' <summary> ''' This example demonstrates how to get PDF form values programmatically. ''' </summary> Class Program Shared Sub Main() ' Load PDF form Dim pdfDocument = New Document("form.pdf") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Dim page = pdfDocument.Pages(0) ' Get widget by its name and get value Dim box1 = DirectCast(page.Annotations("editBox1"), EditBox).Text Dim box2 = DirectCast(page.Annotations("editBox2"), EditBox).Text Dim checkBox1 = DirectCast(page.Annotations("checkBox1"), CheckBox).Checked ' Cleanup pdfDocument.Dispose() ' Writing values to console Console.WriteLine("Form values are as follows:") Console.WriteLine(box1) Console.WriteLine(box2) Console.WriteLine(checkBox1) Console.WriteLine() Console.WriteLine("Press any key to exit....") Console.ReadLine() End Sub End Class
60 Day Free Trial or Visit ByteScout PDF SDK Home Page
Explore ByteScout PDF SDK Documentation
Explore Samples
Sign Up for ByteScout PDF SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout PDF SDK Home Page
Explore ByteScout PDF SDK Documentation
Explore Samples
Sign Up for ByteScout PDF SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: