You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
548 B

package xls
type Xf5 struct {
Font uint16
Format uint16
Type uint16
Align uint16
Color uint16
Fill uint16
Border uint16
Linestyle uint16
}
func (x *Xf5) formatNo() uint16 {
return x.Format
}
type Xf8 struct {
Font uint16
Format uint16
Type uint16
Align byte
Rotation byte
Ident byte
Usedattr byte
Linestyle uint32
Linecolor uint32
Groundcolor uint16
}
func (x *Xf8) formatNo() uint16 {
return x.Format
}
type st_xf_data interface {
formatNo() uint16
}