|
|
|
|
|
<pdfDocument variable>.GetSignatureDate (Function) In french: <Variable pdfDocument>.RécupèreDateSignature Gets the date of one of the signatures of a PDF document. New in version 2025MonPDF is pdfDocument = PDFOpen("test.pdf")
nNbSignature is int = MonPDF.NbSignatures()
FOR i = 1 _TO_ nNbSignature
bufSignature is Buffer = MonPDF.GetSignature(i)
dhDateSignature is DateTime = MonPDF.GetSignatureDate(i)
Certif is Certificate = CertificateExtract(bufSignature)
END
Syntax
<Result> = PDFGetSignatureDate(<PDF document> , <Index>)
<Result>: DateTime Date of the signature. <PDF document>: pdfDocument variable pdfDocument variable corresponding to the PDF document to be analyzed. <Index>: Integer Index of the signature in the document (the number of signatures is returned by <pdfDocument variable>.NbSignatures). Component: wd300wdpdf.dll
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|