Search
RoutingOptions.DontOptimizeLongRoutes Property
See Also
 



Gets or sets a value indicating whether long routes don't have their number of segments minimized in order to save up processing time.

 Syntax

VB6  Copy Code

Public Property Get DontOptimizeLongRoutes() As Boolean
Public Property Let DontOptimizeLongRoutes( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_DontOptimizeLongRoutes ()
void put_DontOptimizeLongRoutes (
    bool value
)

 Property Value

true to disable route optimization for long links; otherwise false. The default is false.

 Remarks

Segment optimization done on routed arrows might need much processing time. The control allows disabling that optimization for long arrows. That might make the found routes have a "staircase" pattern when they run diagonally.

 See Also