You are here

public function PHPExcel_Reader_CSV::setContiguous in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php \PHPExcel_Reader_CSV::setContiguous()

* Set Contiguous * *

Parameters

boolean $contiguous:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php, line 368

Class

PHPExcel_Reader_CSV
PHPExcel_Reader_CSV

Code

public function setContiguous($contiguous = FALSE) {
  $this->_contiguous = (bool) $contiguous;
  if (!$contiguous) {
    $this->_contiguousRow = -1;
  }
  return $this;
}