Search
DiagramBase.DrawBranchIndicator Event
See Also
 





Raised when a branch indicator must be custom-drawn.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<DrawBranchIndicatorEventArgs> DrawBranchIndicator

Visual Basic  Copy Code

Public Event DrawBranchIndicator As EventHandler(Of DrawBranchIndicatorEventArgs)

 Event Data

Member name

Description

From

A Vector specifying the direction of the incoming link segment.

Graphics

Gets an IGraphics object whose methods should be used to draw the branch indicator.

Merge

true to draw a merge indicator, or false to draw a branch indicator.

Position

A PointF specifying the position of the branch indicator.

To

A Vector specifying the direction of the outgoing link segment.

 Remarks

This event is raised when LinkBranchIndicator and/or LinkMergeIndicator properties are set to Custom.

 See Also