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