Search
GridLayout.NumIterations Property
See Also
 



Gets or sets how many iterations the grid layout algorithm should run.

 Syntax

VB6  Copy Code

Public Property Get NumIterations() As Long
Public Property Let NumIterations( _
    ByVal value As Long _
)

C++  Copy Code

public:
int get_NumIterations ()
void put_NumIterations (
    int value
)

 Property Value

A long value. The default is 3000.

 Remarks

The algorithm yields better layouts if it runs more iterations, but its execution time grows proportionally to the number of iterations.

 See Also