Description ​
Sets the screen text 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 text to red.
TextScreenDevice screen = Device.FindTextScreen("My Text Screen");
screen.SetTextColor(255, 0, 0);