world.GetLineCount
Gets count of lines received
Prototype
long GetLineCount();
Description
This returns the number of lines received by this world. However, see GetLinesInBufferCount for the number of lines currently in the output buffer, which might be different.
VBscript example
world.note world.GetLineCount
Jscript example
world.note(world.GetLineCount());
PerlScript example
$world->note($world->GetLineCount());
Python example
world.note(world.GetLineCount)
Lua example
Note(GetLineCount())
Return value
The number of lines received by this world.
Related topic
See also
| Function | Description |
|---|---|
| GetLinesInBufferCount | Returns the number of lines in the output window |
| GetReceivedBytes | Returns the number of bytes received from the world |
| GetSentBytes | Returns the number of bytes sent to the world |