$key = $value; } /** * Set tblHeader * * @param boolean $pValue * @return PHPWord_Style_Row */ 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 PHPWord_Style_Row */ 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; } }