ComPDF React Native - v3.0.0
    Preparing search index...

    Interface CPDFInfo

    Interface representing metadata information of a PDF document. Contains standard PDF document properties according to PDF specification.

    interface CPDFInfo {
        title?: string;
        author?: string;
        subject?: string;
        keywords?: string;
        creator?: string;
        producer?: string;
        creationDate?: Date;
        modificationDate?: Date;
    }
    Index

    Properties

    title?: string

    The document's title.

    author?: string

    The name of the person who created the document.

    subject?: string

    The subject of the document.

    keywords?: string

    Keywords associated with the document. Multiple keywords are typically separated by commas or semicolons.

    creator?: string

    The name of the application that created the original document (if the document was converted from another format).

    producer?: string

    The name of the application that produced the PDF document.

    creationDate?: Date

    The date and time when the document was created.

    modificationDate?: Date

    The date and time when the document was most recently modified.