BCL easyPDF SDK
easyPDF SDK Usermanual
PDF Creator Programming API  |  Download Free Trial  |  Contact Us to Purchase

PDFDocument Object Description

ProgID

easyPDF.PDFDocument.7

CLSID

85E336C1-AE9A-4d03-97F7-60C3FD965EFC

UUID

D1E38948-AEF4-4ee1-B7BF-75655FA5EAD2

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