getPosition(); } /** * Set Tab Position * * @param int|float $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 int|float */ public function getIndent() { return $this->indent; } /** * Set Indent * * @param int|float $value * @return self */ public function setIndent($value) { $this->indent = $this->setNumericVal($value, $this->indent); return $this; } }