tblHeader = $pValue; return $this; } /** * Get tblHeader * * @return boolean */ public function getTblHeader() { return $this->tblHeader; } /** * Set cantSplit * * @param boolean $pValue * @return $this */ public function setCantSplit($pValue = false) { if (!is_bool($pValue)) { $pValue = false; } $this->cantSplit = $pValue; return $this; } /** * Get cantSplit * * @return boolean */ public function getCantSplit() { return $this->cantSplit; } /** * Set exactHeight * * @param bool $pValue * @return $this */ public function setExactHeight($pValue = false) { if (!is_bool($pValue)) { $pValue = false; } $this->exactHeight = $pValue; return $this; } /** * Get exactHeight * * @return boolean */ public function getExactHeight() { return $this->exactHeight; } }