public enum LinkAdjusting : System.Enum
public enum LinkAdjusting : System.Enum
Member | Description |
---|---|
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. |
Scale | When 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. |
Stretch | When 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. |
System.Object
System.ValueType
System.Enum
Northwoods.GoXam.LinkAdjusting