Raised when a node becomes the ActiveItem.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public event EventHandler<NodeEventArgs> NodeActivated |
Visual Basic
Copy Code
|
|---|
Public Event NodeActivated As EventHandler(Of NodeEventArgs) |
Event DataNodeActivated 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 become the ActiveItem. |
RemarksWhen this event is raised, ActiveItem already refers to the activated node. If multiple-selection is disabled, the active item is the only item selected by the user; otherwise usually it is the one added last to the selection.
See Also