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