The DragProxy Class contains the following constructors:
DragProxy()
DragProxy(DragHandler handler)
DragProxy(DragHandler handler, int xOffset, int yOffset)
Creates a new DragProxy object.
public DragProxy();
Creates a new DragProxy object that has the specified drag handler.
public DragProxy(DragHandler handler);
handler | The drag handler to assign to the DragProxy instance. |
Creates a new DragProxy object that has the specified drag handler, x offset, and y offset.
public DragProxy(DragHandler handler, int xOffset, int yOffset);
handler | The drag handler for the DragProxy object. |
xOffset | The x offset for the DragProxy object. |
yOffset | The y offset for the DragProxy object. |