You are here

public function PHPExcel_Style_Borders::getInside in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php \PHPExcel_Style_Borders::getInside()

Get Inside (pseudo-border). Only applies to supervisor.

Return value

boolean

Throws

PHPExcel_Exception

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php, line 340

Class

PHPExcel_Style_Borders
PHPExcel_Style_Borders

Code

public function getInside() {
  if (!$this->_isSupervisor) {
    throw new PHPExcel_Exception('Can only get pseudo-border for supervisor.');
  }
  return $this->_inside;
}