public function PHPExcel_Style_Fill::getRotation in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php \PHPExcel_Style_Fill::getRotation()
* Get Rotation * *
Return value
double
1 call to PHPExcel_Style_Fill::getRotation()
- PHPExcel_Style_Fill::getHashCode in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php - * Get hash code * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php, line 222
Class
- PHPExcel_Style_Fill
- PHPExcel_Style_Fill
Code
public function getRotation() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getRotation();
}
return $this->_rotation;
}