| ConsoleTextLines Property |
Gets the text content of the console line by line.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax public List<string> TextLines { get; }
Public ReadOnly Property TextLines As List(Of String)
Get
public:
property List<String^>^ TextLines {
List<String^>^ get ();
}
member TextLines : List<string> with get
Property Value
Type:
ListStringThe 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