Difference between revisions of "Monitor.setTextScale"
From ComputerCraft Wiki
m (Added to CAT:APIFunctions.) |
m (Int linking fix.) |
||
Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=monitor.setTextScale | |name=monitor.setTextScale | ||
− | |args=[[int]] scale | + | |args=[[int (type)|int]] scale |
|api=peripheral | |api=peripheral | ||
|addon=ComputerCraft | |addon=ComputerCraft |
Revision as of 18:32, 30 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 |