Skip to content

Commit 2ac40b3

Browse files
author
chen.s.g
committed
测试工作表可见性
1 parent 44e6d3a commit 2ac40b3

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

workbook.go

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package xls
33
import (
44
"bytes"
55
"encoding/binary"
6-
"fmt"
76
"io"
87
"strings"
98
"unicode/utf16"
@@ -137,7 +136,6 @@ func (wb *WorkBook) parseBof(buf io.ReadSeeker, b *bof, pre *bof, offset_pre int
137136
var bs = new(boundsheet)
138137
binary.Read(item, binary.LittleEndian, bs)
139138
// different for BIFF5 and BIFF8
140-
fmt.Println("bs:", *bs)
141139
wb.addSheet(bs, item)
142140
case XLS_Type_EXTERNSHEET:
143141
if !wb.Is5ver {

worksheet.go

+17-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package xls
22

33
import (
44
"encoding/binary"
5-
"fmt"
65
"io"
76
"unicode/utf16"
87
)
@@ -28,14 +27,15 @@ type ExtSheetInfo struct {
2827

2928
//WorkSheet in one WorkBook
3029
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
3939
}
4040

4141
// Row return row data by number
@@ -49,7 +49,6 @@ func (w *WorkSheet) Row(i int) *Row {
4949

5050
// GetSheetVisible provides a function to get worksheet visible
5151
func (w *WorkSheet) GetSheetVisible() bool {
52-
fmt.Println("ws visible:", w.bs.Visible)
5352
if 0 == w.bs.Visible {
5453
return true
5554
}
@@ -79,6 +78,14 @@ func (w *WorkSheet) parseBof(buf io.ReadSeeker, b *bof, pre *bof) *bof {
7978
switch b.Id {
8079
// case 0x0E5: //MERGEDCELLS
8180
// 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
8289
case 0x208: //ROW
8390
r := new(rowInfo)
8491
binary.Read(buf, binary.LittleEndian, r)

0 commit comments

Comments
 (0)