21
0
Fork 0
xls/row.go

58 lines
1.2 KiB
Go
Raw Permalink Normal View History

2015-03-19 10:39:41 +01:00
package xls
2016-09-30 05:46:51 +02:00
type rowInfo struct {
2015-03-19 10:39:41 +01:00
Index uint16
Fcell uint16
Lcell uint16
Height uint16
Notused uint16
Notused2 uint16
Flags uint32
}
2017-02-21 09:27:01 +01:00
//Row the data of one row
2015-03-19 10:39:41 +01:00
type Row struct {
2017-02-21 09:27:01 +01:00
wb *WorkBook
2016-09-30 05:46:51 +02:00
info *rowInfo
2017-02-21 09:27:01 +01:00
cols map[uint16]contentHandler
}
//Col Get the Nth Col from the Row, if has not, return nil.
//Suggest use Has function to test it.
func (r *Row) Col(i int) string {
serial := uint16(i)
if ch, ok := r.cols[serial]; ok {
strs := ch.String(r.wb)
return strs[0]
} else {
for _, v := range r.cols {
if v.FirstCol() <= serial && v.LastCol() >= serial {
strs := v.String(r.wb)
return strs[serial-v.FirstCol()]
}
}
}
return ""
}
//ColExact Get the Nth Col from the Row, if has not, return nil.
//For merged cells value is returned for first cell only
func (r *Row) ColExact(i int) string {
serial := uint16(i)
if ch, ok := r.cols[serial]; ok {
strs := ch.String(r.wb)
return strs[0]
}
return ""
}
2017-02-21 09:27:01 +01:00
//LastCol Get the number of Last Col of the Row.
func (r *Row) LastCol() int {
return int(r.info.Lcell)
}
//FirstCol Get the number of First Col of the Row.
func (r *Row) FirstCol() int {
return int(r.info.Fcell)
2015-03-19 10:39:41 +01:00
}