Name EchoInput
Type Property
Summary A flag to indicate whether we are echoing command input to the output window
Prototype boolean EchoInput;
Description This property controls whether command input is echoed to the output window.
VBscript example
world.note world.EchoInput
world.EchoInput = vbTrue
world.EchoInput = vbFalse;
Jscript example
world.note(world.EchoInput);
world.EchoInput = true;
world.EchoInput = false;
PerlScript example
$world->note ($world->{EchoInput});
$world->{EchoInput} = false;
$world->{EchoInput} = true;
Returns TRUE if echoing is enabled
FALSE if echoing is NOT enabled

Note: TRUE is a non-zero value, FALSE is the value 0.

See also ...