Skip to main content

onBlurAnnotation

The function called when an annotation loses focus.

Parameters

NameData typeDescription
annotationTextAnnotationThe annotation that lost focus.
window.Asc.plugin.attachEditorEvent("onBlurAnnotation", (data) => {
console.log("event: onBlurAnnotation");
console.log("paragraphId: " + data.paragraphId);
console.log("rangeId: " + data.rangeId);
});