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

ReadOnlyBookmarkCollection Interface

A collection of Bookmark objects in the document.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

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

Remarks

Provides a method ReadOnlyBookmarkCollection.Get that obtains all bookmarks located in the specified document range. You can access individual items of this collection, but you cannot add or delete items. Use index notation to obtain an individual Bookmark object from this collection.

To access the ReadOnlyBookmarkCollection object, use the RichEditControl.Document.Bookmarks.Get(DocumentRange range) method notation.

See Also