Copy link to clipboard
Copied
Hi! If we want to handle simple click , we can do
- Handle mouse clicks in the annotation by using the AVAnnotHandlerDoClickProc callback method.
But if we want to handle double-click , what callback method should I use ?
1 Correct answer
Hi,
In the Adobe API Reference , page 984:
https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/APIReference.pdf
See where it says :
Parameters:
annotHandler The annotation handler responsible for this annotation.
hitAnnot The annotation in which the mouse was clicked.
pageView The AVPageView in which the annotation is located.
annotHandler The annotation handler responsible for this annotation.
hitAnnot The annotation in which the mouse was clicked.
pageView The AVPageView in which the anno
Copy link to clipboard
Copied
Hi,
In the Adobe API Reference , page 984:
https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/APIReference.pdf
See where it says :
Parameters:
annotHandler The annotation handler responsible for this annotation.
hitAnnot The annotation in which the mouse was clicked.
pageView The AVPageView in which the annotation is located.
annotHandler The annotation handler responsible for this annotation.
hitAnnot The annotation in which the mouse was clicked.
pageView The AVPageView in which the annotation is located.
xHit The x-coordinate of the mouse click.
yHit The y-coordinate of the mouse click.
flags Indicates which modifier keys are pressed. Must be an OR of the Modifier Keys values. clickNo 1 if this is a single click, 2 if a double click, 3 if triple click.

