diff options
author | James Allen <24575899+jrdallen97@users.noreply.github.com> | 2021-03-03 12:30:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 20:30:31 +0800 |
commit | a12dfd3ce6402f22baeb6415af271d8545c74f71 (patch) | |
tree | 51e13b1013a75a7c63adf786c945bb2adbac44bc /xmlWorksheet.go | |
parent | 7ef1892f320879670c4e9a8536a70281d782625e (diff) |
Add support for setting hyperlink display & tooltip (closes #790) (#794)
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 72a470f..b31eec1 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -604,6 +604,7 @@ type xlsxHyperlink struct { Ref string `xml:"ref,attr"` Location string `xml:"location,attr,omitempty"` Display string `xml:"display,attr,omitempty"` + Tooltip string `xml:"tooltip,attr,omitempty"` RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"` } |