Skip to main content
A newer version of this page is available. .

BookmarkCollection Interface

An interface that defines a collection of Bookmark objects.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v18.2.Core.dll

Declaration

[ComVisible(true)]
public interface BookmarkCollection :
    ReadOnlyBookmarkCollection,
    ISimpleCollection<Bookmark>,
    IEnumerable<Bookmark>,
    IEnumerable,
    ICollection

The following members return BookmarkCollection objects:

Remarks

A collection of bookmarks in the document is accessible via the SubDocument.Bookmarks property. To add a new bookmark to the collection, use the BookmarkCollection.Create method.

Note

The bookmark name and associated document range does not have to be unique in the collection of bookmarks.

See Also