@@ -2,7 +2,6 @@ package xls
2
2
3
3
import (
4
4
"encoding/binary"
5
- "fmt"
6
5
"io"
7
6
"unicode/utf16"
8
7
)
@@ -28,14 +27,15 @@ type ExtSheetInfo struct {
28
27
29
28
//WorkSheet in one WorkBook
30
29
type WorkSheet struct {
31
- bs * boundsheet
32
- wb * WorkBook
33
- Name string
34
- rows map [uint16 ]* Row
35
- //NOTICE: this is the max row number of the sheet, so it should be count -1
36
- MaxRow uint16
37
- id int
38
- parsed bool
30
+ bs * boundsheet
31
+ wb * WorkBook
32
+ Name string
33
+ Selected bool
34
+ rows map [uint16 ]* Row
35
+ MaxRow uint16
36
+ id int
37
+ parsed bool
38
+ rightToLeft bool
39
39
}
40
40
41
41
// Row return row data by number
@@ -49,7 +49,6 @@ func (w *WorkSheet) Row(i int) *Row {
49
49
50
50
// GetSheetVisible provides a function to get worksheet visible
51
51
func (w * WorkSheet ) GetSheetVisible () bool {
52
- fmt .Println ("ws visible:" , w .bs .Visible )
53
52
if 0 == w .bs .Visible {
54
53
return true
55
54
}
@@ -79,6 +78,14 @@ func (w *WorkSheet) parseBof(buf io.ReadSeeker, b *bof, pre *bof) *bof {
79
78
switch b .Id {
80
79
// case 0x0E5: //MERGEDCELLS
81
80
// ws.mergedCells(buf)
81
+ case XLS_Type_WINDOW2 : // WINDOW2
82
+ var sheetOptions , firstVisibleRow , firstVisibleColumn uint16
83
+ binary .Read (buf , binary .LittleEndian , & sheetOptions )
84
+ binary .Read (buf , binary .LittleEndian , & firstVisibleRow ) // not valuable
85
+ binary .Read (buf , binary .LittleEndian , & firstVisibleColumn ) // not valuable
86
+ //buf.Seek(int64(b.Size)-2*3, 1)
87
+ w .rightToLeft = (sheetOptions & 0x40 ) != 0
88
+ w .Selected = (sheetOptions & 0x400 ) != 0
82
89
case 0x208 : //ROW
83
90
r := new (rowInfo )
84
91
binary .Read (buf , binary .LittleEndian , r )
0 commit comments