@@ -16,6 +16,7 @@ type xlsxWorksheet struct {
16
16
SheetProtection * xlsxSheetProtection `xml:"sheetProtection"`
17
17
MergeCells * xlsxMergeCells `xml:"mergeCells,omitempty"`
18
18
ConditionalFormatting * xlsxConditionalFormatting `xml:"conditionalFormatting"`
19
+ DataValidations * xlsxDataValidations `xml:"dataValidations"`
19
20
Hyperlinks * xlsxHyperlinks `xml:"hyperlinks"`
20
21
PrintOptions * xlsxPrintOptions `xml:"printOptions"`
21
22
PageMargins * xlsxPageMargins `xml:"pageMargins"`
@@ -282,6 +283,16 @@ type xlsxMergeCells struct {
282
283
Cells []* xlsxMergeCell `xml:"mergeCell,omitempty"`
283
284
}
284
285
286
+ // xlsxDataValidations expresses all data validation information for cells in a
287
+ // sheet which have data validation features applied.
288
+ type xlsxDataValidations struct {
289
+ Count int `xml:"count,attr,omitempty"`
290
+ DisablePrompts bool `xml:"disablePrompts,attr,omitempty"`
291
+ XWindow int `xml:"xWindow,attr,omitempty"`
292
+ YWindow int `xml:"yWindow,attr,omitempty"`
293
+ DataValidation string `xml:",innerxml"`
294
+ }
295
+
285
296
// xlsxC directly maps the c element in the namespace
286
297
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
287
298
// not checked it for completeness - it does as much as I need.
0 commit comments