You are here

public function PHPExcel_Style_NumberFormat::getBuiltInFormatCode in Loft Data Grids 7.2

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

* Get Built-In Format Code * *

Return value

int

File

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

Class

PHPExcel_Style_NumberFormat
PHPExcel_Style_NumberFormat

Code

public function getBuiltInFormatCode() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getBuiltInFormatCode();
  }
  return $this->_builtInFormatCode;
}