Search
DummyNode.GetIntersection Method
See Also
 






DiagramNode.GetIntersection override.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public override Point GetIntersection (
    Point segmentStart,
    Point segmentEnd
)

Visual Basic  Copy Code

Public Overrides Function GetIntersection( _
    segmentStart As Point, _
    segmentEnd As Point _
) As Point

 Parameters

segmentStart

The first point of the segment.

segmentEnd

The second point of the segment.

 Return Value

The DummyNode implementation of this method always returns segmentStart as the result.

 See Also