|
|
|
|
|
<PDF reader>.GetSignature (Function) In french: <Lecteur PDF>.RécupèreSignature Gets the signature of a PDF document as a buffer. The corresponding certificate can be extracted using CertificateExtract. PDF_PDFReader = PDFOpen("test.pdf")
nNbSignatures is int = PDF_PDFReader.NbSignatures()
FOR i = 1 _TO_ nNbSignatures
bufSignature is Buffer = PDF_PDFReader.GetSignature(i)
dtSignatureDate is DateTime = PDF_PDFReader.GetSignatureDate(i)
Certif is Certificate = CertificateExtract(bufSignature)
END
Syntax
<Result> = <PDF Reader control>.GetSignature(<Index>)
<Result>: Buffer Document signature. <PDF Reader control>: Control name PDF Reader control that contains the document to be analyzed. <Index>: Integer Index of the signature in the document (the number of signatures is returned by <PDF reader>.NbSignatures). Component: wd300wdpdf.dll
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|