Struct DropdownKeyboardEventArgs
- Namespace
- BlazOrbit.Components.Forms
- Assembly
- BlazOrbit.dll
Provides keyboard event data for dropdown interactions.
public readonly struct DropdownKeyboardEventArgs
Constructors
DropdownKeyboardEventArgs(string, bool, bool)
Provides keyboard event data for dropdown interactions.
public DropdownKeyboardEventArgs(string Key, bool ShiftKey, bool CtrlKey)
Parameters
KeystringThe key that was pressed.
ShiftKeyboolWhether the Shift key was held.
CtrlKeyboolWhether the Control key was held.
Properties
CtrlKey
Whether the Control key was held.
public bool CtrlKey { get; init; }
Property Value
- bool
Key
The key that was pressed.
public string Key { get; init; }
Property Value
- string
ShiftKey
Whether the Shift key was held.
public bool ShiftKey { get; init; }
Property Value
- bool