public function PHPExcel_Style_Supervisor::getSelectedCells in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php \PHPExcel_Style_Supervisor::getSelectedCells()
* 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::getSelectedCells()
- PHPExcel_Style::applyFromArray in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style.php - Apply styles from array
- PHPExcel_Style::setConditionalStyles in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style.php - Set Conditional Styles. Only used on supervisor.
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Supervisor.php, line 103
Class
- PHPExcel_Style_Supervisor
- PHPExcel_Style_Supervisor
Code
public function getSelectedCells() {
return $this
->getActiveSheet()
->getSelectedCells();
}