Prado\Web\UI\WebControls\TWizard::getStepStyle PHP Method

getStepStyle() public method

public getStepStyle ( ) : TPanelStyle
return TPanelStyle the style for each internal wizard step.
    public function getStepStyle()
    {
        if (($style = $this->getViewState('StepStyle', null)) === null) {
            $style = new TPanelStyle();
            $this->setViewState('StepStyle', $style, null);
        }
        return $style;
    }
TWizard