IKeyboardDevice Interface

An interface that provides low-level keyboard operations.

C# Syntax

                        
                            public interface IKeyboardDevice 
Public Methods
 NameDescription
MethodKeyDownOverloaded. Presses and holds the specified key.
MethodKeyUpOverloaded. Releases the specified key.
MethodPressKeyOverloaded. Presses the specified key.
MethodSendString

Types the specified string.

C# Syntax

                            void SendString( 
   string stringToSend
)

Parameters

stringToSend
The string to type.
Top