You are here

public function PHPExcel_Worksheet::setMergeCells in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::setMergeCells()

Set merge cells array for the entire sheet. Use instead mergeCells() to merge a single cell range.

Parameters

array:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php, line 1792

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

public function setMergeCells($pValue = array()) {
  $this->_mergeCells = $pValue;
  return $this;
}