SuppressUpdate Property

See Also Applies To Example Model

Set to True to suppress display updating after each simulation time step. Default is False. Read/write Boolean.

Remarks

Set this property to True to increase the execution speed if displaying intermediate simulation states is not important.

Example

The following example updates the display every 1000 simulation time steps.

World.Screen.SuppressUpdate = True
If World.Sim.Time mod 1000 =0 then World.Screen.SuppressUpdate = False