TextScreenDevice.SetBackgroundColor
Skip to content
mnscript
TextScreenDevice.SetBackgroundColor(number, number, number) 

Description ​

Sets the screen background color

Arguments ​

number - The red value (0-255)
number - The green value (0-255)
number - The blue value (0-255)

Example ​

msc
using Device;

// Finds a text screen device with the name "My Text Screen" and set its background to a nice blue color.
TextScreenDevice screen = Device.FindTextScreen("My Text Screen");
screen.SetBackgroundColor(100, 100, 200);