workbook.go 1016 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package xlsx
  2. type XLSXWorkbook struct {
  3. FileVersion XLSXFileVersion
  4. WorkbookPr XLSXWorkbookPr
  5. BookViews XLSXBookViews
  6. Sheets XLSXSheets
  7. DefinedNames XLSXDefinedNames
  8. CalcPr XLSXCalcPr
  9. }
  10. type XLSXFileVersion struct {
  11. AppName string "attr"
  12. LastEdited string "attr"
  13. LowestEdited string "attr"
  14. RupBuild string "attr"
  15. }
  16. type XLSXWorkbookPr struct {
  17. DefaultThemeVersion string "attr"
  18. }
  19. type XLSXBookViews struct {
  20. WorkBookView []XLSXWorkBookView
  21. }
  22. type XLSXWorkBookView struct {
  23. XWindow string "attr"
  24. YWindow string "attr"
  25. WindowWidth string "attr"
  26. WindowHeight string "attr"
  27. }
  28. type XLSXSheets struct {
  29. Sheet []XLSXSheet
  30. }
  31. type XLSXSheet struct {
  32. Name string "attr"
  33. SheetId string "attr"
  34. Id string "attr"
  35. }
  36. type XLSXDefinedNames struct {
  37. DefinedName []XLSXDefinedName
  38. }
  39. type XLSXDefinedName struct {
  40. Data string "chardata"
  41. Name string "attr"
  42. LocalSheetID string "attr"
  43. }
  44. type XLSXCalcPr struct {
  45. CalcId string "attr"
  46. }