tblHeader; } /** * Is tblHeader * * @param bool $value * @return self */ public function setTblHeader($value = true) { $this->tblHeader = $this->setBoolVal($value, $this->tblHeader); return $this; } /** * Is cantSplit * * @return bool */ public function isCantSplit() { return $this->cantSplit; } /** * Is cantSplit * * @param bool $value * @return self */ public function setCantSplit($value = true) { $this->cantSplit = $this->setBoolVal($value, $this->cantSplit); return $this; } /** * Is exactHeight * * @return bool */ public function isExactHeight() { return $this->exactHeight; } /** * Set exactHeight * * @param bool $value * @return self */ public function setExactHeight($value = true) { $this->exactHeight = $this->setBoolVal($value, $this->exactHeight); return $this; } /** * Get tblHeader * * @deprecated 0.10.0 * * @codeCoverageIgnore */ public function getTblHeader() { return $this->isTblHeader(); } /** * Get cantSplit * * @deprecated 0.10.0 * * @codeCoverageIgnore */ public function getCantSplit() { return $this->isCantSplit(); } /** * Get exactHeight * * @deprecated 0.10.0 * * @codeCoverageIgnore */ public function getExactHeight() { return $this->isExactHeight(); } }