20 lines
269 B
Go
20 lines
269 B
Go
|
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
|
||
|
}
|