pdfrx_web
    Preparing search index...

    Interface PdfRect

    An axis-aligned rectangle in PDF page coordinates (points, y-up), where top >= bottom and right >= left.

    PDF rectangle arrays are specified by ISO 32000-2:2020, 7.9.5.

    See PdfRect (the companion namespace-like value) for helpers that operate on these rects.

    interface PdfRect {
        bottom: number;
        left: number;
        right: number;
        top: number;
    }
    Index
    bottom: number
    left: number
    right: number
    top: number