Skip to content

Commit 9e0aca2

Browse files
committed
Add custom height and zero height attributes in sheetFormatPr element.
1 parent 2e8fa2d commit 9e0aca2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ modification, are permitted provided that the following conditions are met:
1111
this list of conditions and the following disclaimer in the documentation
1212
and/or other materials provided with the distribution.
1313

14-
* Neither the name of [project] nor the names of its
14+
* Neither the name of Excelize nor the names of its
1515
contributors may be used to endorse or promote products derived from
1616
this software without specific prior written permission.
1717

xmlWorksheet.go

+2
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ type xlsxPageMargins struct {
112112
type xlsxSheetFormatPr struct {
113113
DefaultColWidth float64 `xml:"defaultColWidth,attr,omitempty"`
114114
DefaultRowHeight float64 `xml:"defaultRowHeight,attr"`
115+
CustomHeight float64 `xml:"customHeight,attr,omitempty"`
116+
ZeroHeight float64 `xml:"zeroHeight,attr,omitempty"`
115117
OutlineLevelCol uint8 `xml:"outlineLevelCol,attr,omitempty"`
116118
OutlineLevelRow uint8 `xml:"outlineLevelRow,attr,omitempty"`
117119
}

0 commit comments

Comments
 (0)