getPosition(); } /** * Set Tab Position * * @param int $value */ public function setTabPos($value) { $this->setPosition($value); } /** * Get Tab Leader * * @return string */ public function getTabLeader() { return $this->getLeader(); } /** * Set Tab Leader * * @param string $value */ public function setTabLeader($value = self::TABLEADER_DOT) { $this->setLeader($value); } /** * Get Indent * * @return int */ public function getIndent() { return $this->indent; } /** * Set Indent * * @param string $value */ public function setIndent($value) { $this->indent = $value; } }