pdfrx_web
    Preparing search index...

    Interface PdfRawCreatedObject

    Handle for an indirect dictionary reserved by PdfRawObjectEditor.createDictionary.

    Pass the handle itself to editor methods to mutate the new dictionary. Pass reference as a patch value to store an indirect reference to it in a catalog, dictionary, or array. The final numeric PDF object number is assigned inside the worker and intentionally hidden from the callback.

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

    Hierarchy (View Summary)

    Index
    localId: string

    Batch-local identity used internally; it is not a PDF object number.

    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.

    reference: PdfRawPatchValue

    Patch value that stores an indirect reference to this newly-created dictionary.

    root?: true

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