Search
LinkLabel Class
Remarks See Also
 






Represents a label displayed by a DiagramLink. New labels can be added to a link by calling the DiagramLink.AddLabel method.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public class LinkLabel : Control, InplaceEditable

Visual Basic  Copy Code

Public Class LinkLabel
    Inherits Control
    Implements InplaceEditable

 Remarks

The text displayed by a LinkLabel is set via the Text property.

The target position of a label along link segments is specified through RelativeTo and Index, and offset from that position via HorizontalOffset and VerticalOffset properties. Instead of using fixed offsets, enable the AutoArrange property to let links automatically choose positions of their labels that won't intersect nodes or other labels.

 Inheritance Hierarchy

System.Object
    Windows.UI.Xaml.DependencyObject
        Windows.UI.Xaml.UIElement
            Windows.UI.Xaml.FrameworkElement
                Windows.UI.Xaml.Controls.Control
                    MindFusion.Diagramming.LinkLabel

 See Also