You are here

public function PHPExcel_Cell::getCoordinate in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::getCoordinate()

* Get cell coordinate * *

Return value

string

9 calls to PHPExcel_Cell::getCoordinate()
PHPExcel_Cell::getCalculatedValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php
* Get calculated cell value * *
PHPExcel_Cell::getDataValidation in vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php
* Get Data validation rules * *
PHPExcel_Cell::getHyperlink in vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php
* Get Hyperlink * *
PHPExcel_Cell::getStyle in vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php
* Get cell style * *
PHPExcel_Cell::hasDataValidation in vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php
* Does this cell contain Data validation rules? * *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php, line 171

Class

PHPExcel_Cell
PHPExcel_Cell

Code

public function getCoordinate() {
  return $this->_parent
    ->getCurrentAddress();
}