diff --git a/Terminal.Gui/Core/ConsoleDriver.cs b/Terminal.Gui/Core/ConsoleDriver.cs index 7a09f2004..5d7205bac 100644 --- a/Terminal.Gui/Core/ConsoleDriver.cs +++ b/Terminal.Gui/Core/ConsoleDriver.cs @@ -968,18 +968,54 @@ namespace Terminal.Gui { /// public Rune UnSelected; + /// + /// Right Arrow. + /// public Rune RightArrow; + + /// + /// Left Arrow. + /// public Rune LeftArrow; + + /// + /// Down Arrow. + /// public Rune DownArrow; + + /// + /// Up Arrow. + /// public Rune UpArrow; + /// + /// Left indicator for default action (e.g. '<' for ). + /// public Rune LeftDefaultIndicator; + + /// + /// Right indicator for default action (e.g. '>' for ). + /// public Rune RightDefaultIndicator; + /// + /// Left frame/bracket (e.g. '[' for ). + /// public Rune LeftBracket; + + /// + /// Right frame/bracket (e.g. ']' for ). + /// public Rune RightBracket; + /// + /// On Segment indicator for meter views (e.g. . + /// public Rune OnMeterSegment; + + /// + /// Off Segment indicator for meter views (e.g. . + /// public Rune OffMeterSegement; ///