Skip to main content
A newer version of this page is available.
All docs
V18.2
Row

HyperlinkCollection.GetHyperlinks(Range) Method

Gets hyperlink(s) contained in the specified cell range.

Namespace: DevExpress.Spreadsheet

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

Declaration

IList<Hyperlink> GetHyperlinks(
    Range range
)

Parameters

Name Type Description
range Range

A Range object specifying a cell range that contains hyperlinks to be returned.

Returns

Type Description
IList<Hyperlink>

A collection of hyperlinks within the specified range of cells.

Remarks

The GetHyperlinks method returns all hyperlinks contained in cell ranges that intersect the specified cell range. To check whether a hyperlink is contained in the worksheet, use the HyperlinkCollection.Contains method.

See Also