You are here

public function PHPExcel_Style_Color::getARGB in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php \PHPExcel_Style_Color::getARGB()

* Get ARGB * *

Return value

string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php, line 183

Class

PHPExcel_Style_Color
PHPExcel_Style_Color

Code

public function getARGB() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getARGB();
  }
  return $this->_argb;
}