26 lines
390 B
Go
26 lines
390 B
Go
|
package xls
|
||
|
|
||
|
type Xf5 struct {
|
||
|
Font uint16
|
||
|
Format uint16
|
||
|
Type uint16
|
||
|
Align uint16
|
||
|
Color uint16
|
||
|
Fill uint16
|
||
|
Border uint16
|
||
|
Linestyle uint16
|
||
|
}
|
||
|
|
||
|
type Xf8 struct {
|
||
|
Font uint16
|
||
|
Format uint16
|
||
|
Type uint16
|
||
|
Align byte
|
||
|
Rotation byte
|
||
|
Ident byte
|
||
|
Usedattr byte
|
||
|
Linestyle uint32
|
||
|
Linecolor uint32
|
||
|
Groundcolor uint16
|
||
|
}
|