support type 0x0204

This commit is contained in:
Liu Ming
2016-05-28 10:39:46 +08:00
parent 990d2cc41f
commit 06ae67f1d1
5 changed files with 75 additions and 31 deletions

View File

@@ -87,6 +87,13 @@ func (w *WorkSheet) parseBof(buf io.ReadSeeker, b *bof, pre *bof) *bof {
case 0xFD: //LABELSST
col = new(LabelsstCol)
binary.Read(buf, binary.LittleEndian, col)
case 0x204:
c := new(labelCol)
binary.Read(buf, binary.LittleEndian, &c.BlankCol)
var count uint16
binary.Read(buf, binary.LittleEndian, &count)
c.Str = w.wb.get_string(buf, count)
col = c
case 0x201: //BLANK
col = new(BlankCol)
binary.Read(buf, binary.LittleEndian, col)