Protocol
MouseUpHandler
public protocol MouseUpHandler : EventHandler
A type conforming to MouseUpHandler is capable of receiving
mouse up events through the onMouseUp method.
Before receiving events, it must be registered with the dispatcher via the registerMouseUpHandler method. Similarly, it should be unregistered before deinitialization via the unregisterMouseUpHandler method available through the dispatcher.
Relationships
Conforms To
EventHandlerAn
Eventhandleris a type capable of being registered with theDispatcherto receive events of a certain type.
Requirements
onMouseUp(globalLocation:)
func onMouseUp(globalLocation:Point)