PDF Web Viewer
    Preparing search index...

    Interface IOpenDocumentOptions

    Options for opening an existing PDF document

    interface IOpenDocumentOptions {
        file: File;
        password?: string;
        progressCallback?: (progress: number) => void;
        readOnly?: boolean;
    }

    Hierarchy

    • IFileDataFile
      • IOpenDocumentOptions
    Index

    Properties

    file: File
    password?: string
    progressCallback?: (progress: number) => void
    readOnly?: boolean

    If true, the document will be opened in read-only mode (no editing allowed).