Raised when a link becomes the ActiveItem.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public event EventHandler<LinkEventArgs> LinkActivated |
Visual Basic
Copy Code
|
|---|
Public Event LinkActivated As EventHandler(Of LinkEventArgs) |
Event DataLinkActivated event handlers receive an argument of type LinkEventArgs. The following LinkEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
The DiagramLink that has become the ActiveItem. |
RemarksWhen the event is raised, ActiveItem already refers to the activated link. If multiple-selection is disabled, the active item is the only item selected by the user; otherwise it is usually the one added last to the selection.
See Also