PDF information dictionary fields written by the native renderer.
Signature
export interface PdfMetadata {
title?: string;
author?: string;
subject?: string;
keywords?: string | readonly string[];
creator?: string;
}Properties
| Property | Type | Required | Read only | Default | Description |
|---|---|---|---|---|---|
title | string | No | No | None | Document title. |
author | string | No | No | None | Document author. |
subject | string | No | No | None | Document subject. |
keywords | string | readonly string[] | No | No | None | Search keywords, joined when supplied as an array. |
creator | string | No | No | None | Application or service that created the document. |