layout: default title: KeyUpEvent parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Events

KeyUpEvent Class

Fires after a keyboard key is released.

public class KeyUpEvent : dymaptic.GeoBlazor.Core.Events.JsEvent,
System.IEquatable<dymaptic.GeoBlazor.Core.Events.KeyUpEvent>

Inheritance System.Object 🡒 JsEvent 🡒 KeyUpEvent

Implements System.IEquatable<KeyUpEvent>

Constructors

KeyUpEvent(string, Nullable, Nullable, string, double, DomPointerEvent, Nullable) Constructor

Fires after a keyboard key is released.

public KeyUpEvent(string Type, System.Nullable<int> EventId, System.Nullable<bool> Cancelable, string Key, double Timestamp, dymaptic.GeoBlazor.Core.Events.DomPointerEvent Native, System.Nullable<dymaptic.GeoBlazor.Core.Events.PointerType> PointerType);

Parameters

Type System.String

The event type.

EventId System.Nullable<System.Int32>

The unique Id of the event.

Cancelable System.Nullable<System.Boolean>

Whether the event can be cancelled once begun.

Key System.String

The key value that was pressed, according to the

.htmlN
full list of key values

.

Timestamp System.Double

Time stamp (in milliseconds) at which the event was emitted.

Native DomPointerEvent

A standard DOM Pointer Event

PointerType System.Nullable<PointerType>

Indicates the pointer type.

Properties

KeyUpEvent.Key Property

The key value that was pressed, according to the

.htmlN
full list of key values

.

public string Key { get; set; }

Property Value

System.String