pdfrx_web
    Preparing search index...

    Interface PdfOutlineNode

    A node of the document outline (a.k.a. bookmarks), corresponding to an outline item dictionary in ISO 32000-2:2020, 12.3.3, Table 151.

    interface PdfOutlineNode {
        children: readonly PdfOutlineNode[];
        dest: PdfDest | null;
        title: string;
    }
    Index
    children: readonly PdfOutlineNode[]

    Nested outline items linked through the First/Last hierarchy.

    dest: PdfDest | null

    Destination from the outline item's Dest entry or Go-To action, or null if it has none. See ISO 32000-2:2020, 12.3.3, Table 151 and 12.6.4.2, Table 202.

    title: string

    Human-readable label from the outline item's Title entry.