UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

12 lines (11 loc) 496 B
import { DestinationType } from '../utils/destination-type'; import { BookmarkDestinationBase } from './bookmark-destination-base'; export class BookmarkEndDestination extends BookmarkDestinationBase { get destinationType() { return DestinationType.BookmarkEndDestination; } createEmptyClone() { return new BookmarkEndDestination(this.importer); } assignBookmarkPosition(bookmark) { bookmark.end = this.importer.importers.character.logPosition; } }