partly support time cell

This commit is contained in:
Liu Ming
2015-03-25 14:47:26 +08:00
parent 7345247a91
commit dff67234df
7 changed files with 151 additions and 56 deletions

12
xf.go
View File

@@ -11,6 +11,10 @@ type Xf5 struct {
Linestyle uint16
}
func (x *Xf5) formatNo() uint16 {
return x.Format
}
type Xf8 struct {
Font uint16
Format uint16
@@ -23,3 +27,11 @@ type Xf8 struct {
Linecolor uint32
Groundcolor uint16
}
func (x *Xf8) formatNo() uint16 {
return x.Format
}
type st_xf_data interface {
formatNo() uint16
}