Example #1
0
 /**
  * Has Hyperlink
  *
  * @return boolean
  */
 public function hasHyperlink()
 {
     if (!isset($this->_parent)) {
         throw new Exception('Cannot check for hyperlink when cell is not bound to a worksheet');
     }
     return $this->_parent->hyperlinkExists($this->getCoordinate());
 }