pdfrx_web
    Preparing search index...

    Interface PdfPageRawText

    Raw text of a page: full text plus one rect per UTF-16 code unit. See PdfPage.loadText.

    interface PdfPageRawText {
        charRects: readonly PdfRect[];
        fullText: string;
    }
    Index
    charRects: readonly PdfRect[]

    charRects.length === fullText.length; indices correspond 1:1.

    fullText: string