@qrcommunication/gigapdf-lib — SDK API reference - v0.110.3
    Preparing search index...

    Interface GigaOutlineNode

    A document outline (bookmark) entry — a label, a zero-based destination page, and nested children (mirror of model::OutlineNode). Populated by GigaPdfEngine.officeToModel/reconstruction from the source's own bookmarks (PDF /Outlines) or, lacking those, from detected headings.

    interface GigaOutlineNode {
        title: string;
        page: number;
        children: GigaOutlineNode[];
    }
    Index

    Properties

    Properties

    title: string

    The bookmark label.

    page: number

    Zero-based destination page in the document's flattened page sequence.

    children: GigaOutlineNode[]

    Nested sub-bookmarks.