keyUpEventList

Returns the list of key up events of the control.

Signatures

  •   ParamateControls.<ControlName>.keyUpEventList

(getter)

Example

 const keyUpEvents =  ParamateControls.<ControlName>.keyUpEventList;
 

Return value

A list of objects that represent the key up event handler:

[
   {
     key: string, // Keyboard key (e.g., 'K')
     callback: (e) => void (e.g., (e) => console.log(e.code))
    },
   ...
]