Prado\Web\UI\TClientSideOptions::getOption PHP Method

getOption() protected method

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