API Reference 0.3.24dart_web_toolkit_eventKeyPressHandler

KeyPressHandler abstract class

Handler interface for {@link KeyPressEvent} events.

abstract class KeyPressHandler extends EventHandler {

 /**
  * Called when KeyPressEvent is fired.
  *
  * @param event the {@link KeyPressEvent} that was fired
  */
 void onKeyPress(KeyPressEvent event);
}

Extends

EventHandler > KeyPressHandler

Subclasses

KeyPressHandlerAdapter

Methods

abstract void onKeyPress(KeyPressEvent event) #

Called when KeyPressEvent is fired.

@param event the {@link KeyPressEvent} that was fired