The setHandler method of the DragProxy Class contains the following signatures:
setHandler(DragHandler handler)
setHandler(DragHandler handler, int xOffset, int yOffset)
Sets the drag handler for the DragProxy object.
public void setHandler(DragHandler handler);
handler | The new handler for the DragProxy object. |
Sets the drag handler and the x and y offsets for the DragProxy object.
public void setHandler(DragHandler handler, int xOffset, int yOffset);
handler | The new handler for the DragProxy object. |
xOffset | The new x offset for the DragProxy object. |
yoffset | The new y offset for the DragProxy object. |