ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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.
Example
MonPDF is pdfDocument = PDFOpen("test.pdf")

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

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

	// Récupération de la date de la signature
	dhDateSignature is DateTime = PDFGetSignatureDate(MonPDF, 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>: Control name or pdfDocument variable
PDF document to be analyzed. This document can be:
<Index>: Integer
Index of the signature in the document (the number of signatures is returned by PDFNbSignatures).
Component: wd300wdpdf.dll
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help