BookmarkCollection Interface
In This Article
An interface that defines a collection of Bookmark objects.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v14.2.Core.dll
#Declaration
[ComVisible(true)]
public interface BookmarkCollection :
ReadOnlyBookmarkCollection,
ISimpleCollection<Bookmark>,
IEnumerable<Bookmark>,
ICollection,
IEnumerable
#Returned By
The SubDocument.Bookmarks property returns an instance of BookmarkCollection.
#Remarks
A collection of bookmarks in the document is accessible via the SubDocument.Bookmarks property. To add a new bookmark to this collection, use the SubDocument.CreateBookmark method.
NOTE
The bookmark name and associated document range do not have to be unique in the collection of bookmarks.
See Also