You are here

public function PHPExcel_Writer_Abstract::getPreCalculateFormulas in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php \PHPExcel_Writer_Abstract::getPreCalculateFormulas()

Get Pre-Calculate Formulas flag * If this is true (the default), then the writer will recalculate all formulae in a workbook when saving, * so that the pre-calculated values are immediately available to MS Excel or other office spreadsheet * viewer when opening the file * If false, then formulae are not calculated on save. This is faster for saving in PHPExcel, but slower * when opening the resulting file in MS Excel, because Excel has to recalculate the formulae itself

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php, line 103

Class

PHPExcel_Writer_Abstract
PHPExcel_Writer_Abstract

Code

public function getPreCalculateFormulas() {
  return $this->_preCalculateFormulas;
}