@@ -118,13 +118,14 @@ type xlsxPageMargins struct {
118
118
// specifies the sheet formatting properties.
119
119
type xlsxSheetFormatPr struct {
120
120
BaseColWidth uint8 `xml:"baseColWidth,attr,omitempty"`
121
- CustomHeight float64 `xml:"customHeight,attr,omitempty"`
122
121
DefaultColWidth float64 `xml:"defaultColWidth,attr,omitempty"`
123
122
DefaultRowHeight float64 `xml:"defaultRowHeight,attr"`
123
+ CustomHeight bool `xml:"customHeight,attr,omitempty"`
124
+ ZeroHeight bool `xml:"zeroHeight,attr,omitempty"`
124
125
ThickTop bool `xml:"thickTop,attr,omitempty"`
125
- OutlineLevelCol uint8 `xml:"outlineLevelCol ,attr,omitempty"`
126
+ ThickBottom bool `xml:"thickBottom ,attr,omitempty"`
126
127
OutlineLevelRow uint8 `xml:"outlineLevelRow,attr,omitempty"`
127
- ZeroHeight float64 `xml:"zeroHeight ,attr,omitempty"`
128
+ OutlineLevelCol uint8 `xml:"outlineLevelCol ,attr,omitempty"`
128
129
}
129
130
130
131
// xlsxSheetViews directly maps the sheetViews element in the namespace
0 commit comments