Nette\Forms\Controls\TextBase::setEmptyValue PHP Method

setEmptyValue() public method

Sets the special value which is treated as empty string.
public setEmptyValue ( $value ) : self
return self
    public function setEmptyValue($value)
    {
        $this->emptyValue = (string) $value;
        return $this;
    }