ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / PDF functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Gets the date of one of the signatures of a PDF document.
New in version 2025
Android This function is now available for Android applications.
Android Widget This function is now available in Android widget mode.
Example
MonPDF is pdfDocument = PDFOpen("test.pdf")

// Nombre de signatures dans le fichier PDF
nNbSignature is int = MonPDF.NbSignatures()

// Récupération des informations sur les signatures
FOR i = 1 _TO_ nNbSignature
	// Récupération de la signature
	bufSignature is Buffer = MonPDF.GetSignature(i)

	// Récupération de la date de la signature
	dhDateSignature is DateTime = MonPDF.GetSignatureDate(i)

	// Récupération du certificat
	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
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/19/2024

Send a report | Local help