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

HyperlinkCollection Interface

An interface that defines a collection of Hyperlink objects.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

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

Remarks

The collection of hyperlinks in the document is accessible using the SubDocument.Hyperlinks property. To add a new hyperlink to the collection, use the HyperlinkCollection.Create method. To remove an existing hyperlink, use the HyperlinkCollection.Remove method.

See Also