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

Description ​

Gets the screen text

Returns ​

string - The screen text

Example ​

msc
using Device;

// Finds a text screen device with the name "My Text Screen" and gets its text.
TextScreenDevice screen = Device.FindTextScreen("My Text Screen");
string text = screen.GetText();