Search
AnnealLayout.InitialTemperature Property
See Also
 



Gets or sets the initial temperature of the simulated annealing process.

 Syntax

VB6  Copy Code

Public Property Get InitialTemperature() As Double
Public Property Let InitialTemperature( _
    ByVal value As Double _
)

C++  Copy Code

public:
double get_InitialTemperature ()
void put_InitialTemperature (
    double value
)

 Property Value

A double value. The default is 40.

 Remarks

A low initial temperature prevents nodes from moving far from their initial position. If you need the final arrangement to have resemblance to the initial formation of the graph elements, set a lower initial temperature and disable Randomize.

 See Also