PhpSpreadsheet/Classes/PHPExcel/Shared/Escher/DgContainer.php

76 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* PHPExcel_Shared_Escher_DgContainer
*
2015-05-02 22:50:37 +00:00
* Copyright (c) 2006 - 2015 PHPExcel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category PHPExcel
* @package PHPExcel_Shared_Escher
2015-05-02 22:50:37 +00:00
* @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
2015-05-12 09:22:06 +00:00
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @version ##VERSION##, ##DATE##
*/
class PHPExcel_Shared_Escher_DgContainer
{
2015-05-12 09:22:06 +00:00
/**
* Drawing index, 1-based.
*
* @var int
*/
private $dgId;
2015-05-12 09:22:06 +00:00
/**
* Last shape index in this drawing
*
* @var int
*/
private $lastSpId;
private $spgrContainer = null;
2015-05-12 09:22:06 +00:00
public function getDgId()
{
return $this->dgId;
2015-05-12 09:22:06 +00:00
}
2015-05-12 09:22:06 +00:00
public function setDgId($value)
{
$this->dgId = $value;
2015-05-12 09:22:06 +00:00
}
2015-05-12 09:22:06 +00:00
public function getLastSpId()
{
return $this->lastSpId;
2015-05-12 09:22:06 +00:00
}
2015-05-12 09:22:06 +00:00
public function setLastSpId($value)
{
$this->lastSpId = $value;
2015-05-12 09:22:06 +00:00
}
2015-05-12 09:22:06 +00:00
public function getSpgrContainer()
{
return $this->spgrContainer;
2015-05-12 09:22:06 +00:00
}
2015-05-12 09:22:06 +00:00
public function setSpgrContainer($spgrContainer)
{
return $this->spgrContainer = $spgrContainer;
2015-05-12 09:22:06 +00:00
}
}