Prado\Web\UI\TClientSideOptions::getOption PHP 메소드

getOption() 보호된 메소드

protected getOption ( $name ) : string
리턴 string gets a particular option, null if not set.
    protected function getOption($name)
    {
        if ($this->_options) {
            return $this->_options->itemAt($name);
        } else {
            return null;
        }
    }