[]
Deletes the hyperlink.
Use this method to remove a hyperlink that was added to a cell range or shape.
void Delete()
Sub Delete()
IRange cell = worksheet.Range["A1"];
IHyperlink hyperlink = cell.Hyperlinks.Add(cell, "https://www.example.com");
hyperlink.Delete();