public function PHPExcel_Cell::isFormula in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::isFormula()
Identify if the cell contains a formula
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php, line 373
Class
- PHPExcel_Cell
- PHPExcel_Cell
Code
public function isFormula() {
return $this->_dataType == PHPExcel_Cell_DataType::TYPE_FORMULA;
}