Search
DiagramBase.ShapeModified Event
See Also
 





Raised when the user modifies the shape of a ShapeNode by moving one of the control points corresponding to shape formula parameters.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<ControlPointEventArgs> ShapeModified

Visual Basic  Copy Code

Public Event ShapeModified As EventHandler(Of ControlPointEventArgs)

 Event Data

ShapeModified event handlers receive an argument of type ControlPointEventArgs. The following ControlPointEventArgs members provide information relevant to the event:

Member name

Description

ControlPoint

Gets the ShapeControlPoint used to modify the node's shape.

NewValue

Gets the new position of the control point.

Node

Gets the ShapeNode whose Shape has been modified.

OldValue

Gets the original position of the control point.

 See Also