Nutrient Web SDK
    Preparing search index...

    Interface AnnotationNoteHoverEvent

    This event will be emitted whenever an annotation note is hovered.

    Register a AnnotationNoteHoverEvent using NutrientViewer.EventName.ANNOTATION_NOTE_HOVER and prevent the default annotation note UI from showing.

    instance.addEventListener("annotationNote.press", (event) => {
    event.preventDefault();
    });
    interface AnnotationNoteHoverEvent {
        annotationNote?: null | AnnotationNote;
        preventDefault: () => boolean;
    }
    Index

    Properties

    annotationNote?: null | AnnotationNote

    Annotation note for which the icon has been hovered.

    preventDefault: () => boolean

    Call this method to opt-out from showing the default annotation note UI.