ATGTestInput.Input.SendUnicodeString C# (CSharp) 메소드

SendUnicodeString() 공개 정적인 메소드

Injects a string of Unicode characters using simulated keyboard input It should be noted that this overload just sends the whole string with no pauses, depending on the recieving applications input processing it may not be able to keep up with the speed, resulting in corruption or loss of the input data.
public static SendUnicodeString ( string data ) : void
data string The unicode string to be sent
리턴 void
        public static void SendUnicodeString(string data)
        {
            InternalSendUnicodeString(data, -1, 0);
        }

Same methods

Input::SendUnicodeString ( string data, int sleepFrequency, int sleepLength ) : void