bIsMultiple = false; } public function AddOption(SelectOption $oOption) { $this->AddSubBlock($oOption); } public function GetName(): string { return $this->sName; } /** * @param string $sName * * @return $this */ public function SetName(string $sName) { $this->sName = $sName; return $this; } public function GetValue(): ?string { return $this->sValue; } /** * @param string|null $sValue * * @return $this */ public function SetValue(?string $sValue) { $this->sValue = $sValue; return $this; } /** * @return bool */ public function GetSubmitOnChange(): bool { return $this->bSubmitOnChange; } /** * @param bool $bSubmitOnChange * * @return $this */ public function SetSubmitOnChange(bool $bSubmitOnChange) { $this->bSubmitOnChange = $bSubmitOnChange; return $this; } /** * @return bool */ public function IsMultiple(): bool { return $this->bIsMultiple; } /** * @param bool $bIsMultiple */ public function SetIsMultiple(bool $bIsMultiple): void { $this->bIsMultiple = $bIsMultiple; } }