Interface for an object that can be used to drag something
displayed in a CanvasControl
Namespace: yWorks.Canvas.InputAssembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2
Syntax
| C# |
|---|
public interface IDragHandler |
| Visual Basic |
|---|
Public Interface IDragHandler |
Remarks
Items can be dragged with the mouse and an instance of this class will modify their position
accordingly.
A drag will trigger the invocation of
InitializeDrag(IInputModeContext), zero or more HandleMove(IInputModeContext, PointD, PointD) calls, and
will be finalized
by either DragFinished(IInputModeContext, PointD, PointD) or CancelDrag(IInputModeContext, PointD).