You are here

public function PHPExcel_Writer_Abstract::setPreCalculateFormulas 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::setPreCalculateFormulas()

Set Pre-Calculate Formulas * Set to true (the default) to advise the Writer to calculate all formulae on save * Set to false to prevent precalculation of formulae on save.

Parameters

boolean $pValue Pre-Calculate Formulas?: * @return PHPExcel_Writer_IWriter

File

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

Class

PHPExcel_Writer_Abstract
PHPExcel_Writer_Abstract

Code

public function setPreCalculateFormulas($pValue = TRUE) {
  $this->_preCalculateFormulas = (bool) $pValue;
  return $this;
}