sendkeys class : SendWait(string) method
This method was abolished in Ver 1.0.0.1.
Description
Sends keystrokes to the active application.
Syntax
sendkeysInstance.SendWait(string keys)
Arguments
| Class | Name | Description |
| string | keys | the keystrokes that will be send. |
Return value
None
Sample code
| 1: | sendkeys sk = new sendkeys(); |
| 2: | sk.SendWait("{ENTER}"); |
Notes
It's a wrapper of the System.Windows.Forms.SendKeys.SendWait(String) method.
This method waits until the message is processed.
This method was abolished in Ver 1.0.0.1.


