This commit is contained in:
Liu Ming
2015-03-19 17:39:41 +08:00
commit fbfa8b5d0d
12 changed files with 656 additions and 0 deletions

16
row.go Normal file
View File

@@ -0,0 +1,16 @@
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]Coler
}