setInfo

Set a document information dictionary entry in an output PDF file.
setInfo([in] LONG outputHandle, [in] BSTR key, [in] BSTR val)
This function sets a document information dictionary entry in an output PDF file. The entry specified by key is set to val.

Standard info dictionary keys include: Title, Author, Subject, Keywords, Creator, Producer, CreationDate, ModDate, and Trapped. (XpdfSplice will set the Producer key to indicate the version of XpdfSplice used.)

VB6:
Dim out as Long out = pdf.openOutput "c:/test/output.pdf" pdf.setInfo out, "Author", "John Doe"
VB.net:
Dim out as Long out = pdf.openOutput("c:/test/output.pdf") pdf.setInfo(out, "Author", "John Doe")
getInfo