From ceb5d6e6ca361adc961e2b7aff05bfee4e8fb690 Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Sun, 7 Jun 2020 15:19:47 -0600 Subject: [PATCH] API docs --- Terminal.Gui/Core/ConsoleDriver.cs | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) 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; ///