NativeExcel for .Net Developer's Reference

IHyperlink.Delete Method 

Deletes the specified hyperlink.

[Visual Basic]
Sub Delete()
[C#]
void Delete();
[C++]
void Delete();
[JScript]
function Delete();

Example

This example deletes the first hyperlink from worksheet one.

[C#]
book.Sheet[1].Heperlinks[1].Delete();
[Visual Basic]
book.Sheet(1).Heperlinks(1).Delete()
[C++]
book->Worksheets->Item[1]->Hyperlinks->Item[1]->Delete();

See Also

IHyperlink Interface | NativeExcel Namespace | IWorksheet.Hyperlinks Property | IRange.Hyperlinks Property | IHyperlinks Interface