* Set the document modification date. * * @param date - The date the document was last modified * * @example * ```typescript * pdf.setModificationDate(new Date()); * ```
(date: Date)
| 1357 | * ``` |
| 1358 | */ |
| 1359 | setModificationDate(date: Date): void { |
| 1360 | this.getInfoDict().set("ModDate", PdfString.fromString(formatPdfDate(date))); |
| 1361 | } |
| 1362 | |
| 1363 | /** |
| 1364 | * Get the document trapped status. |
no test coverage detected