 | PdfiumFPDF_GetFileVersion Method |
Get the file Version of the specific PDF document.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDF_GetFileVersion(
IntPtr doc,
out int fileVersion
)
Public Shared Function FPDF_GetFileVersion (
doc As IntPtr,
<OutAttribute> ByRef fileVersion As Integer
) As Boolean
public:
static bool FPDF_GetFileVersion(
IntPtr doc,
[OutAttribute] int% fileVersion
)
static member FPDF_GetFileVersion :
doc : IntPtr *
fileVersion : int byref -> bool
public static boolean FPDF_GetFileVersion(
IntPtr doc,
/** @attribute OutAttribute */ /** @ref */int fileVersion
)
Patagames.Pdf.Pdfium.FPDF_GetFileVersion = function(doc, fileVersion);
Parameters
- doc IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String), FPDF_LoadMemDocument(Byte, Int32, String) or FPDF_LoadCustomDocument(FPDF_FILEACCESS, String)
- fileVersion Int32
- The PDF file Version. File Version: 14 for 1.4, 15 for 1.5, ...
Return Value
BooleanTRUE if this call succeed, If failed, FALSE is returned.
Remarks
See Also