21
0
xls/row.go

17 lines
224 B
Go
Raw Normal View History

2015-03-19 10:39:41 +01:00
package xls
type RowInfo struct {
Index uint16
Fcell uint16
Lcell uint16
Height uint16
Notused uint16
Notused2 uint16
Flags uint32
}
type Row struct {
info *RowInfo
2015-03-24 06:06:52 +01:00
Cols map[uint16]ContentHandler
2015-03-19 10:39:41 +01:00
}