Class
RumbaObject class
Action
Synchronously sends keys. Supports RDE mnemonics.
Syntax
object.SynchSendKeys(keys, [screenUpdateWaitCount, timeout])
Variable |
Description |
keys |
The keys to send. The Rumba keyboard mnemonics can be used in this string. For additional information about the Rumba keyboard
mnemonics, refer to the RDE .NET Help. STRING.
|
screenUpdateWaitCount |
Optional.The number of screen updates that need to be awaited until the new screen is ready for further interaction. INTEGER. |
timeout |
Optional.The timeout in milliseconds. If set to 0, the Rumba APIs default timeout (currently 10000ms) is used. INTEGER. |
Examples
The line
rumbaScreen.SynchSendKeys(RK_PF3)
is equivalent to
rumbaScreen.SynchSendKeys("@3");
RumbaKey constants can be combined with regular strings:
rumbaScreen.SynchSendKeys("someone{RK_AT}example.com{RK_ENTER}");
For all available constants see the include file RumbaDataTypes.inc.