IKeyboardEvent
This interface describes the data used by keyboard events.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Interface
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
public interface IKeyboardEvent
Remarks
Refer to the Keyboard events manual page for more information and examples.
Additional Resources: KeyDownEvent, KeyUpEvent
Properties
Property | Description |
|---|---|
| actionKey | Gets a boolean value that indicates whether the platform-specific action key is pressed. |
| altKey | Gets a boolean value that indicates whether the Alt key is pressed. |
| character | Gets the character entered. |
| commandKey | Gets a boolean value that indicates whether the Windows/Cmd key is pressed. |
| ctrlKey | Gets a boolean value that indicates whether the Ctrl key is pressed. |
| keyCode | The key code. |
| modifiers | Gets flags that indicate whether modifier keys (Alt, Ctrl, Shift, Windows/Cmd) are pressed. |
| shiftKey | Gets a boolean value that indicates whether the Shift key is pressed. |