Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
getPosition(); } /** * Set Tab Position. * * @param float|int $value * * @return self */ public function setTabPos($value) { return $this->setPosition($value); } /** * Get Tab Leader. * * @return string */ public function getTabLeader() { return $this->getLeader(); } /** * Set Tab Leader. * * @param string $value * * @return self */ public function setTabLeader($value = self::TAB_LEADER_DOT) { return $this->setLeader($value); } /** * Get Indent. * * @return float|int */ public function getIndent() { return $this->indent; } /** * Set Indent. * * @param float|int $value * * @return self */ public function setIndent($value) { $this->indent = $this->setNumericVal($value, $this->indent); return $this; } }