Class DragAndDropArgs

java.lang.Object
com.hp.lft.sdk.DragAndDropArgs

public class DragAndDropArgs extends Object
Class defining the behavior for drag and drop operations.
  • Constructor Details

    • DragAndDropArgs

      public DragAndDropArgs()
      Initializes a new instance of the DragAndDropArgs class.
  • Method Details

    • getDragFromLocation

      public Location getDragFromLocation()
      Returns the point on the source object where the drag operation begins. Default is the center of the object.
      Returns:
      the the point on the source object where the drag operation begins.
    • setDragFromLocation

      public void setDragFromLocation(Location dragFromLocation)
      Sets the point on the source object where the drag operation begins.
      Parameters:
      dragFromLocation - the point on the source object where the drag operation begins.
    • getDropOnLocation

      public Location getDropOnLocation()
      Returns the point on the source object where the drag operation ends. Default is the center of the object.
      Returns:
      the the point on the source object where the drag operation ends.
    • setDropOnLocation

      public void setDropOnLocation(Location dropOnLocation)
      Sets the point on the source object where the drag operation ends.
      Parameters:
      dropOnLocation - the point on the source object where the drag operation ends.
    • getMouseButtonClicked

      public MouseButton getMouseButtonClicked()
      Returns the mouse button used to drag this object.
      Returns:
      the mouse button used to drag this object.
    • setMouseButtonClicked

      public void setMouseButtonClicked(MouseButton mouseButtonClicked)
      Sets the mouse button used to drag this object.
      Parameters:
      mouseButtonClicked - the mouse button used to drag this object.