diff options
author | xuri <xuri.me@gmail.com> | 2018-12-16 11:15:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 11:15:50 +0800 |
commit | d166d2e06fd7faf116a5d8ef9ec035a5a05799c5 (patch) | |
tree | 7e23c620706408f4265468d00afe5eda2ff2f773 /xmlWorksheet.go | |
parent | e728ff14981bda19a18a830e416290cecc5a269e (diff) | |
parent | faa7285a4f5db13e3629360562abc8a459bad0c2 (diff) |
Merge pull request #307 from mlh758/add-outline-summary
Add support to flip outline summaries
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 42f8ddb..d35b40e 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -211,6 +211,13 @@ type xlsxSheetPr struct { TransitionEntry bool `xml:"transitionEntry,attr,omitempty"` TabColor *xlsxTabColor `xml:"tabColor,omitempty"` PageSetUpPr *xlsxPageSetUpPr `xml:"pageSetUpPr,omitempty"` + OutlinePr *xlsxOutlinePr `xml:"outlinePr,omitempty"` +} + +// xlsxOutlinePr maps to the outlinePr element +// SummaryBelow allows you to adjust the direction of grouper controls +type xlsxOutlinePr struct { + SummaryBelow bool `xml:"summaryBelow,attr"` } // xlsxPageSetUpPr directly maps the pageSetupPr element in the namespace |