You are here

public function PHPExcel_Style_Supervisor::getActiveCell in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php \PHPExcel_Style_Supervisor::getActiveCell()

* Get the currently active cell coordinate in currently active sheet. * Only used for supervisor * *

Return value

string E.g. 'A1'

2 calls to PHPExcel_Style_Supervisor::getActiveCell()
PHPExcel_Style::getConditionalStyles in vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php
Get Conditional Styles. Only used on supervisor.
PHPExcel_Style::getSharedComponent in vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php
Get the shared style component for the currently active cell in currently active sheet. Only used for style supervisor

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php, line 114

Class

PHPExcel_Style_Supervisor
PHPExcel_Style_Supervisor

Code

public function getActiveCell() {
  return $this
    ->getActiveSheet()
    ->getActiveCell();
}