public function PHPExcel_CachedObjectStorage_CacheBase::getCurrentRow in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::getCurrentRow()
* Return the row address of the currently active cell object * *
Return value
integer
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ CacheBase.php, line 248
Class
- PHPExcel_CachedObjectStorage_CacheBase
- PHPExcel_CachedObjectStorage_CacheBase
Code
public function getCurrentRow() {
sscanf($this->_currentObjectID, '%[A-Z]%d', $column, $row);
return (int) $row;
}