monitor.setTextScale
From ComputerCraft Wiki
Revision as of 18:51, 1 August 2013 by Sora the Hedgehog (Talk | contribs) (Changed the pointed-to API to Term, removed TLC notice)
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 | Term |
Examples
Example | |
Sets the monitor's text scale to 2. | |
Code |
monitor.setTextScale(2) |
Output | none |