public void Type(string textToType)
 {
     inputSystem.Type(textToType);
     Wait(.2);
 }
Beispiel #2
0
 /// <summary>
 /// Send the string to the system window
 /// ^ will add the control key
 /// {Enter} will type the enter key
 /// {BACKSPACE} will type the backspace key
 /// </summary>
 /// <param name="textToType"></param>
 public void Type(string textToType)
 {
     inputSystem.Type(textToType);
     Delay(.2);
 }