PDFDocument Object Description

ProgID

easyPDF.PDFDocument.6

CLSID

5496DCAC-5261-4654-BCA8-351544DA1858

UUID

4CF55C9B-CF47-4766-99EC-F7B6B0BB8926

This object represents a PDF document. This is the entry point for accessing all of the easyPDF PDF Document SDK feature. This object lets you retrieve and modify information from/to PDF documents. This object currently supports processing PDF form fields.

Example Usage


Set oDocument = CreateObject("easyPDF.PDFDocument.6")
 
oDocument.Open "C:\input.pdf"
Set oFormFields = oDocument.FormFields
 
Set oTextField = oFormFields("My Text Field")
oTextField.Value = "Hello"
 
oDocument.SaveAs "C:\output.pdf"
oDocument.Close False