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
Retrieves the date of one of the PDF signatures displayed in a PDF Reader control.
Example
PDF_LecteurPDF = PDFOpen("test.pdf")

// Nombre de signatures dans le fichier PDF
nNbSignature is int = PDF_LecteurPDF.NbSignature()

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

	// Récupération de la date de la signature
	dhDateSignature is DateTime = PDF_LecteurPDF.RécupèreDateSignature(i)

	// Récupération du certificat
	Certif is Certificate = CertificateExtract(bufSignature)
END
Syntax
<Result> = <PDF Reader control>.GetSignatureDate(<Index>)
<Result>: DateTime
Date of the 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
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