Package com.pspdfkit.ui
Interface PdfOutlineView.OnAnnotationTapListener
-
- All Implemented Interfaces:
public interface PdfOutlineView.OnAnnotationTapListener
Annotation list tap listener. Interface of listeners for receiving taps on annotations inside the outline's annotation list.
-
-
Method Summary
Modifier and Type Method Description abstract void
onAnnotationTap(@NonNull() PdfOutlineView self, @NonNull() Annotation annotation)
Called when an annotation was tapped inside the annotation list. -
-
Method Detail
-
onAnnotationTap
abstract void onAnnotationTap(@NonNull() PdfOutlineView self, @NonNull() Annotation annotation)
Called when an annotation was tapped inside the annotation list.
- Parameters:
self
- The PdfOutlineView instance that triggered the event.annotation
- The Annotation that was tapped.
-
-
-
-