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

getWizardSteps() public method

public getWizardSteps ( ) : TWizardStepCollection
return TWizardStepCollection collection of wizard steps
    public function getWizardSteps()
    {
        if ($this->_wizardSteps === null) {
            $this->_wizardSteps = new TWizardStepCollection($this);
        }
        return $this->_wizardSteps;
    }
TWizard