* Set the annotation contents.
(contents: string)
| 144 | * Set the annotation contents. |
| 145 | */ |
| 146 | setContents(contents: string): void { |
| 147 | this.dict.set("Contents", PdfString.fromString(contents)); |
| 148 | this.markModified(); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Annotation name (unique identifier within page). |
no test coverage detected