forked from p30928647/excelize
Fixed #766, change order, and added fields of workbook fields
This commit is contained in:
parent
58ecf81630
commit
e568319bbc
|
@ -32,18 +32,26 @@ type xlsxRelationship struct {
|
||||||
// subclause references.
|
// subclause references.
|
||||||
type xlsxWorkbook struct {
|
type xlsxWorkbook struct {
|
||||||
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main workbook"`
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main workbook"`
|
||||||
|
Conformance string `xml:"conformance,attr,omitempty"`
|
||||||
FileVersion *xlsxFileVersion `xml:"fileVersion"`
|
FileVersion *xlsxFileVersion `xml:"fileVersion"`
|
||||||
|
FileSharing *xlsxExtLst `xml:"fileSharing"`
|
||||||
WorkbookPr *xlsxWorkbookPr `xml:"workbookPr"`
|
WorkbookPr *xlsxWorkbookPr `xml:"workbookPr"`
|
||||||
WorkbookProtection *xlsxWorkbookProtection `xml:"workbookProtection"`
|
WorkbookProtection *xlsxWorkbookProtection `xml:"workbookProtection"`
|
||||||
BookViews *xlsxBookViews `xml:"bookViews"`
|
BookViews *xlsxBookViews `xml:"bookViews"`
|
||||||
Sheets xlsxSheets `xml:"sheets"`
|
Sheets xlsxSheets `xml:"sheets"`
|
||||||
|
FunctionGroups *xlsxExtLst `xml:"functionGroups"`
|
||||||
ExternalReferences *xlsxExternalReferences `xml:"externalReferences"`
|
ExternalReferences *xlsxExternalReferences `xml:"externalReferences"`
|
||||||
DefinedNames *xlsxDefinedNames `xml:"definedNames"`
|
DefinedNames *xlsxDefinedNames `xml:"definedNames"`
|
||||||
CalcPr *xlsxCalcPr `xml:"calcPr"`
|
CalcPr *xlsxCalcPr `xml:"calcPr"`
|
||||||
|
OleSize *xlsxExtLst `xml:"oleSize"`
|
||||||
CustomWorkbookViews *xlsxCustomWorkbookViews `xml:"customWorkbookViews"`
|
CustomWorkbookViews *xlsxCustomWorkbookViews `xml:"customWorkbookViews"`
|
||||||
PivotCaches *xlsxPivotCaches `xml:"pivotCaches"`
|
PivotCaches *xlsxPivotCaches `xml:"pivotCaches"`
|
||||||
ExtLst *xlsxExtLst `xml:"extLst"`
|
SmartTagPr *xlsxExtLst `xml:"smartTagPr"`
|
||||||
|
SmartTagTypes *xlsxExtLst `xml:"smartTagTypes"`
|
||||||
|
WebPublishing *xlsxExtLst `xml:"webPublishing"`
|
||||||
FileRecoveryPr *xlsxFileRecoveryPr `xml:"fileRecoveryPr"`
|
FileRecoveryPr *xlsxFileRecoveryPr `xml:"fileRecoveryPr"`
|
||||||
|
WebPublishObjects *xlsxExtLst `xml:"webPublishObjects"`
|
||||||
|
ExtLst *xlsxExtLst `xml:"extLst"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// xlsxFileRecoveryPr maps sheet recovery information. This element defines
|
// xlsxFileRecoveryPr maps sheet recovery information. This element defines
|
||||||
|
|
Loading…
Reference in New Issue