You are here

public function PHPExcel_Cell::isInMergeRange in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::isInMergeRange()

* Is this cell in a merge range * *

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php, line 497

Class

PHPExcel_Cell
PHPExcel_Cell

Code

public function isInMergeRange() {
  return (bool) $this
    ->getMergeRange();
}