diff options
author | xuri <xuri.me@gmail.com> | 2019-09-18 00:47:31 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-09-18 00:47:31 +0800 |
commit | eef232f09ecd41b1f8fc199906ce0be64865802e (patch) | |
tree | 0d17865ccaaac09be013461cc8cd212b97f3b0f8 /xmlWorksheet.go | |
parent | 8922f659788187afa6d0a5d3248e999c2c1bb846 (diff) |
Fix #483, adjust the order of fields in the structure
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 09dec5e..7e8cfde 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -209,16 +209,18 @@ type xlsxPane struct { // properties. type xlsxSheetPr struct { XMLName xml.Name `xml:"sheetPr"` - CodeName string `xml:"codeName,attr,omitempty"` - EnableFormatConditionsCalculation *bool `xml:"enableFormatConditionsCalculation,attr"` - FilterMode bool `xml:"filterMode,attr,omitempty"` - Published *bool `xml:"published,attr"` SyncHorizontal bool `xml:"syncHorizontal,attr,omitempty"` SyncVertical bool `xml:"syncVertical,attr,omitempty"` + SyncRef string `xml:"syncRef,attr,omitempty"` + TransitionEvaluation bool `xml:"transitionEvaluation,attr,omitempty"` + Published *bool `xml:"published,attr"` + CodeName string `xml:"codeName,attr,omitempty"` + FilterMode bool `xml:"filterMode,attr,omitempty"` + EnableFormatConditionsCalculation *bool `xml:"enableFormatConditionsCalculation,attr"` TransitionEntry bool `xml:"transitionEntry,attr,omitempty"` TabColor *xlsxTabColor `xml:"tabColor,omitempty"` - PageSetUpPr *xlsxPageSetUpPr `xml:"pageSetUpPr,omitempty"` OutlinePr *xlsxOutlinePr `xml:"outlinePr,omitempty"` + PageSetUpPr *xlsxPageSetUpPr `xml:"pageSetUpPr,omitempty"` } // xlsxOutlinePr maps to the outlinePr element |