Nutrient Web SDK

ReferenceEventsBookmarksUpdateEvent

Type Alias BookmarksUpdateEvent

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

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

Example

Get the list of updated bookmarks.

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

See Also