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