object.SendKeys(keys)
object.SendKeys(keys)
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. |
VB
rumbaScreen.SendKeys(RumbaKey.Tab)is equivalent to
rumbaScreen.SendKeys("@T");
RumbaKey constants can be combined with regular strings:
rumbaScreen.SendKeys("someone" & RumbaKey.At & "example.com");For all available constants see the class RumbaKey.