
The TextWindow provides text-related input and output functionalities. For example using this class, it is possible to write or read some text or number to and from the text-based text window.
ForegroundColor
Gets or sets the foreground color of the text to be output in the text window.
BackgroundColor
Gets or sets the background color of the text to be output in the text window.
CursorLeft
Gets or sets the cursor's column position on the text window.
CursorTop
Gets or sets the cursor's row position on the text window.
Left
Gets or sets the Left position of the Text Window.
Title
Gets or sets the Title for the text window.
Top
Gets or sets the Top position of the Text Window.
ShowShows the Text window to enable interactions with it.
HideHides the text window.
ClearClears the TextWindow.
PauseWaits for user input before returning.
PauseIfVisibleWaits for user input only when the TextWindow is already open.
PauseWithoutMessageWaits for user input before returning.
ReadReads a line of text from the text window. This function will not return until the user hits ENTER.
ReadKeyReads a single character from the text window.
ReadNumberReads a number from the text window. This function will not return until the user hits ENTER.
WriteLineWrites text or number to the text window. A new line character will be appended to the output, so that the next time something is written to the text window, it will go in a new line.
WriteWrites text or number to the text window. A new line character will be appended to the output, so that the next time something is written to the text window, it will go in a new line.