Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

BookmarkCollection Interface

An interface that defines a collection of Bookmark objects.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

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

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