|
|
|
|
|
PDFGetSignatureDate (Función) Obtiene la fecha de una de las firmas de un documento PDF. MyPDF is pdfDocument = PDFOpen("test.pdf") // Number of signatures in the PDF file nNbSignatures is int = PDFNbSignatures(MyPDF) // Get signature details POUR i = 1 _TO_ nNbSignatures // Get signature bufSignature is Buffer = PDFGetSignature(MyPDF, i) // Get signature date dtSignatureDate is DateTime = PDFGetSignatureDate(MyPDF, i) // Get certificate Certif is Certificate = CertificateExtract(bufSignature) END
Sintaxis
<Result> = PDFGetSignatureDate(<PDF document> , <Index>)
<Result>: Fecha/Hora Fecha de la firma. <PDF document>: Nombre de control o variable de tipo pdfDocument Documento PDF a analizar. Este documento puede corresponder a: - una variable de tipo pdfDocument.
- un control Lector PDF.
<Index>: Entero Índice de la firma en el documento (la función PDFNbSignatures devuelve el número de firmas). Componente: wd300wdpdf.dll
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|