You are here

public function PHPExcel_Writer_CSV::setExcelCompatibility in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php \PHPExcel_Writer_CSV::setExcelCompatibility()

* Set whether the file should be saved with full Excel Compatibility * *

Parameters

boolean $pValue Set the file to be written as a fully Excel compatible csv file: * Note that this overrides other settings such as useBOM, enclosure and delimiter * @return PHPExcel_Writer_CSV

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php, line 245

Class

PHPExcel_Writer_CSV
PHPExcel_Writer_CSV

Code

public function setExcelCompatibility($pValue = false) {
  $this->_excelCompatibility = $pValue;
  return $this;
}