-
-
Notifications
You must be signed in to change notification settings - Fork 36
getCellHyperLink
Julian Halliwell edited this page Sep 20, 2021
·
2 revisions
Returns the target/URL of a hyperlinked cell, or an empty string if the cell does not contain a hyperlink.
getCellHyperLink( workbook, row, column )
-
workbook
spreadsheet object -
row
numeric -
column
numeric
Chainable? Yes but ends the chain.
spreadsheet = New spreadsheet();
workbook = spreadsheet.new();
spreadsheet.setCellHyperLink( workbook, "https://github.com/", 1, 1 );
theUrl = spreadsheet.getCellHyperLink( workbook, 1, 1 );