样式

    Border 映射单元格边框样式设置。

    1. Type string `json:"type"`
    2. Color string `json:"color"`
    3. Style int `json:"style"`
    4. }

    Fill 映射单元格样式填充设置。

    1. type Fill struct {
    2. Type string `json:"type"`
    3. Color []string `json:"color"`
    4. Shading int `json:"shading"`
    5. }

    Style 映射单元格样式设置。

    1. type Style struct {
    2. Border []Border `json:"border"`
    3. Fill Fill `json:"fill"`
    4. Protection *Protection `json:"protection"`
    5. NumFmt int `json:"number_format"`
    6. DecimalPlaces int `json:"decimal_places"`
    7. CustomNumFmt *string `json:"custom_number_format"`
    8. Lang string `json:"lang"`
    9. }