tblHeader = $this->setBoolVal($value, $this->tblHeader); } /** * Get tblHeader * * @return boolean */ public function getTblHeader() { return $this->tblHeader; } /** * Set cantSplit * * @param boolean $value * @return self */ public function setCantSplit($value = false) { $this->cantSplit = $this->setBoolVal($value, $this->cantSplit); } /** * Get cantSplit * * @return boolean */ public function getCantSplit() { return $this->cantSplit; } /** * Set exactHeight * * @param bool $value * @return self */ public function setExactHeight($value = false) { $this->exactHeight = $this->setBoolVal($value, $this->exactHeight); return $this; } /** * Get exactHeight * * @return boolean */ public function getExactHeight() { return $this->exactHeight; } }