| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- class PHPExcel_Shared_Escher
- {
- /**
- * Drawing Group Container
- *
- * @var PHPExcel_Shared_Escher_DggContainer
- */
- private $dggContainer;
- /**
- * Drawing Container
- *
- * @var PHPExcel_Shared_Escher_DgContainer
- */
- private $dgContainer;
- /**
- * Get Drawing Group Container
- *
- * @return PHPExcel_Shared_Escher_DgContainer
- */
- public function getDggContainer()
- {
- return $this->dggContainer;
- }
- /**
- * Set Drawing Group Container
- *
- * @param PHPExcel_Shared_Escher_DggContainer $dggContainer
- */
- public function setDggContainer($dggContainer)
- {
- return $this->dggContainer = $dggContainer;
- }
- /**
- * Get Drawing Container
- *
- * @return PHPExcel_Shared_Escher_DgContainer
- */
- public function getDgContainer()
- {
- return $this->dgContainer;
- }
- /**
- * Set Drawing Container
- *
- * @param PHPExcel_Shared_Escher_DgContainer $dgContainer
- */
- public function setDgContainer($dgContainer)
- {
- return $this->dgContainer = $dgContainer;
- }
- }
|