public function PHPExcel_Best_Fit::getF in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php \PHPExcel_Best_Fit::getF()
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ bestFitClass.php, line 285
Class
- PHPExcel_Best_Fit
- PHPExcel_Best_Fit
Code
public function getF($dp = 0) {
if ($dp != 0) {
return round($this->_F, $dp);
}
return $this->_F;
}