Difference between revisions of "Monitor.setTextScale"
From ComputerCraft Wiki
(Changing int to number) |
(Added NeedsWork tag.) |
||
Line 1: | Line 1: | ||
+ | {{NeedsWork|This page references the monitor api, of which there is none that I can tell. It's a peripheral specific function, so should there be a page for it?}} | ||
{{lowercase}} | {{lowercase}} | ||
{{Function | {{Function |
Revision as of 13:03, 18 July 2013
This page needs some serious TLC, stat! Please help us by cleaning it, fixing it up, or sparing it some love.
(Reason: This page references the monitor api, of which there is none that I can tell. It's a peripheral specific function, so should there be a page for it?) |
Function monitor.setTextScale | |
Sets the size of all text on the monitor. scale can be any multiple of 0.5, starting at 0.5 and ending at 5. | |
Syntax | monitor.setTextScale(number scale) |
Returns | nil |
Part of | ComputerCraft |
API | monitor |
Examples
Example | |
Sets the monitor's text scale to 2. | |
Code |
monitor.setTextScale(2) |
Output | none |