diff options
| author | xuri <xuri.me@gmail.com> | 2022-03-15 00:05:02 +0800 |
|---|---|---|
| committer | xuri <xuri.me@gmail.com> | 2022-03-15 00:05:02 +0800 |
| commit | 4220bf4327a35a07ac6b47b652a120ed978a3a2a (patch) | |
| tree | 5b9278b0b122e17d8cd95676f0dba457af86802e /cell.go | |
| parent | e1d660dda7c02475a8529a252e6c1fd171065429 (diff) | |
ref #65, new formula functions: LOGNORM.INV and LOGINV
* Update docs for the function `SetCellHyperLink`
Diffstat (limited to 'cell.go')
| -rw-r--r-- | cell.go | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -673,8 +673,11 @@ type HyperlinkOpts struct { // SetCellHyperLink provides a function to set cell hyperlink by given // worksheet name and link URL address. LinkType defines two types of // hyperlink "External" for web site or "Location" for moving to one of cell -// in this workbook. Maximum limit hyperlinks in a worksheet is 65530. The -// below is example for external link. +// in this workbook. Maximum limit hyperlinks in a worksheet is 65530. This +// function is only used to set the hyperlink of the cell and doesn't affect +// the value of the cell. If you need to set the value of the cell, please use +// the other functions such as `SetCellStyle` or `SetSheetRow`. The below is +// example for external link. // // if err := f.SetCellHyperLink("Sheet1", "A3", // "https://github.com/xuri/excelize", "External"); err != nil { |
