You are here

public function PHPExcel_Style_Fill::getFillType in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php \PHPExcel_Style_Fill::getFillType()

* Get Fill Type * *

Return value

string

1 call to PHPExcel_Style_Fill::getFillType()
PHPExcel_Style_Fill::getHashCode in vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php
* Get hash code * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php, line 194

Class

PHPExcel_Style_Fill
PHPExcel_Style_Fill

Code

public function getFillType() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getFillType();
  }
  return $this->_fillType;
}