ATGTestInput.Input.SendUnicodeString C# (CSharp) Method

SendUnicodeString() public static method

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
return void
        public static void SendUnicodeString(string data)
        {
            InternalSendUnicodeString(data, -1, 0);
        }

Same methods

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