summaryrefslogtreecommitdiff
path: root/xmlWorksheet.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2016-09-19 10:10:41 +0800
committerRi Xu <xuri.me@gmail.com>2016-09-19 10:10:41 +0800
commit9e0aca22233da1326794d378c3d06acbc4e76a8e (patch)
tree473076c22b476eb10be2274622f21976b2a6e8f5 /xmlWorksheet.go
parent2e8fa2d39c8771c6f79c59e708f2b443302ade7f (diff)
Add custom height and zero height attributes in sheetFormatPr element.
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r--xmlWorksheet.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go
index 975e40e..0421c51 100644
--- a/xmlWorksheet.go
+++ b/xmlWorksheet.go
@@ -112,6 +112,8 @@ type xlsxPageMargins struct {
type xlsxSheetFormatPr struct {
DefaultColWidth float64 `xml:"defaultColWidth,attr,omitempty"`
DefaultRowHeight float64 `xml:"defaultRowHeight,attr"`
+ CustomHeight float64 `xml:"customHeight,attr,omitempty"`
+ ZeroHeight float64 `xml:"zeroHeight,attr,omitempty"`
OutlineLevelCol uint8 `xml:"outlineLevelCol,attr,omitempty"`
OutlineLevelRow uint8 `xml:"outlineLevelRow,attr,omitempty"`
}