Search
DiagramLink.HandlesStyle Property
See Also
 





Gets or sets the appearance of the link's selection handles.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public HandlesStyle HandlesStyle { get; set; }

Visual Basic  Copy Code

Public Property HandlesStyle As HandlesStyle

 Property Value

A member of the HandlesStyle enumeration. Initialized with the value of LinkHandlesStyle.

 Remarks

Specifies how link's selection status is indicated visually. You can choose between the following styles:

Member name

Description

SquareHandles

The selection is indicated by drawing square handles at the position of each control point.

DashFrame

The selection is indicated by drawing dashed line segments along the link's segments. In addition, there are square selection handles drawn at the location of each control point of the link.

Custom

NetDiagram raises the DrawAdjustmentHandles events to let your application perform custom drawing of link's selection handles.

 See Also