aspnetcore-js-devexpress-dot-richedit-9e01b84d.md
Contains data for the KeyDown and KeyUp events.
export class KeyboardEventArgs extends EventArgs
The KeyDown and KeyUp event handlers receive an argument of the KeyboardEventArgs type. The argument’s properties provide information specific to these events.
EventArgs KeyboardEventArgs
Specifies whether the event is handled.
handled: boolean
| Type | Description |
|---|---|
| boolean |
true , if the event is handled and further processing is not required; otherwise false.
|
Gets a DHTML event object that relates to the processed event.
htmlEvent: KeyboardEvent
| Type | Description |
|---|---|
| KeyboardEvent |
An object that maintains DHTML event-specific information.
|
Use the htmlEvent property to access an object that contains DHTML event information (such as the HTML element in which the event occurred, the state of the keyboard keys, the location of the mouse, the state of the mouse buttons, etc.).