* Set the document subject. * * @param subject - The subject or description of the document * * @example * ```typescript * pdf.setSubject("Financial summary for Q4"); * ```
(subject: string)
| 1160 | * ``` |
| 1161 | */ |
| 1162 | setSubject(subject: string): void { |
| 1163 | this.getInfoDict().set("Subject", PdfString.fromString(subject)); |
| 1164 | } |
| 1165 | |
| 1166 | /** |
| 1167 | * Get the document keywords. |
no test coverage detected