Northwoods.GoSilverlight 1.1.3 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.
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.
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.

Remarks

This is used as the value of Route.Adjusting.

Inheritance Hierarchy

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

See Also