Prado\Web\UI\WebControls\TWizardStepCollection::removeAt PHP Method

removeAt() public method

Removes an item at the specified position.
public removeAt ( $index ) : mixed
return mixed the removed item.
    public function removeAt($index)
    {
        $step = parent::removeAt($index);
        $this->_wizard->getMultiView()->getViews()->remove($step);
        $this->_wizard->removedWizardStep($step);
        return $step;
    }