Click or drag to resize
DigitalRuneConsoleTextLines Property
Gets the text content of the console line by line.

Namespace: DigitalRune.Game.UI.Controls
Assembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax
public List<string> TextLines { get; }

Property Value

Type: ListString
The text lines.
Remarks

A single string in this list is the result of a single WriteLine(String). To add text to the console, call WriteLine(String) and do not change this list directly.

A single text line can create several VisualLines if the line is too long and must be wrapped at the max column limit of the console.

See Also