public function PHPExcel_Style_Alignment::getShrinkToFit in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php \PHPExcel_Style_Alignment::getShrinkToFit()
* Get Shrink to fit * *
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Alignment.php, line 346
Class
- PHPExcel_Style_Alignment
- PHPExcel_Style_Alignment
Code
public function getShrinkToFit() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getShrinkToFit();
}
return $this->_shrinkToFit;
}