|
|
|
|
|
<pdfDocument variable>.NbSignatures (Function) In french: <Variable pdfDocument>.NbSignature Gets the number of signatures in a PDF document. MyPDF 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>.NbSignatures()
<Result>: Integer Number of signatures in the PDF document to be analyzed. <PDF document>: pdfDocument variable pdfDocument variable corresponding to the PDF document to be analyzed. Component: wd300wdpdf.dll
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|