Difference between revisions of "Term.write"
From ComputerCraft Wiki
(beeOucxKCesXKQc) |
Bomb Bloke (Talk | contribs) m |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{lowercase}} | |
+ | {{Function | ||
+ | |name=term.write | ||
+ | |args= {{Type|string}} text | ||
+ | |api=term | ||
+ | |addon=ComputerCraft | ||
+ | |desc=Writes text to the screen at the current [[term.setCursorPos|cursor position]], using the current text/background colours as set via [[term.setTextColor]]() / [[term.setBackgroundColor]]() (the defaults being white text on a black background).<br><br> | ||
+ | |||
+ | Does not apply word-wrap (unlike [[write|write()]]), nor does it automatically move the cursor down a line afterwards (unlike [[print|print()]]). If you wish to use multiple colours in one go, refer to [[term.blit]](). | ||
+ | |examples= | ||
+ | {{Example | ||
+ | |desc=Writes text to the screen at the cursor's current position. | ||
+ | This does not produce a new line, and anything else printed or written immediately after this will be on the same line. | ||
+ | |code=term.write("Hello, World!") | ||
+ | |output=Hello, World! | ||
+ | }} | ||
+ | }} | ||
+ | |||
+ | [[Category:API_Functions]] |
Latest revision as of 10:58, 28 June 2015
Function term.write | |
Writes text to the screen at the current cursor position, using the current text/background colours as set via term.setTextColor() / term.setBackgroundColor() (the defaults being white text on a black background). Does not apply word-wrap (unlike write()), nor does it automatically move the cursor down a line afterwards (unlike print()). If you wish to use multiple colours in one go, refer to term.blit(). | |
Syntax | term.write(string text) |
Returns | nil |
Part of | ComputerCraft |
API | term |