|
|
|
|
|
PDFNbSignatures (Function) In french: PDFNbSignature Gets the number of signatures in a PDF document. MyPDF is pdfDocument = PDFOpen("test.pdf") Â // Number of signatures in the PDF file nNbSignatures is int = PDFNbSignatures(MyPDF) Â // Get signature details FOR i = 1 _TO_ nNbSignatures // Get signature bufSignature is Buffer = PDFGetSignature(MyPDF, i) Â // Get signature date dtSignatureDate is DateTime = PDFGetSignatureDate(MyPDF, i) Â // Get certificate Certif is Certificate = CertificateExtract(bufSignature) END
Syntax
<Result> = PDFNbSignatures(<PDFÂ document>)
<Result>: Integer Number of signatures in the PDF document to be analyzed. <PDF document>: Control name or pdfDocument variable PDF document to be analyzed. This document can correspond to: Component: wd300wdpdf.dll
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|