样式

Alignment 映射单元格对齐样式设置。

  1. type Alignment struct {
  2. Horizontal string
  3. Indent int
  4. JustifyLastLine bool
  5. ReadingOrder uint64
  6. RelativeIndent int
  7. ShrinkToFit bool
  8. TextRotation int
  9. Vertical string
  10. WrapText bool
  11. }

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

  1. type Border struct {
  2. Type string
  3. Color string
  4. Style int
  5. }

Font 映射字体样式设置。

  1. type Font struct {
  2. Bold bool
  3. Italic bool
  4. Underline string
  5. Family string
  6. Size float64
  7. Strike bool
  8. Color string
  9. ColorIndexed int
  10. ColorTheme *int
  11. ColorTint float64
  12. VertAlign string
  13. }

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

  1. type Fill struct {
  2. Type string
  3. Pattern int
  4. Color []string
  5. Shading int
  6. }

Protection 映射保护单元格属性设置。

  1. type Protection struct {
  2. Hidden bool
  3. Locked bool
  4. }

Style 映射单元格样式设置。

  1. type Style struct {
  2. Border []Border
  3. Fill Fill
  4. Font *Font
  5. Alignment *Alignment
  6. Protection *Protection
  7. NumFmt int
  8. DecimalPlaces int
  9. CustomNumFmt *string
  10. NegRed bool
  11. }