Difference between revisions of "Term.getSize"
From ComputerCraft Wiki
(Finish page) |
|||
Line 12: | Line 12: | ||
}} | }} | ||
}} | }} | ||
+ | <!-- | ||
+ | If anyone knows how to add the newline in the code, please do in between the getSize and setCursorPos and remove this comment. | ||
+ | --> |
Revision as of 00:04, 3 July 2012
Function term.getSize | |
Returns the width and height of the terminal window. | |
Syntax | term.getSize() |
Returns | The width and height of the terminal window. |
Part of | ComputerCraft |
API | term |
Examples
Example | |
Sets the cursor position to the edge of the terminal window. | |
Code |
local w, h = term.getSize() term.setCursorPos(w,1) |