ByteScout PDF Suite - VBScript - Setup pdf document information with pdf sdk - ByteScout

ByteScout PDF Suite – VBScript – Setup pdf document information with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Suite – VBScript – Setup pdf document information with pdf sdk

setup pdf document information with pdf sdk in VBScript and ByteScout PDF Suite

Build setup pdf document information with pdf sdk in VBScript

:

Step-by-step instructions on how to do setup pdf document information with pdf sdk in VBScript

The example source codes on this page will display you how to make setup pdf document information with pdf sdk in VBScript. ByteScout PDF Suite helps with setup pdf document information with pdf sdk in VBScript. 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.

This rich and prolific sample source code in VBScript for ByteScout PDF Suite contains various functions and options you should do calling the API to implement setup pdf document information with pdf sdk. To use setup pdf document information with pdf sdk in your VBScript project or application just copy & paste the code and then run your app! These VBScript sample examples can be used in one or many applications.

ByteScout PDF Suite is available as a free trial. You may get it from our website along with all other source code samples for VBScript applications.

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

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

DocumentInformation.vbs
      
' This example demonstrates how to set various document properties. ' Create Bytescout.PDF.Document object Set pdfDocument = CreateObject("Bytescout.PDF.Document") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Set comHelpers = pdfDocument.ComHelpers ' Add page Set page1 = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) pdfDocument.Pages.Add(page1) ' Change document information. ' Open Document Properties in PDF viewer to see the changes. pdfDocument.DocumentInfo.Author = "John Doe" pdfDocument.DocumentInfo.Creator = "My Application" pdfDocument.DocumentInfo.Keywords = "accounting,invoice" pdfDocument.DocumentInfo.Title = "Invoice #12345" pdfDocument.DocumentInfo.Subject = "Invoice" pdfDocument.DocumentInfo.CreationDate = CDate("2015-12-21") pdfDocument.DocumentInfo.ModificationDate = Now ' Save document to file pdfDocument.Save("result.pdf") ' Open document in default PDF viewer app Set shell = CreateObject("WScript.Shell") shell.Run "result.pdf", 1, false

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