Package com.pspdfkit.ui.editor
Interface AnnotationEditor.OnDismissedListener
-
- All Implemented Interfaces:
public interface AnnotationEditor.OnDismissedListener
Listener to be called once the annotation editor has been dismissed. Also used to notify if the user asked to remove the edited annotation from the document.
-
-
Method Summary
Modifier and Type Method Description abstract void
onAnnotationEditorDismissed(@NonNull() AnnotationEditor annotationEditor, boolean removeAnnotation)
Called when the annotation editor has been dismissed. -
-
Method Detail
-
onAnnotationEditorDismissed
abstract void onAnnotationEditorDismissed(@NonNull() AnnotationEditor annotationEditor, boolean removeAnnotation)
Called when the annotation editor has been dismissed. Also used as a callback if the user likes to remove the annotation from the document.
- Parameters:
annotationEditor
- The annotation editor that has been dismissed.removeAnnotation
- Iftrue
, the editor was dismissed because the user requested to remove the annotation from the document.
-
-
-
-