* Add an underline annotation.
(options: TextMarkupAnnotationOptions)
| 1981 | * Add an underline annotation. |
| 1982 | */ |
| 1983 | addUnderlineAnnotation(options: TextMarkupAnnotationOptions): PDFUnderlineAnnotation { |
| 1984 | // oxlint-disable-next-line typescript/no-unsafe-type-assertion |
| 1985 | return this.addTextMarkupAnnotation("Underline", options) as PDFUnderlineAnnotation; |
| 1986 | } |
| 1987 | |
| 1988 | /** |
| 1989 | * Add a strikeout annotation. |
no test coverage detected