pdfrx_web
    Preparing search index...

    Interface PdfOpenOptions

    Common options for the document-opening methods of PdfrxEngine.

    interface PdfOpenOptions {
        firstAttemptByEmptyPassword?: boolean;
        passwordProvider?: PdfPasswordProvider;
        sourceName?: string;
        useProgressiveLoading?: boolean;
    }

    Hierarchy (View Summary)

    Index
    firstAttemptByEmptyPassword?: boolean

    Try an empty password before consulting passwordProvider. Default: true.

    passwordProvider?: PdfPasswordProvider

    Supplies passwords for encrypted documents; see PdfPasswordProvider for retry semantics.

    sourceName?: string

    Identifier used in error messages and for caching purposes.

    useProgressiveLoading?: boolean

    Load only the first page eagerly; call PdfDocument.loadPagesProgressively for the rest.