Class View.KeyEventEventArgs
Defines the event arguments for KeyEvent
Inherited Members
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class View.KeyEventEventArgs : EventArgs
Constructors
| Edit this page View SourceKeyEventEventArgs(KeyEvent)
Constructs.
Declaration
public KeyEventEventArgs(KeyEvent ke)
Parameters
| Type | Name | Description |
|---|---|---|
| KeyEvent | ke |
Properties
| Edit this page View SourceHandled
Indicates if the current Key event has already been processed and the driver should stop notifying any other event subscriber.
Its important to set this value to true specially when updating any View's layout from inside the subscriber method.
Declaration
public bool Handled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
KeyEvent
The KeyEvent for the event.
Declaration
public KeyEvent KeyEvent { get; set; }
Property Value
| Type | Description |
|---|---|
| KeyEvent |