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

ReadOnlyHyperlinkCollection Interface

A collection of Hyperlink objects in the document.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

[ComVisible(true)]
public interface ReadOnlyHyperlinkCollection :
    ISimpleCollection<Hyperlink>,
    IEnumerable<Hyperlink>,
    IEnumerable,
    ICollection

The following members return ReadOnlyHyperlinkCollection objects:

Remarks

Provides a method ReadOnlyHyperlinkCollection.Get that obtains all hyperlinks 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 Hyperlink object from this collection.

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

See Also