21
0
xls/cell_range.go

60 lines
967 B
Go
Raw Normal View History

2015-03-24 06:06:52 +01:00
package xls
import (
"fmt"
)
type Ranger interface {
FirstRow() uint16
LastRow() uint16
}
type CellRange struct {
FirstRowB uint16
LastRowB uint16
FristColB uint16
LastColB uint16
}
func (c *CellRange) FirstRow() uint16 {
return c.FirstRowB
}
func (c *CellRange) LastRow() uint16 {
return c.LastRowB
}
func (c *CellRange) FirstCol() uint16 {
return c.FristColB
}
func (c *CellRange) LastCol() uint16 {
return c.LastColB
}
type HyperLink struct {
CellRange
2015-03-25 04:03:05 +01:00
Description string
TextMark string
TargetFrame string
Url string
ShortedFilePath string
ExtendedFilePath string
IsUrl bool
2015-03-24 06:06:52 +01:00
}
func (h *HyperLink) String(wb *WorkBook) []string {
res := make([]string, h.LastColB-h.FristColB+1)
2015-03-25 04:03:05 +01:00
var str string
if h.IsUrl {
str = fmt.Sprintf("%s(%s)", h.Description, h.Url)
} else {
str = h.ExtendedFilePath
}
2015-03-24 06:06:52 +01:00
for i := uint16(0); i < h.LastColB-h.FristColB+1; i++ {
res[i] = str
}
return res
}