|
|
|
|
|
PDFGetSignature (Function) In french: PDFRécupèreSignature Gets the signature of a PDF document as a buffer. The corresponding certificate can be extracted using CertificateExtract. 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> = PDFGetSignature(<PDFÂ document> , <Index>)
<Result>: Buffer Document signature. <PDF document>: Control name or pdfDocument variable PDF document to be analyzed. This document can correspond to: <Index>: Integer Index of the signature in the document (the number of signatures is returned by PDFNbSignatures). Component: wd300wdpdf.dll
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|