diff options
author | xuri <xuri.me@gmail.com> | 2020-03-01 00:34:41 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-03-01 00:34:41 +0800 |
commit | 1d87da57ecf5e13203b6441dd97160885981545e (patch) | |
tree | 63531d09078b0b88621b46667a4cd5f38c726adc /xmlWorksheet.go | |
parent | 0ac7e18389b65a50424db923954fadccecc9cde1 (diff) |
Resolve #492, init support for insert and remove page break
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index dda1b78..aa33819 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -357,9 +357,9 @@ type xlsxBrk struct { // xlsxBreaks directly maps a collection of the row or column breaks. type xlsxBreaks struct { - Brk *xlsxBrk `xml:"brk"` - Count int `xml:"count,attr,omitempty"` - ManualBreakCount int `xml:"manualBreakCount,attr,omitempty"` + Brk []*xlsxBrk `xml:"brk"` + Count int `xml:"count,attr,omitempty"` + ManualBreakCount int `xml:"manualBreakCount,attr,omitempty"` } // xlsxCustomSheetView directly maps the customSheetView element. |