getPDFVersion

Get the PDF version number of an input PDF file.
getPDFVersion([in] LONG inputHandle, [out, retval] double *version)
This function returns the PDF version number of an input PDF file.
VB6:
Dim in as Long, version as Double in = pdf.openInput "c:/test/file.pdf" version = pdf.getPDFVersion(in)
VB.net:
Dim in as Long, version as Double in = pdf.openInput("c:/test/file.pdf") version = pdf.getPDFVersion(in)