Table of Contents

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

Key string

The key that was pressed.

ShiftKey bool

Whether the Shift key was held.

CtrlKey bool

Whether 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