You are here

public function PHPExcel_Cell::getStyle 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::getStyle()

* Get cell style * *

Return value

PHPExcel_Style

File

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

Class

PHPExcel_Cell
PHPExcel_Cell

Code

public function getStyle() {
  return $this
    ->getWorksheet()
    ->getStyle($this
    ->getCoordinate());
}