You are here

public function PHPExcel_Style_Font::getSubScript in Loft Data Grids 6.2

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

* Get SubScript * *

Return value

boolean

File

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

Class

PHPExcel_Style_Font
PHPExcel_Style_Font

Code

public function getSubScript() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getSubScript();
  }
  return $this->_subScript;
}