Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BookmarkBase Class

A bookmark in the document.

#Declaration

TypeScript
export class BookmarkBase extends Bookmark

#Inherited Members

#Inheritance

Bookmark
BookmarkBase

#Methods

#goTo Method

Selects the bookmark.

#Declaration

TypeScript
goTo(): void

#Remarks

The goTo method selects the bookmark’s text interval, scrolls the page to the selected start position, and activates the bookmark’s sub-document.

var bookmark = richEdit.document.bookmarks.find('bookmarkName')[0];
if (bookmark)
    bookmark.goTo();
See Also