PDFDocument オブジェクトの解説

ProgID

easyPDF.PDFDocument.5

CLSID

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

UUID

08CC91EB-D7AE-4315-B393-AC02899F68D2

このオブジェクトはeasyPDF PDF Documentを表現します。これが全てのeasyPDF PDF Document SDKの仕様のエントリーポイントです。 このオブジェクトはPDFドキュメントからの、またはPDFドキュメントへの情報の検索と変更を可能にさせます。このオブジェクトは現在PDFフォーム フィールドの処理をサポートしています。

使用例


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