Habanero.Faces.Base.WizardController.CancelWizard C# (CSharp) Method

CancelWizard() public method

This provides a method which is called when the wizard is cancelled. The wizard controller can undo any changes that have occured up until that point so as to ensure that the objects are returned to their original state.
public CancelWizard ( ) : void
return void
        public virtual void CancelWizard()
        {
            foreach (IWizardStep step in WizardSteps)
            {
                step.CancelStep();
            }
        }