diff options
| author | xuri <xuri.me@gmail.com> | 2017-11-21 11:07:00 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-21 11:07:00 +0800 |
| commit | 130eb453f4c38f4c69790adffce58f73c94bde2a (patch) | |
| tree | 4fcd1ebe83b27291f08a5eb7e63af946fdaf802f /xmlWorksheet.go | |
| parent | 90998bfb4daac6e38346c03f41cb3c4e78b1ef7a (diff) | |
| parent | 954612157bbb7d2bce5602801019cb172a80b7d6 (diff) | |
Merge pull request #154 from dolmen-go/feature/SheetPr-options
Add {G,S}etSheetPrOptions() to allow to set FitToPage for printing
Diffstat (limited to 'xmlWorksheet.go')
| -rw-r--r-- | xmlWorksheet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 9b46a28..748ca1f 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -196,7 +196,7 @@ type xlsxSheetPr struct { CodeName string `xml:"codeName,attr,omitempty"` EnableFormatConditionsCalculation *bool `xml:"enableFormatConditionsCalculation,attr"` FilterMode bool `xml:"filterMode,attr,omitempty"` - Published bool `xml:"published,attr,omitempty"` + Published *bool `xml:"published,attr"` SyncHorizontal bool `xml:"syncHorizontal,attr,omitempty"` SyncVertical bool `xml:"syncVertical,attr,omitempty"` TransitionEntry bool `xml:"transitionEntry,attr,omitempty"` |
