mnscript
TextScreenDevice.SetFontSize(number)
Description ​
Sets the screen font size
Arguments ​
number
- The size of the font, between 1 - 100
Example ​
msc
using Device;
// Finds a text screen device with the name "My Text Screen" and set its font size to 40.
TextScreenDevice screen = Device.FindTextScreen("My Text Screen");
screen.SetFontSize(40);