You are here

public function PHPExcel_Worksheet::sortCellCollection 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::sortCellCollection()

Sort collection of cells

Return value

PHPExcel_Worksheet

1 call to PHPExcel_Worksheet::sortCellCollection()
PHPExcel_Worksheet::getCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php
Get collection of cells

File

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

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

public function sortCellCollection() {
  if ($this->_cellCollection !== NULL) {
    return $this->_cellCollection
      ->getSortedCellList();
  }
  return array();
}