样式
Border 映射单元格边框样式设置。
Type string `json:"type"`
Color string `json:"color"`
Style int `json:"style"`
}
Fill 映射单元格样式填充设置。
type Fill struct {
Type string `json:"type"`
Color []string `json:"color"`
Shading int `json:"shading"`
}
Style 映射单元格样式设置。
type Style struct {
Border []Border `json:"border"`
Fill Fill `json:"fill"`
Protection *Protection `json:"protection"`
NumFmt int `json:"number_format"`
DecimalPlaces int `json:"decimal_places"`
CustomNumFmt *string `json:"custom_number_format"`
Lang string `json:"lang"`
}