Search
InteractionState.Update Method
See Also
 





This method is invoked to update the interaction state, usually in response to the user moving the mouse after the modification has started.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public bool Update (
    Point point,
    Diagram diagram
)

Visual Basic  Copy Code

Public Function Update( _
    point As Point, _
    diagram As Diagram _
) As Boolean

 Parameters

point
A .NET Point instance indicating the location of the cursor, in document coordinates.
diagram
The Diagram, at which the interaction is performed.

 Return Value

true if the update has been successful; otherwise, false.

 See Also