add one example

This commit is contained in:
Liu Ming
2015-09-30 11:17:25 +08:00
parent e7a933588c
commit 56699cbc55
7 changed files with 97 additions and 19 deletions

View File

@@ -17,10 +17,11 @@ type boundsheet struct {
//WorkSheet in one WorkBook
type WorkSheet struct {
bs *boundsheet
wb *WorkBook
Name string
Rows map[uint16]*Row
bs *boundsheet
wb *WorkBook
Name string
Rows map[uint16]*Row
//NOTICE: this is the max row number of the sheet, so it should be count -1
MaxRow uint16
}