Difference between revisions of "Monitor.setTextScale"
From ComputerCraft Wiki
MathManiac0 (Talk | contribs) (Created Page) |
MathManiac0 (Talk | contribs) m |
||
Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=monitor.setTextScale | |name=monitor.setTextScale | ||
− | |args=[[int | + | |args=[[int]] scale |
|api=peripheral | |api=peripheral | ||
|addon=ComputerCraft | |addon=ComputerCraft |
Revision as of 16:40, 13 November 2012
Function monitor.setTextScale | |
Sets the size of the text on the monitor. | |
Syntax | monitor.setTextScale(int scale) |
Returns | nil |
Part of | ComputerCraft |
API | peripheral |
Examples
Example | |
Sets the monitor's text scale to 2. | |
Code |
monitor.setTextScale(2) |
Output | none |