* Set the document keywords. * * @param keywords - Array of keywords associated with the document * * @example * ```typescript * pdf.setKeywords(["finance", "quarterly", "2024", "Q4"]); * ```
(keywords: string[])
| 1205 | * ``` |
| 1206 | */ |
| 1207 | setKeywords(keywords: string[]): void { |
| 1208 | this.getInfoDict().set("Keywords", PdfString.fromString(keywords.join(" "))); |
| 1209 | } |
| 1210 | |
| 1211 | /** |
| 1212 | * Get the creator application. |
no test coverage detected