You are here

public function PHPExcel_CachedObjectStorage_CacheBase::getCurrentColumn in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::getCurrentColumn()

* Return the column address of the currently active cell object * *

Return value

string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php, line 237

Class

PHPExcel_CachedObjectStorage_CacheBase
PHPExcel_CachedObjectStorage_CacheBase

Code

public function getCurrentColumn() {
  sscanf($this->_currentObjectID, '%[A-Z]%d', $column, $row);
  return $column;
}