Skip to main content

HyperlinkCollection Interface

An interface that defines a collection of Hyperlink objects.

Namespace: DevExpress.XtraRichEdit.API.Native

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

#Declaration

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

#Returned By

The SubDocument.Hyperlinks property returns an instance of HyperlinkCollection.

#Remarks

The collection of hyperlinks in the document is accessible via the SubDocument.Hyperlinks property. To add a new hyperlink to this collection use the SubDocument.CreateHyperlink method.

See Also