Example #1
0
 /**
  * Get Hyperlink
  *
  * @throws Exception
  * @return PHPExcel_Cell_Hyperlink
  */
 public function getHyperlink()
 {
     if (!isset($this->_parent)) {
         throw new Exception('Cannot get hyperlink for cell that is not bound to a worksheet');
     }
     return $this->_parent->getHyperlink($this->getCoordinate());
 }