BExIS.Dcm.Wizard.StepInfo.StepInfo C# (CSharp) Method

StepInfo() public method

public StepInfo ( string title ) : System
title string
return System
        public StepInfo(string title)
        {
            this.title = title;
            this.parentTitle = "";
            this.stepStatus = StepStatus.none;
            this.GetActionInfo = new ActionInfo();
            this.PostActionInfo = new ActionInfo();
            this.Children = new List<StepInfo>();
            this.HasContent = true;
            this.IsInstanze = true;
            this.Expand = false;
        }