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