summaryrefslogtreecommitdiff
path: root/xmlWorksheet.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2016-12-31 23:51:42 +0800
committerRi Xu <xuri.me@gmail.com>2016-12-31 23:51:42 +0800
commit2497ccb8768d68ef5e5e3375f23265b9fee97e0d (patch)
tree99d429e45c50b662a465504ef5dad4d4ab5c8ca3 /xmlWorksheet.go
parent9e8d36ce59381eadb934585a179c4c6d7f871b35 (diff)
Fix issue struct field `paperHeight` has xml tag but is not exported.
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r--xmlWorksheet.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go
index 509214e..9cc0e55 100644
--- a/xmlWorksheet.go
+++ b/xmlWorksheet.go
@@ -81,7 +81,7 @@ type xlsxPageSetUp struct {
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
Orientation string `xml:"orientation,attr,omitempty"`
PageOrder string `xml:"pageOrder,attr,omitempty"`
- paperHeight string `xml:"paperHeight,attr,omitempty"`
+ PaperHeight string `xml:"paperHeight,attr,omitempty"`
PaperSize string `xml:"paperSize,attr,omitempty"`
PaperWidth string `xml:"paperWidth,attr,omitempty"`
Scale int `xml:"scale,attr,omitempty"`