| Name |
LogNotes |
| Type |
Property |
| Summary |
The property of whether notes are logged to the log file |
| Prototype |
short LogNotes; |
| Description |
Set to 1 to log notes to the log file, 0 to not log |
| VBscript example |
world.lognotes = 1 ' log notes
world.lognotes = 0 ' don't log notes
world.note world.lognotes ' display whether notes are logged |
| Jscript example |
world.lognotes = 1; // log notes
world.lognotes = 0; // don't log notes
world.note(world.lognotes); // display whether notes are logged |
| PerlScript example |
$world->{lognotes} = 1; # log notes
$world->{lognotes} = 0; # don't log notes
$world->note($world->{lognotes}); # display whether notes are logged |
| Returns |
This is a property. You can use it to find whether notes are currently logged. |