@@ -159,14 +159,16 @@ type xlsxBorders struct {
159159// border formats (left, right, top, bottom, diagonal). Color is optional. When
160160// missing, 'automatic' is implied.
161161type xlsxBorder struct {
162- DiagonalDown bool `xml:"diagonalDown,attr,omitempty"`
163- DiagonalUp bool `xml:"diagonalUp,attr,omitempty"`
164- Outline bool `xml:"outline,attr,omitempty"`
165- Left xlsxLine `xml:"left,omitempty"`
166- Right xlsxLine `xml:"right,omitempty"`
167- Top xlsxLine `xml:"top,omitempty"`
168- Bottom xlsxLine `xml:"bottom,omitempty"`
169- Diagonal xlsxLine `xml:"diagonal,omitempty"`
162+ DiagonalDown bool `xml:"diagonalDown,attr,omitempty"`
163+ DiagonalUp bool `xml:"diagonalUp,attr,omitempty"`
164+ Outline bool `xml:"outline,attr,omitempty"`
165+ Left xlsxLine `xml:"left"`
166+ Right xlsxLine `xml:"right"`
167+ Top xlsxLine `xml:"top"`
168+ Bottom xlsxLine `xml:"bottom"`
169+ Diagonal xlsxLine `xml:"diagonal"`
170+ Vertical * xlsxLine `xml:"vertical"`
171+ Horizontal * xlsxLine `xml:"horizontal"`
170172}
171173
172174// xlsxCellStyles directly maps the cellStyles element. This element contains
0 commit comments