columnIndex = $pIndex; // set dimension as unformatted by default parent::__construct(0); } /** * Get column index as string eg: 'A'. * * @return string */ public function getColumnIndex() { return $this->columnIndex; } /** * Set column index as string eg: 'A'. * * @param string $pValue * * @return $this */ public function setColumnIndex($pValue) { $this->columnIndex = $pValue; return $this; } /** * Get Width. * * @return float */ public function getWidth() { return $this->width; } /** * Set Width. * * @param float $pValue * * @return $this */ public function setWidth($pValue) { $this->width = $pValue; return $this; } /** * Get Auto Size. * * @return bool */ public function getAutoSize() { return $this->autoSize; } /** * Set Auto Size. * * @param bool $pValue * * @return $this */ public function setAutoSize($pValue) { $this->autoSize = $pValue; return $this; } }