@@ -234,11 +234,11 @@ type xlsxSheetPr struct {
234
234
SyncVertical bool `xml:"syncVertical,attr,omitempty"`
235
235
SyncRef string `xml:"syncRef,attr,omitempty"`
236
236
TransitionEvaluation bool `xml:"transitionEvaluation,attr,omitempty"`
237
+ TransitionEntry bool `xml:"transitionEntry,attr,omitempty"`
237
238
Published * bool `xml:"published,attr"`
238
239
CodeName string `xml:"codeName,attr,omitempty"`
239
240
FilterMode bool `xml:"filterMode,attr,omitempty"`
240
241
EnableFormatConditionsCalculation * bool `xml:"enableFormatConditionsCalculation,attr"`
241
- TransitionEntry bool `xml:"transitionEntry,attr,omitempty"`
242
242
TabColor * xlsxTabColor `xml:"tabColor,omitempty"`
243
243
OutlinePr * xlsxOutlinePr `xml:"outlinePr,omitempty"`
244
244
PageSetUpPr * xlsxPageSetUpPr `xml:"pageSetUpPr,omitempty"`
@@ -247,7 +247,10 @@ type xlsxSheetPr struct {
247
247
// xlsxOutlinePr maps to the outlinePr element. SummaryBelow allows you to
248
248
// adjust the direction of grouper controls.
249
249
type xlsxOutlinePr struct {
250
- SummaryBelow bool `xml:"summaryBelow,attr"`
250
+ ApplyStyles * bool `xml:"applyStyles,attr"`
251
+ SummaryBelow bool `xml:"summaryBelow,attr,omitempty"`
252
+ SummaryRight bool `xml:"summaryRight,attr,omitempty"`
253
+ ShowOutlineSymbols bool `xml:"showOutlineSymbols,attr,omitempty"`
251
254
}
252
255
253
256
// xlsxPageSetUpPr expresses page setup properties of the worksheet.
@@ -258,9 +261,11 @@ type xlsxPageSetUpPr struct {
258
261
259
262
// xlsxTabColor represents background color of the sheet tab.
260
263
type xlsxTabColor struct {
261
- RGB string `xml:"rgb,attr,omitempty"`
262
- Theme int `xml:"theme,attr,omitempty"`
263
- Tint float64 `xml:"tint,attr,omitempty"`
264
+ Auto bool `xml:"auto,attr,omitempty"`
265
+ Indexed int `xml:"indexed,attr,omitempty"`
266
+ RGB string `xml:"rgb,attr,omitempty"`
267
+ Theme int `xml:"theme,attr,omitempty"`
268
+ Tint float64 `xml:"tint,attr,omitempty"`
264
269
}
265
270
266
271
// xlsxCols defines column width and column formatting for one or more columns
0 commit comments