|
|
|
|
|
PDFGetSignatureDate (Function) In french: PDFRécupèreDateSignature Gets the date of one of the signatures of a PDF document. MonPDF is pdfDocument = PDFOpen("test.pdf")
nNbSignature is int = PDFNbSignatures(MonPDF)
FOR i = 1 _TO_ nNbSignature
bufSignature is Buffer = PDFGetSignature(MonPDF, i)
dhDateSignature is DateTime = PDFGetSignatureDate(MonPDF, i)
Certif is Certificate = CertificateExtract(bufSignature)
END
Syntax
<Result> = PDFGetSignatureDate(<PDF document> , <Index>)
<Result>: DateTime Date of the signature. <PDF document>: Control name or pdfDocument variable PDF document to be analyzed. This document can be: <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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|