Prado\Web\UI\WebControls\THotSpot::getViewState PHP 메소드

getViewState() 보호된 메소드

This function is very useful in defining getter functions for component properties that must be kept in viewstate.
protected getViewState ( $key, $defaultValue = null ) : mixed
리턴 mixed the viewstate value corresponding to $key
    protected function getViewState($key, $defaultValue = null)
    {
        return isset($this->_viewState[$key]) ? $this->_viewState[$key] : $defaultValue;
    }