Finds turn direction between two connected segments.
[Visual Basic 6.0] Function ReturnTurnDirection(
ByVal otherSegment As ISegment _
) As Long
[Visual Basic .NET] Public Function ReturnTurnDirection ( _ ByVal otherSegment As ISegment _ ) As Integer
[C#] public int ReturnTurnDirection ( ISegment otherSegment );
[Java] public int returnTurnDirection ( ISegment otherSegment ) throws IOException, AutomationException
[C++] HRESULT ReturnTurnDirection( ISegment* otherSegment, long* turnDirection );
Parameters
otherSegment
otherSegment is a parameter of type ISegment
turnDirection [out, retval]
turnDirection is a parameter of type long
Returns the Turn Direction of the Segment immediately following the current Segment. The two segments must be connected between the To Point of the first segment and the From Point of the second segment. ReturnTurnDirection returns a long corresponding to an esriTurnDirectionEnum or a combination of esriNoTurn or esriUTurn and esriRightTurn or esriLeftTurn. If the two segments are tangential at the point of connection and not completely colinear, then a combination of esriTurnDirectionEnums are returned.
ReturnTurnDirection is only available for Lines and CircularArcs, not BezierCurves or EllipticArcs.
