Search
FlowChart.RoutingOptions Property
See Also
 



Gets an object which allows customizing various parameters of the link routing algorithm.

 Syntax

VB6  Copy Code

Public Property Get RoutingOptions() As RoutingOptions

C++  Copy Code

public:
RoutingOptions* get_RoutingOptions ()

 Property Value

An instance of the RoutingOptions class.

 Remarks

Allows customizing various parameters of the link routing algorithm.

 Example

To have as few link crossings as possible, assign a large value to the CrossingCost member of RoutingOptions:

VB6  Copy Code

fcx.RoutingOptions.CrossingCost = 200
fcx.RouteAllArrows

 See Also