ByteScout PDF Suite - VB.NET - Extract info about pdf with pdf extractor sdk - ByteScout

ByteScout PDF Suite – VB.NET – Extract info about pdf with pdf extractor sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Suite – VB.NET – Extract info about pdf with pdf extractor sdk

How to extract info about pdf with pdf extractor sdk in VB.NET using ByteScout PDF Suite

Learn to extract info about pdf with pdf extractor sdk in VB.NET

ByteScout simple and easy to understand tutorials are planned to describe the code for both VB.NET beginners and advanced programmers. ByteScout PDF Suite is the set that includes 6 SDK products to work with PDF from generating rich PDF reports to extracting data from PDF documents and converting them to HTML. This bundle includes PDF (Generator) SDK, PDF Renderer SDK, PDF Extractor SDK, PDF to HTML SDK, PDF Viewer SDK and PDF Generator SDK for Javascript. It can be applied to extract info about pdf with pdf extractor sdk using VB.NET.

The following code snippet for ByteScout PDF Suite works best when you need to quickly extract info about pdf with pdf extractor sdk in your VB.NET application. Follow the instructions from scratch to work and copy the VB.NET code. Check VB.NET sample code samples to see if they respond to your needs and requirements for the project.

All these programming tutorials along with source code samples and ByteScout free trial version are available for download from our website.

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

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

Program.vb
      
Imports Bytescout.PDFExtractor Class Program Friend Shared Sub Main(args As String()) ' Create Bytescout.PDFExtractor.InfoExtractor instance Dim extractor As New InfoExtractor() extractor.RegistrationName = "demo" extractor.RegistrationKey = "demo" ' Load sample PDF document extractor.LoadDocumentFromFile(".\sample1.pdf") Console.WriteLine("Author: " + extractor.Author) Console.WriteLine("Creator: " + extractor.Creator) Console.WriteLine("Producer: " + extractor.Producer) Console.WriteLine("Subject: " + extractor.Subject) Console.WriteLine("Title: " + extractor.Title) Console.WriteLine("CreationDate: " + extractor.CreationDate) Console.WriteLine("Keywords: " + extractor.Keywords) Console.WriteLine("Bookmarks: " + extractor.Bookmarks) Console.WriteLine("Encrypted: " + extractor.Encrypted.ToString) ' Cleanup extractor.Dispose() Console.WriteLine() Console.WriteLine("Press any key to continue...") Console.ReadLine() End Sub End Class

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF Suite Home Page

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF 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 PDF Suite Home Page

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next