Search
DiagramNode.AddLabel Method (NodeLabel)
See Also
 





Adds the specified label to this node.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void AddLabel (
    NodeLabel label
)

Visual Basic  Copy Code

Public Sub AddLabel( _
    label As NodeLabel _
)

 Parameters

label

A NodeLabel instance.

 Remarks

An item's main text content is specified via its Text property. Call AddLabel if you need to display additional text labels, such as identifiers or hints to the user.

Position of labels can be specified by calling methods such as SetCornerPosition. You can let users move labels interactively by setting the Behavior property of DiagramView to MoveLabels.

 See Also