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; } }