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
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Update (
    PointF point,
    Diagram diagram
)

Visual Basic  Copy Code

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

 Parameters

point

A .NET PointF 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