Northwoods.GoSilverlight 1.2.2 Assembly
LinkAdjusting Enumeration
See Also  Send Feedback
Northwoods.GoXam Namespace : LinkAdjusting Enumeration

This enumeration describes how a Route computes its points.

Syntax

Visual Basic (Declaration) 
Public Enum LinkAdjusting 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
C# 
public enum LinkAdjusting : System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
End When there are more than the standard number of points in the route, or if the route is orthogonal, just modify the end points, while leaving the intermediate points unchanged. This style maintains orthogonality for orthogonal links.
None Always discards any old points and recomputes all points according to standard policies.
ScaleWhen there are more than the standard number of points in the route, scale and rotate the intermediate points so that the link's shape stays approximately the same. This style, implemented by Route.RescalePoints, does not maintain the horizontal and vertical line segments of an orthogonal link. Orthogonal links with this adjusting style will instead recalculate the standard route path, as if the adjusting style were None.
StretchWhen there are more than the standard number of points in the route, linearly interpolate the intermediate points along the X and Y dimensions between the ports. This style, implemented by Route.StretchPoints, does not maintain the horizontal and vertical line segments of an orthogonal link. Orthogonal links with this adjusting style will instead only modify the end points of the existing path, as if the adjusting style were End.

Remarks

This is used as the value of Route.Adjusting.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Northwoods.GoXam.LinkAdjusting

Requirements

See Also

© 2010 All Rights Reserved.