public interface HasMouseOutHandlers extends HasHandlers
Modifier and Type | Method and Description |
---|---|
HandlerRegistration |
addMouseOutHandler(MouseOutHandler handler)
Executed when the mouse leaves this widget.
|
fireEvent
HandlerRegistration addMouseOutHandler(MouseOutHandler handler)
Note that if the mouse goes over a child of
this canvas, the mouseOut event will fire as it would if the user rolled entirely off the canvas. Developers may
determine whether the mouse is still over a descendant of this component via containsEventTarget()
.
handler
- the mouseOut handlerHandlerRegistration
used to remove this handler