File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 60
60
ShowZeros bool
61
61
// View is a SheetViewOption. It specifies a flag indicating
62
62
// how sheet is displayed, by default it uses empty string
63
- // available options: pageLayout, pageBreakPreview
63
+ // available options: normal, pageLayout, pageBreakPreview
64
64
View string
65
65
// ShowRuler is a SheetViewOption. It specifies a flag indicating
66
66
// this sheet should display ruler.
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ type xlsxSheetView struct {
191
191
ShowZeros * bool `xml:"showZeros,attr,omitempty"`
192
192
RightToLeft bool `xml:"rightToLeft,attr,omitempty"`
193
193
TabSelected bool `xml:"tabSelected,attr,omitempty"`
194
+ ShowRuler * bool `xml:"showRuler,attr,omitempty"`
194
195
ShowWhiteSpace * bool `xml:"showWhiteSpace,attr"`
195
196
ShowOutlineSymbols bool `xml:"showOutlineSymbols,attr,omitempty"`
196
197
DefaultGridColor * bool `xml:"defaultGridColor,attr"`
@@ -204,7 +205,6 @@ type xlsxSheetView struct {
204
205
WorkbookViewID int `xml:"workbookViewId,attr"`
205
206
Pane * xlsxPane `xml:"pane,omitempty"`
206
207
Selection []* xlsxSelection `xml:"selection"`
207
- ShowRuler * bool `xml:"showRuler,attr,omitempty"`
208
208
}
209
209
210
210
// xlsxSelection directly maps the selection element in the namespace
You can’t perform that action at this time.
0 commit comments