TextScreenDevice.SetText
Skip to content
mnscript
TextScreenDevice.SetText(string) 

Description ​

Sets the screen text

Arguments ​

string - The text to set on the screen

Example ​

msc
using Device;

// Finds a text screen device with the name "My Text Screen" and set its text to "Cool text!".
TextScreenDevice screen = Device.FindTextScreen("My Text Screen");
screen.SetText("Cool text!");