DgContainer.php 827 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Shared\Escher;
  3. class DgContainer
  4. {
  5. /**
  6. * Drawing index, 1-based.
  7. *
  8. * @var int
  9. */
  10. private $dgId;
  11. /**
  12. * Last shape index in this drawing.
  13. *
  14. * @var int
  15. */
  16. private $lastSpId;
  17. private $spgrContainer;
  18. public function getDgId()
  19. {
  20. return $this->dgId;
  21. }
  22. public function setDgId($value)
  23. {
  24. $this->dgId = $value;
  25. }
  26. public function getLastSpId()
  27. {
  28. return $this->lastSpId;
  29. }
  30. public function setLastSpId($value)
  31. {
  32. $this->lastSpId = $value;
  33. }
  34. public function getSpgrContainer()
  35. {
  36. return $this->spgrContainer;
  37. }
  38. public function setSpgrContainer($spgrContainer)
  39. {
  40. return $this->spgrContainer = $spgrContainer;
  41. }
  42. }