public function PHPExcel_Style_Alignment::getTextRotation in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.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;
}