* Set the modification date (PDF date format).
(date: string)
| 178 | * Set the modification date (PDF date format). |
| 179 | */ |
| 180 | setModificationDate(date: string): void { |
| 181 | this.dict.set("M", PdfString.fromString(date)); |
| 182 | this.markModified(); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Annotation flags. |
nothing calls this directly
no test coverage detected