Source for file SpContainer.php
Documentation is available at SpContainer.php
* Copyright (c) 2006 - 2008 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 tshhe 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
* @package PHPExcel_Shared_Escher
* @copyright Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @version 1.6.5, 2009-01-05
* PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer
* @package PHPExcel_Shared_Escher
* @copyright Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
* Parent Shape Group Container
* @var PHPExcel_Shared_Escher_DgContainer_SpgrContainer
* Cell coordinates of upper-left corner of shape, e.g. 'A1'
* Set parent Shape Group Container
* @param PHPExcel_Shared_Escher_DgContainer_SpgrContainer $parent
* Set an option for the Shape Group Container
* @param int $property The number specifies the option
public function setOPT($property, $value)
$this->_OPT[$property] = $value;
* Get an option for the Shape Group Container
* @param int $property The number specifies the option
public function getOPT($property)
if (isset ($this->_OPT[$property])) {
return $this->_OPT[$property];
* Set cell coordinates of upper-left corner of shape
* Get cell coordinates of upper-left corner of shape
|