Gets or sets the shape of this link's arrowhead.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public Shape HeadShape { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property HeadShape As Shape |
A Shape instance that represents an arrowhead shape. Initialized with the value of LinkHeadShape.
RemarksThe property specifies what shape is displayed as an arrowhead. This shape is rotated simultaneously with the last segment of the link so that it follows the overall link direction.
The ArrowHeads class exposes several predefined shapes as static properties.
ExampleThis link image was generated using following code:

C#
Copy Code
|
|---|
link.HeadShape = ArrowHeads.Triangle; link.BaseShape = ArrowHeads.Circle; link.IntermediateShape = ArrowHeads.BowArrow; |
See Also