Add Formula & Format support

This commit is contained in:
chen.s.g
2018-04-05 21:28:01 +08:00
parent d1d6f84447
commit 574bf55ec4
11 changed files with 786 additions and 222 deletions

View File

@@ -46,6 +46,10 @@ type HyperLink struct {
IsUrl bool
}
func (h *HyperLink) Debug(wb *WorkBook) {
fmt.Printf("hyper link col dump:%#+v\n", h)
}
//get the hyperlink string, use the public variable Url to get the original Url
func (h *HyperLink) String(wb *WorkBook) []string {
res := make([]string, h.LastColB-h.FristColB+1)