|
|
|
|
|
<pdfDocument variable>.GetSignature (Function) In french: <Variable pdfDocument>.RécupèreSignature Gets the signature of a PDF document as a buffer. The corresponding certificate can be extracted using CertificateExtract. New in version 2025MyPDF is pdfDocument = PDFOpen("test.pdf")
nNbSignatures is int = MyPDF.NbSignatures()
FOR i = 1 _TO_ nNbSignatures
bufSignature is Buffer = MyPDF.GetSignature(i)
dtSignatureDate is DateTime = MyPDF.GetSignatureDate(i)
Certif is Certificate = CertificateExtract(bufSignature)
END
Syntax
<Result> = <PDF document>.GetSignature(<Index>)
<Result>: Buffer Document signature. <PDF document>: pdfDocument variable <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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|