|
|
@@ -17,6 +17,7 @@ type xlsxWorksheet struct {
|
|
|
SheetFormatPr xlsxSheetFormatPr `xml:"sheetFormatPr"`
|
|
|
Cols *xlsxCols `xml:"cols,omitempty"`
|
|
|
SheetData xlsxSheetData `xml:"sheetData"`
|
|
|
+ AutoFilter *xlsxAutoFilter `xml:"autoFilter,omitempty"`
|
|
|
MergeCells *xlsxMergeCells `xml:"mergeCells,omitempty"`
|
|
|
PrintOptions xlsxPrintOptions `xml:"printOptions"`
|
|
|
PageMargins xlsxPageMargins `xml:"pageMargins"`
|
|
|
@@ -236,6 +237,10 @@ type xlsxRow struct {
|
|
|
OutlineLevel uint8 `xml:"outlineLevel,attr,omitempty"`
|
|
|
}
|
|
|
|
|
|
+type xlsxAutoFilter struct {
|
|
|
+ Ref string `xml:"ref,attr"`
|
|
|
+}
|
|
|
+
|
|
|
type xlsxMergeCell struct {
|
|
|
Ref string `xml:"ref,attr"` // ref: horiz "A1:C1", vert "B3:B6", both "D3:G4"
|
|
|
}
|