@@ -15,7 +15,8 @@ type xlsxWorksheet struct {
15
15
SheetData xlsxSheetData `xml:"sheetData"`
16
16
SheetProtection * xlsxSheetProtection `xml:"sheetProtection"`
17
17
AutoFilter * xlsxAutoFilter `xml:"autoFilter"`
18
- MergeCells * xlsxMergeCells `xml:"mergeCells,omitempty"`
18
+ MergeCells * xlsxMergeCells `xml:"mergeCells"`
19
+ PhoneticPr * xlsxPhoneticPr `xml:"phoneticPr"`
19
20
ConditionalFormatting []* xlsxConditionalFormatting `xml:"conditionalFormatting"`
20
21
DataValidations * xlsxDataValidations `xml:"dataValidations"`
21
22
Hyperlinks * xlsxHyperlinks `xml:"hyperlinks"`
@@ -73,7 +74,7 @@ type xlsxPageSetUp struct {
73
74
Draft bool `xml:"draft,attr,omitempty"`
74
75
Errors string `xml:"errors,attr,omitempty"`
75
76
FirstPageNumber int `xml:"firstPageNumber,attr,omitempty"`
76
- FitToHeight int `xml:"fitToHeight,attr,omitempty "`
77
+ FitToHeight * int `xml:"fitToHeight,attr"`
77
78
FitToWidth int `xml:"fitToWidth,attr,omitempty"`
78
79
HorizontalDPI float32 `xml:"horizontalDpi,attr,omitempty"`
79
80
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
@@ -144,24 +145,26 @@ type xlsxSheetViews struct {
144
145
// multiple windows are viewing the same sheet, multiple sheetView elements
145
146
// (with corresponding workbookView entries) are saved.
146
147
type xlsxSheetView struct {
147
- WindowProtection bool `xml:"windowProtection,attr,omitempty"`
148
- ShowFormulas bool `xml:"showFormulas,attr,omitempty"`
149
- ShowGridLines string `xml:"showGridLines,attr,omitempty"`
150
- ShowRowColHeaders bool `xml:"showRowColHeaders,attr,omitempty"`
151
- ShowZeros bool `xml:"showZeros,attr,omitempty"`
152
- RightToLeft bool `xml:"rightToLeft,attr,omitempty"`
153
- TabSelected bool `xml:"tabSelected,attr,omitempty"`
154
- ShowOutlineSymbols bool `xml:"showOutlineSymbols,attr,omitempty"`
155
- DefaultGridColor bool `xml:"defaultGridColor,attr"`
156
- View string `xml:"view,attr,omitempty"`
157
- TopLeftCell string `xml:"topLeftCell,attr,omitempty"`
158
- ColorID int `xml:"colorId,attr,omitempty"`
159
- ZoomScale float64 `xml:"zoomScale,attr,omitempty"`
160
- ZoomScaleNormal float64 `xml:"zoomScaleNormal,attr,omitempty"`
161
- ZoomScalePageLayoutView float64 `xml:"zoomScalePageLayoutView,attr,omitempty"`
162
- WorkbookViewID int `xml:"workbookViewId,attr"`
163
- Pane * xlsxPane `xml:"pane,omitempty"`
164
- Selection []* xlsxSelection `xml:"selection"`
148
+ WindowProtection bool `xml:"windowProtection,attr,omitempty"`
149
+ ShowFormulas bool `xml:"showFormulas,attr,omitempty"`
150
+ ShowGridLines string `xml:"showGridLines,attr,omitempty"`
151
+ ShowRowColHeaders bool `xml:"showRowColHeaders,attr,omitempty"`
152
+ ShowZeros bool `xml:"showZeros,attr,omitempty"`
153
+ RightToLeft bool `xml:"rightToLeft,attr,omitempty"`
154
+ TabSelected bool `xml:"tabSelected,attr,omitempty"`
155
+ ShowWhiteSpace * bool `xml:"showWhiteSpace,attr"`
156
+ ShowOutlineSymbols bool `xml:"showOutlineSymbols,attr,omitempty"`
157
+ DefaultGridColor bool `xml:"defaultGridColor,attr"`
158
+ View string `xml:"view,attr,omitempty"`
159
+ TopLeftCell string `xml:"topLeftCell,attr,omitempty"`
160
+ ColorID int `xml:"colorId,attr,omitempty"`
161
+ ZoomScale float64 `xml:"zoomScale,attr,omitempty"`
162
+ ZoomScaleNormal float64 `xml:"zoomScaleNormal,attr,omitempty"`
163
+ ZoomScalePageLayoutView float64 `xml:"zoomScalePageLayoutView,attr,omitempty"`
164
+ ZoomScaleSheetLayoutView float64 `xml:"zoomScaleSheetLayoutView,attr,omitempty"`
165
+ WorkbookViewID int `xml:"workbookViewId,attr"`
166
+ Pane * xlsxPane `xml:"pane,omitempty"`
167
+ Selection []* xlsxSelection `xml:"selection"`
165
168
}
166
169
167
170
// xlsxSelection directly maps the selection element in the namespace
@@ -189,7 +192,7 @@ type xlsxPane struct {
189
192
type xlsxSheetPr struct {
190
193
XMLName xml.Name `xml:"sheetPr"`
191
194
CodeName string `xml:"codeName,attr,omitempty"`
192
- EnableFormatConditionsCalculation bool `xml:"enableFormatConditionsCalculation,attr,omitempty "`
195
+ EnableFormatConditionsCalculation * bool `xml:"enableFormatConditionsCalculation,attr"`
193
196
FilterMode bool `xml:"filterMode,attr,omitempty"`
194
197
Published bool `xml:"published,attr,omitempty"`
195
198
SyncHorizontal bool `xml:"syncHorizontal,attr,omitempty"`
@@ -344,6 +347,19 @@ type xlsxSheetProtection struct {
344
347
SpinCount int `xml:"spinCount,attr,omitempty"`
345
348
}
346
349
350
+ // xlsxPhoneticPr (Phonetic Properties) represents a collection of phonetic
351
+ // properties that affect the display of phonetic text for this String Item
352
+ // (si). Phonetic text is used to give hints as to the pronunciation of an East
353
+ // Asian language, and the hints are displayed as text within the spreadsheet
354
+ // cells across the top portion of the cell. Since the phonetic hints are text,
355
+ // every phonetic hint is expressed as a phonetic run (rPh), and these
356
+ // properties specify how to display that phonetic run.
357
+ type xlsxPhoneticPr struct {
358
+ Alignment string `xml:"alignment,attr,omitempty"`
359
+ FontID int `xml:"fontId,attr,omitempty"`
360
+ Type string `xml:"type,attr,omitempty"`
361
+ }
362
+
347
363
// A Conditional Format is a format, such as cell shading or font color, that a
348
364
// spreadsheet application can automatically apply to cells if a specified
349
365
// condition is true. This collection expresses conditional formatting rules
0 commit comments