public function PHPExcel_Comment::setWidth in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php \PHPExcel_Comment::setWidth()
Set comment width (CSS style, i.e. XXpx or YYpt)
Parameters
string $value:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Comment.php, line 170
Class
- PHPExcel_Comment
- PHPExcel_Comment
Code
public function setWidth($value = '96pt') {
$this->_width = $value;
return $this;
}