pdfrx_web
    Preparing search index...

    Interface PdfSaveButtonProps

    Props for PdfSaveButton.

    interface PdfSaveButtonProps {
        children?: ReactNode;
        className?: string;
        encode?: (document: PdfDocument) => Promise<Uint8Array<ArrayBufferLike>>;
        fileName?: string;
        style?: CSSProperties;
    }
    Index
    children?: ReactNode

    Custom label/children; defaults to a save icon.

    className?: string
    encode?: (document: PdfDocument) => Promise<Uint8Array<ArrayBufferLike>>

    Overrides serialization when the application needs custom export processing.

    fileName?: string

    Overrides the download file name (without needing the source name).

    style?: CSSProperties