When overridden in a derived class, creates the PathFigure representing
the path for the specified segments.
Namespace:
Mindscape.WpfDiagramming.FoundationAssembly: Mindscape.WpfDiagramming.Foundation (in Mindscape.WpfDiagramming.Foundation.dll)
Version: 2.0.0.0 (2.0.0.0)
Syntax
C# |
---|
protected abstract PathFigure CreateMultiSegmentFigure( Collection<DiagramConnectionSegment> segments ) |
Visual Basic (Declaration) |
---|
Protected MustOverride Function CreateMultiSegmentFigure ( _ segments As Collection(Of DiagramConnectionSegment) _ ) As PathFigure |
Parameters
- segments
- Type: System.Collections.ObjectModel..::.Collection<(Of <(DiagramConnectionSegment>)>)
The connection segments.
Return Value
A PathFigure representing the connection path.
Remarks
This method is called only if there are two or more segments.
Implementations may assume that segments.Count is 2 or greater.