tabPos = 9062; $this->tabLeader = self::TABLEADER_DOT; $this->indent = 200; } /** * Get Tab Position * * @return int */ public function getTabPos() { return $this->tabPos; } /** * Set Tab Position * * @param int $pValue */ public function setTabPos($pValue) { $this->tabPos = $pValue; } /** * Get Tab Leader * * @return string */ public function getTabLeader() { return $this->tabLeader; } /** * Set Tab Leader * * @param string $pValue */ public function setTabLeader($pValue = self::TABLEADER_DOT) { $this->tabLeader = $pValue; } /** * Get Indent * * @return int */ public function getIndent() { return $this->indent; } /** * Set Indent * * @param string $pValue */ public function setIndent($pValue) { $this->indent = $pValue; } }