world.GetLinesInBufferCount
Returns the number of lines in the output window
Prototype
long GetLinesInBufferCount();
Description
This returns the number of lines in the output buffer (window) of this world.
It will differ from GetLineCount once the number of lines received exceeds the size of the buffer (as early ones will be discarded).
VBscript example
world.note world.GetLinesInBufferCount
Jscript example
world.note(world.GetLinesInBufferCount());
PerlScript example
$world->note($world->GetLinesInBufferCount());
Python example
world.note(world.GetLinesInBufferCount)
Lua example
Note(GetLinesInBufferCount())
Return value
The number of lines in the output buffer (output window) of this world.
Related topic
See also
| Function | Description |
|---|---|
| GetLineCount | Gets count of lines received |
| GetLineInfo | Gets details about a specified line in the output window |