You are here

public function PHPExcel_HashTable::getByIndex in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php \PHPExcel_HashTable::getByIndex()

* Get by index * *

Parameters

int $pIndex: * @return PHPExcel_IComparable *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php, line 159

Class

PHPExcel_HashTable
PHPExcel_HashTable

Code

public function getByIndex($pIndex = 0) {
  if (isset($this->_keyMap[$pIndex])) {
    return $this
      ->getByHashCode($this->_keyMap[$pIndex]);
  }
  return null;
}