pdfrx_web
    Preparing search index...

    Interface PdfPageActionsProps

    interface PdfPageActionsProps {
        className?: string;
        disabled?: boolean;
        onDeletePage?: (pageNumber: number) => void;
        onRotatePage?: (pageNumber: number, delta: PdfPageRotationDelta) => void;
        pageNumber: number;
        rotationDeltas?: readonly PdfPageRotationDelta[];
        style?: CSSProperties;
    }
    Index
    className?: string
    disabled?: boolean
    onDeletePage?: (pageNumber: number) => void

    Overrides the built-in page-deletion mutation.

    onRotatePage?: (pageNumber: number, delta: PdfPageRotationDelta) => void

    Overrides the built-in page-rotation mutation.

    pageNumber: number

    1-based page number to edit.

    rotationDeltas?: readonly PdfPageRotationDelta[]

    Rotation choices to render, clockwise. Defaults to [90].

    style?: CSSProperties