DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias DocumentInfoProperties

    Contains information about the PDF document. This information includes the document author, title, keywords, etc.

    type DocumentInfoProperties = {
        author?: string;
        createDate?: PdfDateTime;
        creator?: string;
        keywords?: string;
        modifyDate?: PdfDateTime;
        producer?: string;
        subject?: string;
        title?: string;
    }
    Index

    Properties

    author?: string

    The name of the person that created the document.

    createDate?: PdfDateTime

    The creation date and time of the document.

    creator?: string

    The name of the application that created the original document.

    keywords?: string

    Keywords (separated by comma) associated with the document.

    modifyDate?: PdfDateTime

    The date and time the document was most recently modified.

    producer?: string

    The name of the application that created the document.

    subject?: string

    The subject of the document.

    title?: string

    The title of the document.