Prado\Web\UI\ActiveControls\TScalarDiff::getDifference PHP 메소드

getDifference() 공개 메소드

public getDifference ( ) : mixed
리턴 mixed update viewstate value.
    public function getDifference()
    {
        if (gettype($this->_new) === gettype($this->_old) && $this->_new === $this->_old) {
            return $this->_null;
        } else {
            return $this->_new;
        }
    }
TScalarDiff