pdfrx_web
    Preparing search index...

    Interface PdfRawTarget

    Identifies an existing object or nested container for a raw edit.

    Start with exactly one of:

    • root: true — the document catalog;
    • objectNumber — an existing indirect object; or
    • localId — an indirect dictionary created in the same worker batch.

    path, when present, is followed from that starting object. String components select dictionary keys (without /) and number components select zero-based array items. Indirect references encountered along the path are dereferenced automatically. Application code should normally obtain targets from PdfRawObjectEditor.catalog(), object(), at(), or createDictionary() rather than constructing this wire shape directly.

    interface PdfRawTarget {
        localId?: string;
        objectNumber?: number;
        path?: (string | number)[];
        root?: true;
    }

    Hierarchy (View Summary)

    Index
    localId?: string

    Selects an indirect dictionary created earlier in the same operation batch.

    objectNumber?: number

    Selects an existing indirect object by its positive PDF object number.

    path?: (string | number)[]

    Dictionary keys and zero-based array indices to traverse from the selected starting object.

    root?: true

    Selects the document catalog. Mutually exclusive with objectNumber and localId.