# SpreadsheetGetCellHyperlink

Gets the hyperlink from a cell in a spreadsheet.

## Method Signature

```
SpreadsheetGetCellHyperlink(spreadsheetObj=[any], row=[any], column=[any])
```

### Arguments

| Argument         | Type      | Required | Description                  | Default |
| ---------------- | --------- | -------- | ---------------------------- | ------- |
| `spreadsheetObj` | `ANY`     | `true`   | The spreadsheet object.      |         |
| `row`            | `NUMERIC` | `true`   | The row number (1-based).    |         |
| `column`         | `NUMERIC` | `true`   | The column number (1-based). |         |

## Examples

Get a cell hyperlink:

```js
// Retrieve hyperlink
var spreadsheet = SpreadsheetNew();
SpreadsheetSetCellHyperlink( spreadsheet, 1, 1, "https://example.com" );

var link = SpreadsheetGetCellHyperlink( spreadsheet, 1, 1 );
println( link );
```

## Related

* [SpreadsheetSetCellHyperlink()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetsetcellhyperlink) - Set hyperlink
* [SpreadsheetSetCellValue()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetsetcellvalue) - Set cell value
