pdfrx_web
    Preparing search index...

    Interface PdfLink

    interface PdfLink {
        annotation: PdfAnnotation | null;
        id: string | null;
        kind: "annotation" | "detected";
        rects: readonly PdfRect[];
        target: PdfLinkTarget;
    }
    Index
    annotation: PdfAnnotation | null

    Annotation metadata for the link, if any.

    id: string | null

    Annotation /NM identity; null for detected links.

    kind: "annotation" | "detected"

    PDF annotation or transient URL-like text detected from page contents.

    rects: readonly PdfRect[]

    Areas of the link in PDF page coordinates.

    URI or in-document destination followed by this link.