UIAutomation.Wizard.ClearStepsData C# (CSharp) Method

ClearStepsData() public method

public ClearStepsData ( ) : void
return void
        public void ClearStepsData()
        {
            foreach (WizardStep step in Steps) {
                
                step.StepForwardAction = null;
                step.StepBackwardAction = null;
            }
        }
        

Same methods

Wizard::ClearStepsData ( bool forward, bool backward ) : void