Click or drag to resize

IKeyboard Interface

A service that can be used for keyboard input simulation and handling.

Namespace:  DotNetBrowser.Input.Keyboard
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
public interface IKeyboard : IAutoDisposable

The IKeyboard type exposes the following members.

Properties
  NameDescription
Public propertyIsDisposed
Indicates if the object is already disposed.
(Inherited from IAutoDisposable.)
Public propertyKeyPressed
Occurs when a key is pressed for the browser. This corresponds to KeyDown event of WPF and WinForms controls.
Public propertyKeyReleased
Occurs when a key is released for the browser. This corresponds to KeyUp event of WPF and WinForms controls.
Public propertyKeyTyped
Occurs when a control code, character, space, enter or backspace key is pressed for the browser. This corresponds to KeyPress event of WinForms controls.
Top
Events
  NameDescription
Public eventDisposed
Occurs when the object has been disposed.
(Inherited from IAutoDisposable.)
Top
See Also