Search
DiagramView.StartInteraction Method
See Also
 





Starts the specified interactive operation. Subsequent mouse movements will modify or create the item specified through the InteractionState instance.

Namespace: MindFusion.Diagramming.WinForms
Assembly: MindFusion.Diagramming.WinForms

 Syntax

C#  Copy Code

public void StartInteraction (
    InteractionState interactionState,
    PointF point
)

Visual Basic  Copy Code

Public Sub StartInteraction( _
    interactionState As InteractionState, _
    point As PointF _
)

 Parameters

interactionState
An InteractionState instance specifying what operation to perform.
point
Start point for the operation.

 Remarks

By default interactive actions are carried out by pressing a mouse button and dragging. Invoke this method from an appropriate event handler to let users start an operation in a different manner, such as pressing a keyboard key or clicking the mouse button.

 See Also