This commit is contained in:
Liu Ming
2015-03-19 17:39:41 +08:00
commit fbfa8b5d0d
12 changed files with 656 additions and 0 deletions

19
font.go Normal file
View File

@@ -0,0 +1,19 @@
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
}