pdfrx_web
    Preparing search index...

    Interface PdfTextSelectionRange

    The selection's two endpoints, ordered so start precedes end in reading order. This is the cheap, always-available selection state — it carries no text and touches no page geometry. Resolve the actual text and rectangles on demand via PdfTextSelection.getSelectedTextRanges / PdfTextSelection.getSelectedText.

    interface PdfTextSelectionRange {
        end: PdfTextSelectionPoint;
        start: PdfTextSelectionPoint;
    }
    Index