1. 23 4月, 2018 1 次提交
  2. 09 4月, 2018 1 次提交
  3. 08 4月, 2018 1 次提交
  4. 02 4月, 2018 1 次提交
  5. 29 3月, 2018 1 次提交
  6. 27 3月, 2018 2 次提交
  7. 16 3月, 2018 1 次提交
  8. 12 3月, 2018 1 次提交
  9. 07 3月, 2018 1 次提交
  10. 06 3月, 2018 1 次提交
  11. 05 3月, 2018 1 次提交
  12. 02 3月, 2018 1 次提交
  13. 12 2月, 2018 1 次提交
  14. 03 2月, 2018 1 次提交
  15. 31 1月, 2018 1 次提交
    • xurime's avatar
      - gofmted with -s; · 638bd44d
      xurime 提交于
      - Fix ineffectual assignments in Go code;
      - Godoc has been updated
      638bd44d
  16. 29 1月, 2018 2 次提交
  17. 28 1月, 2018 1 次提交
  18. 26 1月, 2018 3 次提交
  19. 19 1月, 2018 2 次提交
  20. 08 1月, 2018 1 次提交
  21. 06 1月, 2018 1 次提交
  22. 05 1月, 2018 1 次提交
  23. 03 1月, 2018 1 次提交
  24. 16 12月, 2017 1 次提交
  25. 15 12月, 2017 1 次提交
  26. 04 12月, 2017 1 次提交
  27. 01 12月, 2017 4 次提交
  28. 25 11月, 2017 2 次提交
  29. 21 11月, 2017 2 次提交
  30. 18 11月, 2017 1 次提交
    • O
      SheetViewOptionPtr: document that it is a superset of SheetViewOption · d2fb0197
      Olivier Mengué 提交于
      Document in type system (not just in text for humans) that
      all SheetViewOptionPtr are also SheetViewOption (well, if not nil).
      This improves documentation visible with godoc but this simple change
      also allows more flexibility to manipulate SheetViewOption programatically
      such as saving and restoring values:
      
      	var opt excelize.ShowFormulas
      	opt = new(excelize.ShowFormulas)
      	_ = xl.GetSheetViewOptions(sheet, -1, opt)
      	_ = xl.SetSheetViewOptions(sheet, -1, opt)
      d2fb0197