diff options
Diffstat (limited to 'xmlWorkbook.go')
-rw-r--r-- | xmlWorkbook.go | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/xmlWorkbook.go b/xmlWorkbook.go index 2bb417c..e344dbf 100644 --- a/xmlWorkbook.go +++ b/xmlWorkbook.go @@ -35,27 +35,29 @@ type xlsxRelationship struct { // content of the workbook. The workbook's child elements each have their own // subclause references. type xlsxWorkbook struct { - XMLName xml.Name `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main workbook"` - Conformance string `xml:"conformance,attr,omitempty"` - FileVersion *xlsxFileVersion `xml:"fileVersion"` - FileSharing *xlsxExtLst `xml:"fileSharing"` - WorkbookPr *xlsxWorkbookPr `xml:"workbookPr"` - WorkbookProtection *xlsxWorkbookProtection `xml:"workbookProtection"` - BookViews *xlsxBookViews `xml:"bookViews"` - Sheets xlsxSheets `xml:"sheets"` - FunctionGroups *xlsxExtLst `xml:"functionGroups"` - ExternalReferences *xlsxExternalReferences `xml:"externalReferences"` - DefinedNames *xlsxDefinedNames `xml:"definedNames"` - CalcPr *xlsxCalcPr `xml:"calcPr"` - OleSize *xlsxExtLst `xml:"oleSize"` - CustomWorkbookViews *xlsxCustomWorkbookViews `xml:"customWorkbookViews"` - PivotCaches *xlsxPivotCaches `xml:"pivotCaches"` - SmartTagPr *xlsxExtLst `xml:"smartTagPr"` - SmartTagTypes *xlsxExtLst `xml:"smartTagTypes"` - WebPublishing *xlsxExtLst `xml:"webPublishing"` - FileRecoveryPr *xlsxFileRecoveryPr `xml:"fileRecoveryPr"` - WebPublishObjects *xlsxExtLst `xml:"webPublishObjects"` - ExtLst *xlsxExtLst `xml:"extLst"` + XMLName xml.Name `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main workbook"` + Conformance string `xml:"conformance,attr,omitempty"` + FileVersion *xlsxFileVersion `xml:"fileVersion"` + FileSharing *xlsxExtLst `xml:"fileSharing"` + AlternateContent *xlsxAlternateContent `xml:"mc:AlternateContent"` + DecodeAlternateContent *xlsxInnerXML `xml:"http://schemas.openxmlformats.org/markup-compatibility/2006 AlternateContent"` + WorkbookPr *xlsxWorkbookPr `xml:"workbookPr"` + WorkbookProtection *xlsxWorkbookProtection `xml:"workbookProtection"` + BookViews *xlsxBookViews `xml:"bookViews"` + Sheets xlsxSheets `xml:"sheets"` + FunctionGroups *xlsxExtLst `xml:"functionGroups"` + ExternalReferences *xlsxExternalReferences `xml:"externalReferences"` + DefinedNames *xlsxDefinedNames `xml:"definedNames"` + CalcPr *xlsxCalcPr `xml:"calcPr"` + OleSize *xlsxExtLst `xml:"oleSize"` + CustomWorkbookViews *xlsxCustomWorkbookViews `xml:"customWorkbookViews"` + PivotCaches *xlsxPivotCaches `xml:"pivotCaches"` + SmartTagPr *xlsxExtLst `xml:"smartTagPr"` + SmartTagTypes *xlsxExtLst `xml:"smartTagTypes"` + WebPublishing *xlsxExtLst `xml:"webPublishing"` + FileRecoveryPr *xlsxFileRecoveryPr `xml:"fileRecoveryPr"` + WebPublishObjects *xlsxExtLst `xml:"webPublishObjects"` + ExtLst *xlsxExtLst `xml:"extLst"` } // xlsxFileRecoveryPr maps sheet recovery information. This element defines |