Table of Contents

Delegate KeyboardEvent

Namespace
MudBlazor.Services
Assembly
MudBlazor.dll

Represents a method that will handle keyboard events.

public delegate void KeyboardEvent(KeyboardEventArgs args)

Parameters

args KeyboardEventArgs

The KeyboardEventArgs instance containing the event data.

Extension Methods

Constructors

KeyboardEvent(object, nint)

public KeyboardEvent(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(KeyboardEventArgs, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(KeyboardEventArgs args, AsyncCallback callback, object @object)

Parameters

args KeyboardEventArgs
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(KeyboardEventArgs)

public virtual void Invoke(KeyboardEventArgs args)

Parameters

args KeyboardEventArgs