You are here

public function PHPExcel_Style_Alignment::getTextRotation 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::getTextRotation()

* Get TextRotation * *

Return value

int

File

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

Class

PHPExcel_Style_Alignment
PHPExcel_Style_Alignment

Code

public function getTextRotation() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getTextRotation();
  }
  return $this->_textRotation;
}