Name Pause
Type Method
Summary Turns pause mode on or off
Prototype void Pause(BOOL Flag);
Description Turns on or off the "paused" flag for all output windows in this world.
VBscript example
world.Pause vbTrue  ' pause the world
world.Pause vbFalse ' unpause the world
Jscript example
world.Pause (true);  // pause the world
world.Pause (false); // unpause the world
PerlScript example
$world->pause(true);  # pause the world
$world->pause(false); # unpause the world
Returns Nothing