You are here

public function PHPExcel_Style_Font::getSize in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php \PHPExcel_Style_Font::getSize()

* Get Size * *

Return value

double

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php, line 262

Class

PHPExcel_Style_Font
PHPExcel_Style_Font

Code

public function getSize() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getSize();
  }
  return $this->_size;
}