Nutrient Web SDK

ReferenceEventsBookmarksDeleteEvent

Type Alias BookmarksDeleteEvent

This event is emitted when bookmarks are deleted. The event includes the list of deleted bookmarks.

Type Alias
Type Signature
type BookmarksDeleteEvent = NutrientViewer.Immutable.List<NutrientViewer.Bookmark>

Example

Get the list of deleted bookmarks.

instance.addEventListener("bookmarks.delete", (bookmarks: BookmarksDeleteEvent) => {
console.log(bookmarks.toJS());
});

See Also