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;
        }