21
0
Fork 0
xls/font.go

20 lines
269 B
Go
Raw Permalink Normal View History

2015-03-19 10:39:41 +01:00
package xls
type FontInfo struct {
Height uint16
Flag uint16
Color uint16
Bold uint16
Escapement uint16
Underline byte
Family byte
Charset byte
Notused byte
NameB byte
}
type Font struct {
Info *FontInfo
Name string
}