Properties

Applies to

PDFDocument object

Description

Gets or sets the properties of the PDF document.

Datatype

PDFDocumentProperties

Usage

You can set the properties for the PDF document as follows:

PDFDocument lpdf_doc
long ll_return,ll_return1

lpdf_doc = Create PDFDocument

lpdf_doc.properties.author = "appeon-author"
lpdf_doc.properties.application = "appeon-creator"
lpdf_doc.properties.keywords = "appeon-keywords"
lpdf_doc.properties.subject = "appeon-subject"
lpdf_doc.properties.title = "appeon"

ll_return = lpdf_doc.importpdf( "D:\noannotsnoPwd.pdf")
ll_return1 = lpdf_doc.save( "D:\properties.pdf")

destroy lpdf_doc