mnscript
TextScreenDevice Device.FindTextScreen(string) Description ​
Finds a connected Text Screen Device
Arguments ​
string - The device name to search for
Returns ​
TextScreenDevice - The found device
Example ​
msc
using Device;
// Finds a text screen device with the name "My Text Screen" and set its key.
TextScreenDevice screen = Device.FindTextScreen("My Text Screen");
screen.SetText("Cool text!");