Search
DiagramBase.LinkActivated Event
See Also
 





Raised when a link becomes the ActiveItem.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<LinkEventArgs> LinkActivated

Visual Basic  Copy Code

Public Event LinkActivated As EventHandler(Of LinkEventArgs)

 Event Data

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

Member name

Description

Link

The DiagramLink that has become the ActiveItem.

 Remarks

When 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