Canguro.Controller.CommandServices.GetString C# (CSharp) 메소드

GetString() 공개 메소드

Method to get a text string from the user
public GetString ( string prompt ) : string
prompt string Text displayed on the SmallPanel, as instructions to the user
리턴 string
        public string GetString(string prompt)
        {
            controller.MainFrm.SmallPanel.Start(controller.ModelCommand.Title, prompt, 20, "");
            wait(WaitingFor.Text, true);

            return (string)waitingObj;
        }