Package provided.owlMaps.mouse
Interface IComponentMouseDragEventObject
- All Known Subinterfaces:
ICircle
,ICircleWrapped
,IMarker
,IMarkerWrapped
,IPolygon
,IPolygonWrapped
,IPolyline
,IPolylineWrapped
,IRectangle
,IRectangleWrapped
public interface IComponentMouseDragEventObject
Represents a map component that responds to mouse drag events
- Author:
- swong
-
Method Summary
Modifier and Type Method Description void
setComponentMouseDragEvent(ComponentMouseDragEventType eventType, java.util.function.Consumer<IMouseEvent> eventFn)
Set the given ComponentMouseDragEventType event to invoke the given event handler function
-
Method Details
-
setComponentMouseDragEvent
void setComponentMouseDragEvent(ComponentMouseDragEventType eventType, java.util.function.Consumer<IMouseEvent> eventFn)Set the given ComponentMouseDragEventType event to invoke the given event handler function- Parameters:
eventType
- The desired event typeeventFn
- The event handler function to invoke when the event occurs.
-