Returns true if the given two edges are opposite to each other. Returns false otherwise.

Namespace:  Mindscape.WpfDiagramming
Assembly:  Mindscape.WpfDiagramming.Foundation (in Mindscape.WpfDiagramming.Foundation.dll)
Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public static bool IsOpposite(
	Edge edge1,
	Edge edge2
)
Visual Basic (Declaration)
Public Shared Function IsOpposite ( _
	edge1 As Edge, _
	edge2 As Edge _
) As Boolean

Parameters

edge1
Type: Mindscape.WpfDiagramming..::.Edge
One of the Edges to check for oppositness.
edge2
Type: Mindscape.WpfDiagramming..::.Edge
One of the Edges to check for oppositness.

Return Value

Whether or not the two given edges are opposite to eacj other.

See Also