Gets or sets the Brush used to fill IntermediateShape.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public Brush IntermediateBrush { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property IntermediateBrush As Brush |
A System.Windows.Media.Brush -derived object. The default value is null.
RemarksIf this property is set to null, the arrowhead is filled using link's Brush value.
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