A validation event raised when the user starts modifying a node.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public event EventHandler<NodeValidationEventArgs> NodeStartModifying |
Visual Basic
Copy Code
|
|---|
Public Event NodeStartModifying As EventHandler(Of NodeValidationEventArgs) |
Event DataNodeStartModifying event handlers receive an argument of type NodeValidationEventArgs. The following NodeValidationEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
The DiagramNode that the user is starting to modify. | |
A PointF specifying the mouse cursor position. | |
The adjustment handle that is going to be moved. | |
Set this property to true to prevent the user from starting the node modification. |
See Also