mirror of https://gitee.com/godoos/godoos.git
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.
19 lines
269 B
19 lines
269 B
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
|
|
}
|
|
|