This event will be emitted whenever a click on a page occurs that is not handled by any occluding page element (annotation, form, etc.).
Example
instance.addEventListener("page.press", (event) => {
console.log(event.point);
});
Members
Members
The browser event which caused the press event to dispatch. Either a MouseEvent, TouchEvent, or a PointerEvent.
Type:
- Event
The index of the page that was pressed.
Type:
- number
The point where the press event was detected in PDF page space coordinates.