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}; Copy
const linkAtPoint = { doc: doc, page: page, x: 100, y: 100};
The document from which to retrieve the link.
The page object within the document where the point is located.
The x-coordinate of the point.
The y-coordinate of the point.
Represents the parameters required to retrieve a link at a specific point within a document.
Example