Difference between revisions of "Monitor.setTextScale"

From ComputerCraft Wiki
Jump to: navigation, search
(Clarifying All)
Line 3: Line 3:
 
|name=monitor.setTextScale
 
|name=monitor.setTextScale
 
|args=[[int (type)|int]] scale
 
|args=[[int (type)|int]] scale
|api=peripheral
+
|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


Grid Redstone.png  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

Grid paper.png  Example
Sets the monitor's text scale to 2.
Code
monitor.setTextScale(2)
Output none