$key = $value; } /** * Set tblHeader * * @param boolean $pValue * @return $this */ public function setTblHeader($pValue = false) { if (!is_bool($pValue)) { $pValue = false; } $this->_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; } }