You are here

public function PHPExcel_Style_Supervisor::bindParent in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php \PHPExcel_Style_Supervisor::bindParent()

* Bind parent. Only used for supervisor * *

Parameters

PHPExcel $parent: * @return PHPExcel_Style_Supervisor

2 methods override PHPExcel_Style_Supervisor::bindParent()
PHPExcel_Style_Border::bindParent in vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php
* Bind parent. Only used for supervisor * *
PHPExcel_Style_Color::bindParent in vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php
* Bind parent. Only used for supervisor * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php, line 71

Class

PHPExcel_Style_Supervisor
PHPExcel_Style_Supervisor

Code

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