HotXLS Docs
Contents
Home
Overview
TGridToXLS
IXLSWorkbook
Home
Contents
Overview
Delete method
Deletes all
hyperlinks
from a
IXLSHyperlinks
collection.
Syntax
procedure
Delete;
Example
This example deletes all hyperlinks from Worksheet one.
Workbook.Sheets[
1
].Hyperlinks.Delete;
This example deletes all hyperlinks from range A1:C5.
Workbook.Sheets[
1
].Range[
'A1'
,
'C5'
].Hyperlinks.Delete;