[]
Represents a custom PDF object as a content item in a PDF structure tree (the OBJR PDF object).
new ObjrContentItemLink(obj?): ObjrContentItemLink;
Creates a new ObjrContentItemLink.
The referenced object (a PdfPage, AnnotationBase, or FormXObject).
ObjrContentItemLink
RContentItemLink.constructor
new ObjrContentItemLink(om, obj?): ObjrContentItemLink;
Creates a new ObjrContentItemLink.
An object manager that controls the lifetime of the ObjrContentItemLink object.
The referenced object (a PdfPage, AnnotationBase, or FormXObject).
ObjrContentItemLink
RContentItemLink.constructor
get id(): number;
Gets the reference to the object.
number
get obj(): ContentItem;
Gets the referenced object (a PdfPage, AnnotationBase, or FormXObject), or null if there is none or the target type is not yet supported.
set obj(value): void;
Sets the referenced object (a PdfPage, AnnotationBase, or FormXObject).
void
get om(): ObjectManager;
Gets the owner ObjectManager instance.
get page(): PdfPage;
Gets the PdfPage object where this content item is located.
set page(value): void;
Sets the PdfPage object where this content item is located.
void
free(): void;
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(omTo): void;
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void