You are here

public function PHPExcel_Style_NumberFormat::getFormatCode in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php \PHPExcel_Style_NumberFormat::getFormatCode()

* Get Format Code * *

Return value

string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php, line 185

Class

PHPExcel_Style_NumberFormat
PHPExcel_Style_NumberFormat

Code

public function getFormatCode() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getFormatCode();
  }
  if ($this->_builtInFormatCode !== false) {
    return self::builtInFormatCode($this->_builtInFormatCode);
  }
  return $this->_formatCode;
}