Prado\Web\UI\WebControls\TWizard::getSideBarStyle PHP 메소드

getSideBarStyle() 공개 메소드

public getSideBarStyle ( ) : TPanelStyle
리턴 TPanelStyle the style for the side bar.
    public function getSideBarStyle()
    {
        if (($style = $this->getViewState('SideBarStyle', null)) === null) {
            $style = new TPanelStyle();
            $this->setViewState('SideBarStyle', $style, null);
        }
        return $style;
    }
TWizard