sValue = $sValue; $this->iCols = $iCols; $this->iRows = $iRows; } public function GetCols(): int { return $this->iCols; } public function SetCols(int $iCols): TextArea { $this->iCols = $iCols; return $this; } public function GetRows(): int { return $this->iRows; } public function SetRows(int $iRows): TextArea { $this->iRows = $iRows; return $this; } }