You are here

public function PHPExcel_Style_Alignment::getWrapText in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php \PHPExcel_Style_Alignment::getWrapText()

* Get Wrap Text * *

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php, line 315

Class

PHPExcel_Style_Alignment
PHPExcel_Style_Alignment

Code

public function getWrapText() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getWrapText();
  }
  return $this->_wrapText;
}