Escher.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class PHPExcel_Shared_Escher
  8. {
  9. /**
  10. * Drawing Group Container
  11. *
  12. * @var PHPExcel_Shared_Escher_DggContainer
  13. */
  14. private $dggContainer;
  15. /**
  16. * Drawing Container
  17. *
  18. * @var PHPExcel_Shared_Escher_DgContainer
  19. */
  20. private $dgContainer;
  21. /**
  22. * Get Drawing Group Container
  23. *
  24. * @return PHPExcel_Shared_Escher_DgContainer
  25. */
  26. public function getDggContainer()
  27. {
  28. return $this->dggContainer;
  29. }
  30. /**
  31. * Set Drawing Group Container
  32. *
  33. * @param PHPExcel_Shared_Escher_DggContainer $dggContainer
  34. */
  35. public function setDggContainer($dggContainer)
  36. {
  37. return $this->dggContainer = $dggContainer;
  38. }
  39. /**
  40. * Get Drawing Container
  41. *
  42. * @return PHPExcel_Shared_Escher_DgContainer
  43. */
  44. public function getDgContainer()
  45. {
  46. return $this->dgContainer;
  47. }
  48. /**
  49. * Set Drawing Container
  50. *
  51. * @param PHPExcel_Shared_Escher_DgContainer $dgContainer
  52. */
  53. public function setDgContainer($dgContainer)
  54. {
  55. return $this->dgContainer = $dgContainer;
  56. }
  57. }