pdfrx_web
    Preparing search index...

    Interface PageDropShadow

    Drop shadow drawn behind each page. All lengths are in CSS pixels and are not scaled by zoom, so the shadow keeps a constant on-screen appearance.

    interface PageDropShadow {
        blur?: number;
        color?: string;
        offsetX?: number;
        offsetY?: number;
    }
    Index
    blur?: number

    Gaussian blur radius in CSS pixels. Default: 4.

    color?: string

    Shadow color. Default: 'rgba(0, 0, 0, 0.5)'.

    offsetX?: number

    Horizontal offset in CSS pixels. Default: 2.

    offsetY?: number

    Vertical offset in CSS pixels. Default: 2.