1. 16 11月, 2017 1 次提交
    • O
      Add SetSheetViewOptions and GetSheetViewOptions (#145) · 88e48e07
      Olivier Mengué 提交于
      Two new methods:
      - SetSheetViewOptions(sheetName string, viewIndex int, opts ...SheetViewOption) error
      - GetSheetViewOptions(sheetName string, viewIndex int, opts ...SheetViewOptionPtr) error
      
      The option values are given by the user through types that have privates methods
      that implement the private SheetViewOption and SheetViewOptionPtr interfaces:
      - DefaultGridColor(bool)
      - RightToLeft(bool)
      - ShowFormulas(bool)
      - ShowGridLines(bool)
      - ShowRowColHeaders(bool)
      
      Examples:
          err := xl.SetSheetViewOptions("Sheet1", -1, excelize.ShowGridLines(true))
      
          var showGridLines excelize.ShowGridLines
          err := xl.GetSheetViewOptions("Sheet1", -1, &showGridLines)
      
      Fixes #145.
      88e48e07
  2. 05 9月, 2017 1 次提交
  3. 11 8月, 2017 2 次提交
  4. 30 7月, 2017 1 次提交
  5. 15 7月, 2017 1 次提交
  6. 29 6月, 2017 1 次提交
  7. 08 6月, 2017 1 次提交
  8. 25 5月, 2017 1 次提交
  9. 28 3月, 2017 1 次提交
  10. 10 3月, 2017 1 次提交
  11. 06 3月, 2017 1 次提交
  12. 03 3月, 2017 1 次提交
  13. 18 1月, 2017 2 次提交
  14. 31 12月, 2016 2 次提交
  15. 26 12月, 2016 2 次提交
  16. 23 12月, 2016 1 次提交
    • xurime's avatar
      - Update maximum 31 characters allowed in sheet title; · b84bfa7e
      xurime 提交于
      - Fix issue XML tag `headerFooter` and `sheetPr` element self-close errors cause file corruption;
      - Fix issue `Section` and `Pane` element order make file corruption in some case;
      - Change sheet `rId` calculation method in `/xl/workbook.xml`, fix makes file corruption in some case;
      - Compatibility improved: add `xlsxTabColor` struct and some XML element for worksheet
      b84bfa7e
  17. 22 12月, 2016 1 次提交
    • xurime's avatar
      - Fix issue comments missing after save; · a08c8eb1
      xurime 提交于
      - Update import PKG syntax in struct;
      - Update test XLSX file (include table, charts, functions, comments and hyperlink on Sheet1)
      a08c8eb1
  18. 20 12月, 2016 2 次提交
  19. 19 10月, 2016 1 次提交
  20. 22 9月, 2016 1 次提交
  21. 19 9月, 2016 1 次提交
  22. 07 9月, 2016 1 次提交
  23. 02 9月, 2016 1 次提交
  24. 31 8月, 2016 1 次提交
  25. 30 8月, 2016 1 次提交