PDFDocument Object Description

ProgID

easyPDF.PDFDocument.5

CLSID

5147F2D9-5676-4668-9BAF-61EDC68C818A

UUID

08CC91EB-D7AE-4315-B393-AC02899F68D2

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.5")

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

 

 

<<