MindFusion.Wpf Pack Programmer's Guide
GridLayout.TimeLimit Property
See Also
 





Gets or sets a time-out value for the path-finding part of the grid layout algorithm.

Namespace: MindFusion.Diagramming.Wpf.Layout
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public long TimeLimit { get; set; }

Visual Basic  Copy Code

Public Property TimeLimit As Long

 Property Value

An integer value specifying time-out in milliseconds. The default is 10000 (10 seconds).

 Remarks

The grid layout algorithm arranges graph nodes and links along the longest path in the graph. Large graphs with many links could contain hundreds of thousands of possible paths, so finding the longest one would be very time-consuming. When the time-out set with this property occurs, the path-finding routine stops and the layout algorithm uses the longest path known at that moment. Usually, for graphs containing several hundreds of nodes, 1-2 seconds are enough to find a path long enough to produce a nice layout.

 See Also

GridLayout Members
GridLayout Class
MindFusion.Diagramming.Wpf.Layout Namespace