public function PHPExcel_Style_Borders::getOutline in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php \PHPExcel_Style_Borders::getOutline()
Get Outline (pseudo-border). Only applies to supervisor.
Return value
boolean
Throws
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Borders.php, line 327
Class
- PHPExcel_Style_Borders
- PHPExcel_Style_Borders
Code
public function getOutline() {
if (!$this->_isSupervisor) {
throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.');
}
return $this->_outline;
}