Difference between revisions of "Term.getSize"
From ComputerCraft Wiki
(note) |
(Changing int to number) |
||
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{lowercase}} | |
+ | {{Function | ||
+ | |name=term.getSize | ||
+ | |returns={{type|number}} the width and height of the terminal window. | ||
+ | |api=term | ||
+ | |addon=ComputerCraft | ||
+ | |desc=Returns the width and height of the terminal window. | ||
+ | |examples= | ||
+ | {{Example | ||
+ | |desc=Sets the cursor position to the edge of the terminal window. | ||
+ | |code=local w, h = term.getSize()<br />term.setCursorPos(w,1) | ||
+ | }} | ||
+ | }} | ||
+ | |||
+ | [[Category:API_Functions]] |
Latest revision as of 11:51, 18 July 2013
Function term.getSize | |
Returns the width and height of the terminal window. | |
Syntax | term.getSize() |
Returns | number 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() |