ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / PDF functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Gets the number of signatures in a PDF document.
Example
PDF_PDFReader = PDFOpen("test.pdf")
 
// Number of signatures in the PDF file
nNbSignatures is int = PDF_PDFReader.NbSignatures()
 
// Get signature details
POUR i = 1 _TO_ nNbSignatures
// Get signature
bufSignature is Buffer = PDF_PDFReader.GetSignature(i)
 
// Get signature date
dtSignatureDate is DateTime = PDF_PDFReader.GetSignatureDate(i)
 
// Get certificate
Certif is Certificate = CertificateExtract(bufSignature)
END
Syntax
<Result> = <PDF Reader control>.NbSignatures()
<Result>: Integer
Number of signatures in the PDF document to be analyzed.
<PDF Reader control>: Control name
PDF Reader control that contains the document to be analyzed.
Component: wd290wdpdf.dll
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help