[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.ClearHyperlinks

ClearHyperlinks Method

Clears all hyperLinks from the current IRange.

Declaration
void ClearHyperlinks()
Sub ClearHyperlinks()
IRange range = worksheet.Range["A1"];
range.Hyperlinks.Add(range, "https://www.example.com");
range.ClearHyperlinks();
int hyperlinkCount = range.Hyperlinks.Count;