DgContainer.php 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class PHPExcel_Shared_Escher_DgContainer
  8. {
  9. /**
  10. * Drawing index, 1-based.
  11. *
  12. * @var int
  13. */
  14. private $dgId;
  15. /**
  16. * Last shape index in this drawing
  17. *
  18. * @var int
  19. */
  20. private $lastSpId;
  21. private $spgrContainer = null;
  22. public function getDgId()
  23. {
  24. return $this->dgId;
  25. }
  26. public function setDgId($value)
  27. {
  28. $this->dgId = $value;
  29. }
  30. public function getLastSpId()
  31. {
  32. return $this->lastSpId;
  33. }
  34. public function setLastSpId($value)
  35. {
  36. $this->lastSpId = $value;
  37. }
  38. public function getSpgrContainer()
  39. {
  40. return $this->spgrContainer;
  41. }
  42. public function setSpgrContainer($spgrContainer)
  43. {
  44. return $this->spgrContainer = $spgrContainer;
  45. }
  46. }