You are here

public function PHPExcel_Style_Color::bindParent in Loft Data Grids 6.2

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

* Bind parent. Only used for supervisor * *

Parameters

mixed $parent: * @param string $parentPropertyName * @return PHPExcel_Style_Color

Overrides PHPExcel_Style_Supervisor::bindParent

File

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

Class

PHPExcel_Style_Color
PHPExcel_Style_Color

Code

public function bindParent($parent, $parentPropertyName = NULL) {
  $this->_parent = $parent;
  $this->_parentPropertyName = $parentPropertyName;
  return $this;
}