Difference between revisions of "Monitor.setTextScale"
From ComputerCraft Wiki
(Clarifying All) |
|||
Line 3: | Line 3: | ||
|name=monitor.setTextScale | |name=monitor.setTextScale | ||
|args=[[int (type)|int]] scale | |args=[[int (type)|int]] scale | ||
− | |api= | + | |api=monitor |
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Sets the size of all text on the monitor. | |desc=Sets the size of all text on the monitor. |
Revision as of 10:03, 20 January 2013
Function monitor.setTextScale | |
Sets the size of all text on the monitor. | |
Syntax | monitor.setTextScale(int scale) |
Returns | nil |
Part of | ComputerCraft |
API | monitor |
Examples
Example | |
Sets the monitor's text scale to 2. | |
Code |
monitor.setTextScale(2) |
Output | none |