Raised when the user moves or resizes a node.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public event EventHandler<NodeEventArgs> NodeModified |
Visual Basic
Copy Code
|
|---|
Public Event NodeModified As EventHandler(Of NodeEventArgs) |
Event DataNodeModified event handlers receive an argument of type NodeEventArgs. The following NodeEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
The DiagramNode that has been modified. | |
A PointF specifying the mouse cursor position. | |
The adjustment handle that has been moved. |
RemarksNodeModified is not raised if the node position is changed programmatically. The event occurs only when the user has dragged an adjustment handle to a new position.
See Also