HomeGuidesAPI Reference
HubBlogChangelogSupport ForumLog In
API Reference

Web SDK - HeldKeys

Home > @rainway/web > HeldKeys

HeldKeys class

An interface for querying which keyboard keys are currently held down (locally, on the web page).

Signature:

export declare class HeldKeys 

Remarks

The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the HeldKeys class.

Properties

PropertyModifiersTypeDescription
altbooleanReports whether either Alt key is pressed.
ctrlbooleanReports whether either Ctrl key is pressed.
keysReadonlySet<VirtualKey>Returns all held keys as a ReadonlySet.
shiftbooleanReports whether either Shift key is pressed.
winbooleanReports whether either Windows/Meta key is pressed.

Methods

MethodModifiersDescription
has(key)Reports whether the given VirtualKey is pressed.