sName = $sName; $this->sValue = $sValue; $this->iCols = $iCols; $this->iRows = $iRows; $this->bIsDisabled = false; } public function GetCols(): ?int { return $this->iCols; } /** * @param int $iCols * * @return $this */ public function SetCols(int $iCols) { $this->iCols = $iCols; return $this; } public function GetRows(): ?int { return $this->iRows; } /** * @param int $iRows * * @return $this */ public function SetRows(int $iRows) { $this->iRows = $iRows; return $this; } /** * @return bool */ public function IsDisabled(): bool { return $this->bIsDisabled; } /** * @param bool $bIsDisabled * * @return $this */ public function SetIsDisabled(bool $bIsDisabled) { $this->bIsDisabled = $bIsDisabled; return $this; } }