| ConsoleHistory Property |
Gets the command history.
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> History { get; }
Public ReadOnly Property History As List(Of String)
Get
public:
property List<String^>^ History {
List<String^>^ get ();
}
member History : List<string> with get
Property Value
Type:
ListStringThe command history.
Remarks
This list contains the last commands (whole line of text including arguments) that were
entered into the console. The max number of history entries is limited by
MaxHistoryEntries. The entries are sorted. History[0] contains the oldest
entry. History[History.Count - 1] contains the newest entry. The list does not contain
duplicate entries.
See Also