69 lines
1.3 KiB
PHP
Executable File
69 lines
1.3 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* PHPWord
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2014 PHPWord
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Element;
|
|
|
|
use PhpOffice\PhpWord\Style\Cell as CellStyle;
|
|
|
|
/**
|
|
* Table cell element
|
|
*/
|
|
class Cell extends AbstractElement
|
|
{
|
|
/**
|
|
* Cell width
|
|
*
|
|
* @var int
|
|
*/
|
|
private $width = null;
|
|
|
|
/**
|
|
* Cell style
|
|
*
|
|
* @var \PhpOffice\PhpWord\Style\Cell
|
|
*/
|
|
private $cellStyle;
|
|
|
|
/**
|
|
* Create new instance
|
|
*
|
|
* @param string $docPart section|header|footer
|
|
* @param int $docPartId
|
|
* @param int $width
|
|
* @param array|\PhpOffice\PhpWord\Style\Cell $style
|
|
*/
|
|
public function __construct($docPart, $docPartId, $width = null, $style = null)
|
|
{
|
|
$this->container = 'cell';
|
|
$this->setDocPart($docPart, $docPartId);
|
|
$this->width = $width;
|
|
$this->cellStyle = $this->setStyle(new CellStyle(), $style, true);
|
|
}
|
|
|
|
/**
|
|
* Get cell style
|
|
*
|
|
* @return \PhpOffice\PhpWord\Style\Cell
|
|
*/
|
|
public function getStyle()
|
|
{
|
|
return $this->cellStyle;
|
|
}
|
|
|
|
/**
|
|
* Get cell width
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getWidth()
|
|
{
|
|
return $this->width;
|
|
}
|
|
}
|