Represents the parameters required to retrieve a link at a specific point within a document.

const linkAtPoint = {
doc: doc,
page: page,
x: 100,
y: 100
};
interface LinkAtPointType {
    doc: DocType;
    page: PageType;
    x: number;
    y: number;
}

Properties

Properties

doc: DocType

The document from which to retrieve the link.

page: PageType

The page object within the document where the point is located.

x: number

The x-coordinate of the point.

y: number

The y-coordinate of the point.