This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Annotations API

texthighlight:remove

Triggered whenever a text highlight is removed.

Examples

annotationsApp.on('texthighlight:remove', function (textHighlightInfo) {
    console.log('Text highlight with id ' + textHighlightInfo.id + ' was removed.');
});

Callback arguments

  • id string
    The unique id of the text highlight.
Was this article helpful?