You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update maximum 31 characters allowed in sheet title;
- Fix issue XML tag `headerFooter` and `sheetPr` element self-close errors cause file corruption;
- Fix issue `Section` and `Pane` element order make file corruption in some case;
- Change sheet `rId` calculation method in `/xl/workbook.xml`, fix makes file corruption in some case;
- Compatibility improved: add `xlsxTabColor` struct and some XML element for worksheet
// currently I have not checked it for completeness - it does as much
191
204
// as I need.
192
205
typexlsxPageSetUpPrstruct {
193
-
FitToPagebool`xml:"fitToPage,attr"`
206
+
FitToPagebool`xml:"fitToPage,attr"`// Flag indicating whether the Fit to Page print option is enabled.
207
+
}
208
+
209
+
// xlsxTabColor directly maps the tabColor element in the namespace
210
+
// currently I have not checked it for completeness - it does as much
211
+
// as I need.
212
+
typexlsxTabColorstruct {
213
+
Themeint`xml:"theme,attr,omitempty"`// (Theme Color) A zero-based index into the <clrScheme> collection (§20.1.6.2), referencing a particular <sysClr> or <srgbClr> value expressed in the Theme part.
214
+
Tintuint8`xml:"tint,attr,omitempty"`// Specifies the tint value applied to the color.
194
215
}
195
216
196
217
// xlsxCols directly maps the cols element in the namespace
@@ -278,7 +299,7 @@ type xlsxF struct {
278
299
Contentstring`xml:",chardata"`
279
300
Tstring`xml:"t,attr,omitempty"`// Formula type
280
301
Refstring`xml:"ref,attr,omitempty"`// Shared formula ref
281
-
Siint`xml:"si,attr,omitempty"`// Shared formula index
302
+
Sistring`xml:"si,attr,omitempty"`// Shared formula index
282
303
}
283
304
284
305
// xlsxHyperlinks directly maps the hyperlinks element in the namespace
0 commit comments