21
0
xls/row.go
2016-09-30 11:46:51 +08:00

17 lines
224 B
Go

package xls
type rowInfo struct {
Index uint16
Fcell uint16
Lcell uint16
Height uint16
Notused uint16
Notused2 uint16
Flags uint32
}
type Row struct {
info *rowInfo
Cols map[uint16]contentHandler
}