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
|
|
|
|
}
|
|
|
|
|
|
|
|
type Row struct {
|
2016-09-30 05:46:51 +02:00
|
|
|
info *rowInfo
|
2015-09-30 04:40:01 +02:00
|
|
|
Cols map[uint16]contentHandler
|
2015-03-19 10:39:41 +01:00
|
|
|
}
|