Interface: PagePressEvent

PSPDFKit.PagePressEvent

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

Register a PagePressEvent and get the point in PDF page coordinates.

instance.addEventListener("page.press", (event) => {
  console.log(event.point);
});

Members




Members

nativeEvent: Event

The browser event which caused the press event to dispatch. Either a MouseEvent, TouchEvent, or a PointerEvent.

Type:
  • Event

pageIndex: number

The index of the page that was pressed.

Type:
  • number

The point where the press event was detected in PDF page space coordinates.

Type: