[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IHyperlinks.Delete

Delete Method

Deletes the hyperlinks in this collection.

When this collection belongs to a worksheet, this method deletes all hyperlinks in the worksheet. When it belongs to a range, this method deletes the hyperlinks in that range.

Declaration
void Delete()
Sub Delete()
IRange range = worksheet.Range["A1:A2"];
range.Hyperlinks.Add(worksheet.Range["A1"], "https://www.example.com", null, "Open example", "Example");
range.Hyperlinks.Delete();