Skip to content

Commit 5354074

Browse files
committed
Update struct define to fix issue qax-os#112.
1 parent 224f185 commit 5354074

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

xmlWorksheet.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,14 @@ type xlsxPageMargins struct {
118118
// specifies the sheet formatting properties.
119119
type xlsxSheetFormatPr struct {
120120
BaseColWidth uint8 `xml:"baseColWidth,attr,omitempty"`
121-
CustomHeight float64 `xml:"customHeight,attr,omitempty"`
122121
DefaultColWidth float64 `xml:"defaultColWidth,attr,omitempty"`
123122
DefaultRowHeight float64 `xml:"defaultRowHeight,attr"`
123+
CustomHeight bool `xml:"customHeight,attr,omitempty"`
124+
ZeroHeight bool `xml:"zeroHeight,attr,omitempty"`
124125
ThickTop bool `xml:"thickTop,attr,omitempty"`
125-
OutlineLevelCol uint8 `xml:"outlineLevelCol,attr,omitempty"`
126+
ThickBottom bool `xml:"thickBottom,attr,omitempty"`
126127
OutlineLevelRow uint8 `xml:"outlineLevelRow,attr,omitempty"`
127-
ZeroHeight float64 `xml:"zeroHeight,attr,omitempty"`
128+
OutlineLevelCol uint8 `xml:"outlineLevelCol,attr,omitempty"`
128129
}
129130

130131
// xlsxSheetViews directly maps the sheetViews element in the namespace

0 commit comments

Comments
 (0)