diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml new file mode 100644 index 0000000000..a33ddc344b --- /dev/null +++ b/.github/workflows/api-docs.yml @@ -0,0 +1,54 @@ +name: Build and publish API docs + +on: + push: + branches: [main] + +jobs: + generate-docs: + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.100 + + - name: Setup DocFX + uses: crazy-max/ghaction-chocolatey@v1 + with: + args: install docfx + + - name: Install dependencies + run: dotnet restore + + - name: DocFX Build + working-directory: docfx + # https://stackoverflow.com/questions/56726429/how-to-run-multiple-commands-in-one-github-actions-docker + run: | + rm ../docs -Recurse -Force + docfx docfx.json + continue-on-error: false + + - name: Publish + if: github.event_name == 'push' + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs + force_orphan: true + + # - name: Use docfx to build API Docs + # uses: nikeee/docfx-action@v1.0.0 + # with: + # args: docfx/docfx.json + + # # Publish generated site using GitHub Pages + # - uses: maxheld83/ghpages@master + # name: Publish API Documentation on GitHub Pages + # env: + # BUILD_DIR: docs # docfx's default output directory is _site + # GH_PAT: ${{ secrets.GH_PAT }} # See https://github.com/maxheld83/ghpages \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1399d6656f..48e91e8722 100644 --- a/.gitignore +++ b/.gitignore @@ -8,8 +8,11 @@ packages # User-specific files *.user +# API Docs docfx/api +# Never push ./docs folder - the gh-pages branch is now used to publish to GH Pages + UnitTests/TestResults #git merge files diff --git a/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs b/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs index b5db7847be..6b5aa1a1a5 100644 --- a/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/CursesDriver/CursesDriver.cs @@ -191,7 +191,7 @@ public static Attribute MakeColor (short foreground, short background) background: MapCursesColor (background)); } - public override Attribute MakeColor (Color fore, Color back) + static Attribute MakeColor (Color fore, Color back) { return MakeColor ((short)MapColor (fore), (short)MapColor (back)); } @@ -663,7 +663,7 @@ void ProcessInput (Action keyHandler, Action keyDownHandler, // Special handling for ESC, we want to try to catch ESC+letter to simulate alt-letter as well as Alt-Fkey if (wch == 27) { - Curses.timeout (10); + Curses.timeout (200); code = Curses.get_wch (out int wch2); @@ -820,7 +820,6 @@ public override void Init (Action terminalResized) //Console.Out.Flush (); window = Curses.initscr (); - Curses.set_escdelay (10); } catch (Exception e) { throw new Exception ($"Curses failed to initialize, the exception is: {e.Message}"); } @@ -890,14 +889,51 @@ public override void Init (Action terminalResized) //UpArrow = Curses.ACS_UARROW; //DownArrow = Curses.ACS_DARROW; + Colors.TopLevel = new ColorScheme (); + Colors.Base = new ColorScheme (); + Colors.Dialog = new ColorScheme (); + Colors.Menu = new ColorScheme (); + Colors.Error = new ColorScheme (); + if (Curses.HasColors) { Curses.StartColor (); Curses.UseDefaultColors (); - CreateColors (); + Colors.TopLevel.Normal = MakeColor (Color.Green, Color.Black); + Colors.TopLevel.Focus = MakeColor (Color.White, Color.Cyan); + Colors.TopLevel.HotNormal = MakeColor (Color.Brown, Color.Black); + Colors.TopLevel.HotFocus = MakeColor (Color.Blue, Color.Cyan); + Colors.TopLevel.Disabled = MakeColor (Color.DarkGray, Color.Black); + + Colors.Base.Normal = MakeColor (Color.White, Color.Blue); + Colors.Base.Focus = MakeColor (Color.Black, Color.Gray); + Colors.Base.HotNormal = MakeColor (Color.BrightCyan, Color.Blue); + Colors.Base.HotFocus = MakeColor (Color.BrightBlue, Color.Gray); + Colors.Base.Disabled = MakeColor (Color.DarkGray, Color.Blue); + + // Focused, + // Selected, Hot: Yellow on Black + // Selected, text: white on black + // Unselected, hot: yellow on cyan + // unselected, text: same as unfocused + Colors.Menu.Normal = MakeColor (Color.White, Color.DarkGray); + Colors.Menu.Focus = MakeColor (Color.White, Color.Black); + Colors.Menu.HotNormal = MakeColor (Color.BrightYellow, Color.DarkGray); + Colors.Menu.HotFocus = MakeColor (Color.BrightYellow, Color.Black); + Colors.Menu.Disabled = MakeColor (Color.Gray, Color.DarkGray); + + Colors.Dialog.Normal = MakeColor (Color.Black, Color.Gray); + Colors.Dialog.Focus = MakeColor (Color.White, Color.DarkGray); + Colors.Dialog.HotNormal = MakeColor (Color.Blue, Color.Gray); + Colors.Dialog.HotFocus = MakeColor (Color.Blue, Color.DarkGray); + Colors.Dialog.Disabled = MakeColor (Color.DarkGray, Color.Gray); + + Colors.Error.Normal = MakeColor (Color.Red, Color.White); + Colors.Error.Focus = MakeColor (Color.White, Color.Red); + Colors.Error.HotNormal = MakeColor (Color.Black, Color.White); + Colors.Error.HotFocus = MakeColor (Color.Black, Color.Red); + Colors.Error.Disabled = MakeColor (Color.DarkGray, Color.White); } else { - CreateColors (false); - Colors.TopLevel.Normal = Curses.COLOR_GREEN; Colors.TopLevel.Focus = Curses.COLOR_WHITE; Colors.TopLevel.HotNormal = Curses.COLOR_YELLOW; diff --git a/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs b/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs index 4195344eb3..fa9d49ddd4 100644 --- a/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs +++ b/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs @@ -330,7 +330,6 @@ static public int IsAlt (int key) static public int reset_shell_mode () => methods.reset_shell_mode (); static public int savetty () => methods.savetty (); static public int resetty () => methods.resetty (); - static public int set_escdelay (int size) => methods.set_escdelay (size); } #pragma warning disable RCS1102 // Make class static. @@ -406,7 +405,6 @@ internal class Delegates { public delegate int reset_shell_mode (); public delegate int savetty (); public delegate int resetty (); - public delegate int set_escdelay (int size); } internal class NativeMethods { @@ -480,7 +478,6 @@ internal class NativeMethods { public readonly Delegates.reset_shell_mode reset_shell_mode; public readonly Delegates.savetty savetty; public readonly Delegates.resetty resetty; - public readonly Delegates.set_escdelay set_escdelay; public UnmanagedLibrary UnmanagedLibrary; public NativeMethods (UnmanagedLibrary lib) @@ -556,7 +553,6 @@ public NativeMethods (UnmanagedLibrary lib) reset_shell_mode = lib.GetNativeMethodDelegate ("reset_shell_mode"); savetty = lib.GetNativeMethodDelegate ("savetty"); resetty = lib.GetNativeMethodDelegate ("resetty"); - set_escdelay = lib.GetNativeMethodDelegate ("set_escdelay"); } } #pragma warning restore CS1591 // Missing XML comment for publicly visible type or member diff --git a/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeDriver.cs b/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeDriver.cs index 50662f3640..0faccb2742 100644 --- a/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeDriver.cs @@ -157,11 +157,6 @@ public override void End () FakeConsole.Clear (); } - public override Attribute MakeColor (Color foreground, Color background) - { - return MakeColor ((ConsoleColor)foreground, (ConsoleColor)background); - } - static Attribute MakeColor (ConsoleColor f, ConsoleColor b) { // Encode the colors into the int value. @@ -182,7 +177,47 @@ public override void Init (Action terminalResized) ResizeScreen (); UpdateOffScreen (); - CreateColors (); + Colors.TopLevel = new ColorScheme (); + Colors.Base = new ColorScheme (); + Colors.Dialog = new ColorScheme (); + Colors.Menu = new ColorScheme (); + Colors.Error = new ColorScheme (); + Clip = new Rect (0, 0, Cols, Rows); + + Colors.TopLevel.Normal = MakeColor (ConsoleColor.Green, ConsoleColor.Black); + Colors.TopLevel.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkCyan); + Colors.TopLevel.HotNormal = MakeColor (ConsoleColor.DarkYellow, ConsoleColor.Black); + Colors.TopLevel.HotFocus = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.DarkCyan); + Colors.TopLevel.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Black); + + Colors.Base.Normal = MakeColor (ConsoleColor.White, ConsoleColor.Blue); + Colors.Base.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Cyan); + Colors.Base.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.Blue); + Colors.Base.HotFocus = MakeColor (ConsoleColor.Yellow, ConsoleColor.Cyan); + Colors.Base.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.DarkBlue); + + // Focused, + // Selected, Hot: Yellow on Black + // Selected, text: white on black + // Unselected, hot: yellow on cyan + // unselected, text: same as unfocused + Colors.Menu.HotFocus = MakeColor (ConsoleColor.Yellow, ConsoleColor.Black); + Colors.Menu.Focus = MakeColor (ConsoleColor.White, ConsoleColor.Black); + Colors.Menu.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.Cyan); + Colors.Menu.Normal = MakeColor (ConsoleColor.White, ConsoleColor.Cyan); + Colors.Menu.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Cyan); + + Colors.Dialog.Normal = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); + Colors.Dialog.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Cyan); + Colors.Dialog.HotNormal = MakeColor (ConsoleColor.Blue, ConsoleColor.Gray); + Colors.Dialog.HotFocus = MakeColor (ConsoleColor.Blue, ConsoleColor.Cyan); + Colors.Dialog.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Gray); + + Colors.Error.Normal = MakeColor (ConsoleColor.White, ConsoleColor.Red); + Colors.Error.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); + Colors.Error.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.Red); + Colors.Error.HotFocus = Colors.Error.HotNormal; + Colors.Error.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.White); //MockConsole.Clear (); } diff --git a/Terminal.Gui/ConsoleDrivers/NetDriver.cs b/Terminal.Gui/ConsoleDrivers/NetDriver.cs index c6c65caa74..95e93391ab 100644 --- a/Terminal.Gui/ConsoleDrivers/NetDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/NetDriver.cs @@ -1309,11 +1309,6 @@ void Clear () } } - public override Attribute MakeColor (Color foreground, Color background) - { - return MakeColor ((ConsoleColor)foreground, (ConsoleColor)background); - } - static Attribute MakeColor (ConsoleColor f, ConsoleColor b) { // Encode the colors into the int value. @@ -1342,7 +1337,46 @@ public override void Init (Action terminalResized) StartReportingMouseMoves (); - CreateColors (); + Colors.TopLevel = new ColorScheme (); + Colors.Base = new ColorScheme (); + Colors.Dialog = new ColorScheme (); + Colors.Menu = new ColorScheme (); + Colors.Error = new ColorScheme (); + + Colors.TopLevel.Normal = MakeColor (ConsoleColor.Green, ConsoleColor.Black); + Colors.TopLevel.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkCyan); + Colors.TopLevel.HotNormal = MakeColor (ConsoleColor.DarkYellow, ConsoleColor.Black); + Colors.TopLevel.HotFocus = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.DarkCyan); + Colors.TopLevel.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Black); + + Colors.Base.Normal = MakeColor (ConsoleColor.White, ConsoleColor.DarkBlue); + Colors.Base.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); + Colors.Base.HotNormal = MakeColor (ConsoleColor.Cyan, ConsoleColor.DarkBlue); + Colors.Base.HotFocus = MakeColor (ConsoleColor.Blue, ConsoleColor.Gray); + Colors.Base.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.DarkBlue); + + // Focused, + // Selected, Hot: Yellow on Black + // Selected, text: white on black + // Unselected, hot: yellow on cyan + // unselected, text: same as unfocused + Colors.Menu.Normal = MakeColor (ConsoleColor.White, ConsoleColor.DarkGray); + Colors.Menu.Focus = MakeColor (ConsoleColor.White, ConsoleColor.Black); + Colors.Menu.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.DarkGray); + Colors.Menu.HotFocus = MakeColor (ConsoleColor.Yellow, ConsoleColor.Black); + Colors.Menu.Disabled = MakeColor (ConsoleColor.Gray, ConsoleColor.DarkGray); + + Colors.Dialog.Normal = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); + Colors.Dialog.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkGray); + Colors.Dialog.HotNormal = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.Gray); + Colors.Dialog.HotFocus = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.DarkGray); + Colors.Dialog.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Gray); + + Colors.Error.Normal = MakeColor (ConsoleColor.DarkRed, ConsoleColor.White); + Colors.Error.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkRed); + Colors.Error.HotNormal = MakeColor (ConsoleColor.Black, ConsoleColor.White); + Colors.Error.HotFocus = MakeColor (ConsoleColor.Black, ConsoleColor.DarkRed); + Colors.Error.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.White); Clear (); } diff --git a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs index e5f65fbfd0..21b7a60945 100644 --- a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs @@ -1397,7 +1397,41 @@ public override void Init (Action terminalResized) ResizeScreen (); UpdateOffScreen (); - CreateColors (); + Colors.TopLevel = new ColorScheme (); + Colors.Base = new ColorScheme (); + Colors.Dialog = new ColorScheme (); + Colors.Menu = new ColorScheme (); + Colors.Error = new ColorScheme (); + + Colors.TopLevel.Normal = MakeColor (ConsoleColor.Green, ConsoleColor.Black); + Colors.TopLevel.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkCyan); + Colors.TopLevel.HotNormal = MakeColor (ConsoleColor.DarkYellow, ConsoleColor.Black); + Colors.TopLevel.HotFocus = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.DarkCyan); + Colors.TopLevel.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Black); + + Colors.Base.Normal = MakeColor (ConsoleColor.White, ConsoleColor.DarkBlue); + Colors.Base.Focus = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); + Colors.Base.HotNormal = MakeColor (ConsoleColor.Cyan, ConsoleColor.DarkBlue); + Colors.Base.HotFocus = MakeColor (ConsoleColor.Blue, ConsoleColor.Gray); + Colors.Base.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.DarkBlue); + + Colors.Menu.Normal = MakeColor (ConsoleColor.White, ConsoleColor.DarkGray); + Colors.Menu.Focus = MakeColor (ConsoleColor.White, ConsoleColor.Black); + Colors.Menu.HotNormal = MakeColor (ConsoleColor.Yellow, ConsoleColor.DarkGray); + Colors.Menu.HotFocus = MakeColor (ConsoleColor.Yellow, ConsoleColor.Black); + Colors.Menu.Disabled = MakeColor (ConsoleColor.Gray, ConsoleColor.DarkGray); + + Colors.Dialog.Normal = MakeColor (ConsoleColor.Black, ConsoleColor.Gray); + Colors.Dialog.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkGray); + Colors.Dialog.HotNormal = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.Gray); + Colors.Dialog.HotFocus = MakeColor (ConsoleColor.DarkBlue, ConsoleColor.DarkGray); + Colors.Dialog.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.Gray); + + Colors.Error.Normal = MakeColor (ConsoleColor.DarkRed, ConsoleColor.White); + Colors.Error.Focus = MakeColor (ConsoleColor.White, ConsoleColor.DarkRed); + Colors.Error.HotNormal = MakeColor (ConsoleColor.Black, ConsoleColor.White); + Colors.Error.HotFocus = MakeColor (ConsoleColor.Black, ConsoleColor.DarkRed); + Colors.Error.Disabled = MakeColor (ConsoleColor.DarkGray, ConsoleColor.White); } public override void ResizeScreen () @@ -1503,11 +1537,6 @@ public override void SetAttribute (Attribute c) currentAttribute = c; } - public override Attribute MakeColor (Color foreground, Color background) - { - return MakeColor ((ConsoleColor)foreground, (ConsoleColor)background); - } - Attribute MakeColor (ConsoleColor f, ConsoleColor b) { // Encode the colors into the int value. diff --git a/Terminal.Gui/Core/Application.cs b/Terminal.Gui/Core/Application.cs index eb1200999f..f4812d7dce 100644 --- a/Terminal.Gui/Core/Application.cs +++ b/Terminal.Gui/Core/Application.cs @@ -279,18 +279,9 @@ public override void Post (SendOrPostCallback d, object state) public override void Send (SendOrPostCallback d, object state) { - if (Thread.CurrentThread.ManagedThreadId == _mainThreadId) { + mainLoop.Invoke (() => { d (state); - } else { - var wasExecuted = false; - mainLoop.Invoke (() => { - d (state); - wasExecuted = true; - }); - while (!wasExecuted) { - Thread.Sleep (15); - } - } + }); } } @@ -316,7 +307,6 @@ public override void Send (SendOrPostCallback d, object state) public static void Init (ConsoleDriver driver = null, IMainLoopDriver mainLoopDriver = null) => Init (() => Toplevel.Create (), driver, mainLoopDriver); internal static bool _initialized = false; - internal static int _mainThreadId = -1; /// /// Initializes the Terminal.Gui application @@ -370,7 +360,6 @@ static void Init (Func topLevelFactory, ConsoleDriver driver = null, I Top = topLevelFactory (); Current = Top; supportedCultures = GetSupportedCultures (); - _mainThreadId = Thread.CurrentThread.ManagedThreadId; _initialized = true; } @@ -638,11 +627,6 @@ static void ProcessMouseEvent (MouseEvent me) } RootMouseEvent?.Invoke (me); if (mouseGrabView != null) { - if (view == null) { - UngrabMouse (); - return; - } - var newxy = mouseGrabView.ScreenToView (me.X, me.Y); var nme = new MouseEvent () { X = newxy.X, @@ -908,7 +892,6 @@ static void ResetState () RootMouseEvent = null; RootKeyEvent = null; Resized = null; - _mainThreadId = -1; NotifyNewRunState = null; NotifyStopRunState = null; _initialized = false; diff --git a/Terminal.Gui/Core/ConsoleDriver.cs b/Terminal.Gui/Core/ConsoleDriver.cs index 873d8398bc..5116c07edf 100644 --- a/Terminal.Gui/Core/ConsoleDriver.cs +++ b/Terminal.Gui/Core/ConsoleDriver.cs @@ -1338,60 +1338,5 @@ public Rect Clip { /// /// The current attribute. public abstract Attribute GetAttribute (); - - /// - /// Make the for the . - /// - /// The foreground color. - /// The background color. - /// The attribute for the foreground and background colors. - public abstract Attribute MakeColor (Color foreground, Color background); - - /// - /// Create all with the for the console driver. - /// - /// Flag indicating if colors are supported. - public void CreateColors (bool hasColors = true) - { - Colors.TopLevel = new ColorScheme (); - Colors.Base = new ColorScheme (); - Colors.Dialog = new ColorScheme (); - Colors.Menu = new ColorScheme (); - Colors.Error = new ColorScheme (); - - if (!hasColors) { - return; - } - - Colors.TopLevel.Normal = MakeColor (Color.BrightGreen, Color.Black); - Colors.TopLevel.Focus = MakeColor (Color.White, Color.Cyan); - Colors.TopLevel.HotNormal = MakeColor (Color.Brown, Color.Black); - Colors.TopLevel.HotFocus = MakeColor (Color.Blue, Color.Cyan); - Colors.TopLevel.Disabled = MakeColor (Color.DarkGray, Color.Black); - - Colors.Base.Normal = MakeColor (Color.White, Color.Blue); - Colors.Base.Focus = MakeColor (Color.Black, Color.Gray); - Colors.Base.HotNormal = MakeColor (Color.BrightCyan, Color.Blue); - Colors.Base.HotFocus = MakeColor (Color.BrightBlue, Color.Gray); - Colors.Base.Disabled = MakeColor (Color.DarkGray, Color.Blue); - - Colors.Dialog.Normal = MakeColor (Color.Black, Color.Gray); - Colors.Dialog.Focus = MakeColor (Color.White, Color.DarkGray); - Colors.Dialog.HotNormal = MakeColor (Color.Blue, Color.Gray); - Colors.Dialog.HotFocus = MakeColor (Color.BrightYellow, Color.DarkGray); - Colors.Dialog.Disabled = MakeColor (Color.Gray, Color.DarkGray); - - Colors.Menu.Normal = MakeColor (Color.White, Color.DarkGray); - Colors.Menu.Focus = MakeColor (Color.White, Color.Black); - Colors.Menu.HotNormal = MakeColor (Color.BrightYellow, Color.DarkGray); - Colors.Menu.HotFocus = MakeColor (Color.BrightYellow, Color.Black); - Colors.Menu.Disabled = MakeColor (Color.Gray, Color.DarkGray); - - Colors.Error.Normal = MakeColor (Color.Red, Color.White); - Colors.Error.Focus = MakeColor (Color.Black, Color.BrightRed); - Colors.Error.HotNormal = MakeColor (Color.Black, Color.White); - Colors.Error.HotFocus = MakeColor (Color.BrightRed, Color.Gray); - Colors.Error.Disabled = MakeColor (Color.DarkGray, Color.White); - } } } diff --git a/Terminal.Gui/Core/MainLoop.cs b/Terminal.Gui/Core/MainLoop.cs index 43789e2284..4988a5a8e3 100644 --- a/Terminal.Gui/Core/MainLoop.cs +++ b/Terminal.Gui/Core/MainLoop.cs @@ -6,7 +6,6 @@ // using System; using System.Collections.Generic; -using System.Collections.ObjectModel; namespace Terminal.Gui { /// @@ -62,11 +61,6 @@ public sealed class Timeout { internal SortedList timeouts = new SortedList (); object timeoutsLockToken = new object (); - - /// - /// The idle handlers and lock that must be held while manipulating them - /// - object idleHandlersLock = new object (); internal List> idleHandlers = new List> (); /// @@ -77,15 +71,9 @@ public sealed class Timeout { public SortedList Timeouts => timeouts; /// - /// Gets a copy of the list of all idle handlers. + /// Gets the list of all idle handlers. /// - public ReadOnlyCollection> IdleHandlers { - get { - lock (idleHandlersLock) { - return new List> (idleHandlers).AsReadOnly (); - } - } - } + public List> IdleHandlers => idleHandlers; /// /// The current IMainLoopDriver in use. @@ -135,7 +123,7 @@ public void Invoke (Action action) /// Token that can be used to remove the idle handler with . public Func AddIdle (Func idleHandler) { - lock (idleHandlersLock) { + lock (idleHandlers) { idleHandlers.Add (idleHandler); } @@ -151,7 +139,7 @@ public Func AddIdle (Func idleHandler) /// This method also returns false if the idle handler is not found. public bool RemoveIdle (Func token) { - lock (idleHandlersLock) + lock (token) return idleHandlers.Remove (token); } @@ -254,14 +242,14 @@ private long NudgeToUniqueKey (long k) void RunIdle () { List> iterate; - lock (idleHandlersLock) { + lock (idleHandlers) { iterate = idleHandlers; idleHandlers = new List> (); } foreach (var idle in iterate) { if (idle ()) - lock (idleHandlersLock) + lock (idleHandlers) idleHandlers.Add (idle); } } @@ -306,7 +294,7 @@ public void MainIteration () Driver.MainIteration (); - lock (idleHandlersLock) { + lock (idleHandlers) { if (idleHandlers.Count > 0) RunIdle (); } diff --git a/Terminal.Gui/Core/TextFormatter.cs b/Terminal.Gui/Core/TextFormatter.cs index 06b0323d5a..eb4ec57756 100644 --- a/Terminal.Gui/Core/TextFormatter.cs +++ b/Terminal.Gui/Core/TextFormatter.cs @@ -356,7 +356,7 @@ public List Lines { } /// - /// Gets or sets whether the needs to format the text when is called. + /// Gets or sets whether the needs to format the text when is called. /// If it is false when Draw is called, the Draw call will be faster. /// /// @@ -417,50 +417,6 @@ static ustring ReplaceCRLFWithSpace (ustring str) return ustring.Make (runes); } - /// - /// Splits all newlines in the into a list - /// and supports both CRLF and LF, preserving the ending newline. - /// - /// The text. - /// A list of text without the newline characters. - public static List SplitNewLine (ustring text) - { - var runes = text.ToRuneList (); - var lines = new List (); - var start = 0; - var end = 0; - - for (int i = 0; i < runes.Count; i++) { - end = i; - switch (runes [i]) { - case '\n': - lines.Add (ustring.Make (runes.GetRange (start, end - start))); - i++; - start = i; - break; - - case '\r': - if ((i + 1) < runes.Count && runes [i + 1] == '\n') { - lines.Add (ustring.Make (runes.GetRange (start, end - start))); - i += 2; - start = i; - } else { - lines.Add (ustring.Make (runes.GetRange (start, end - start))); - i++; - start = i; - } - break; - } - } - if (runes.Count > 0 && lines.Count == 0) { - lines.Add (ustring.Make (runes)); - } else if (runes.Count > 0 && start < runes.Count) { - lines.Add (ustring.Make (runes.GetRange (start, runes.Count - start))); - } else { - lines.Add (ustring.Make ("")); - } - return lines; - } /// /// Adds trailing whitespace or truncates @@ -693,7 +649,7 @@ public static ustring Justify (ustring text, int width, char spaceChar = ' ', Te textCount = words.Sum (arg => arg.RuneCount); } var spaces = words.Length > 1 ? (width - textCount) / (words.Length - 1) : 0; - var extras = words.Length > 1 ? (width - textCount) % (words.Length - 1) : 0; + var extras = words.Length > 1 ? (width - textCount) % words.Length : 0; var s = new System.Text.StringBuilder (); for (int w = 0; w < words.Length; w++) { @@ -703,14 +659,8 @@ public static ustring Justify (ustring text, int width, char spaceChar = ' ', Te for (int i = 0; i < spaces; i++) s.Append (spaceChar); if (extras > 0) { - for (int i = 0; i < 1; i++) - s.Append (spaceChar); extras--; } - if (w + 1 == words.Length - 1) { - for (int i = 0; i < extras; i++) - s.Append (spaceChar); - } } return ustring.Make (s.ToString ()); } @@ -841,18 +791,6 @@ public static int MaxWidth (ustring text, int width) return max; } - /// - /// Determines the line with the highest width in the - /// if it contains newlines. - /// - /// Text, may contain newlines. - /// The highest line width. - public static int MaxWidthLine (ustring text) - { - var result = TextFormatter.SplitNewLine (text); - return result.Max (x => x.ConsoleWidth); - } - /// /// Gets the total width of the passed text. /// @@ -1159,8 +1097,7 @@ public static ustring RemoveHotKeySpecifier (ustring text, int hotPos, Rune hotK /// The color to use for all text except the hotkey /// The color to use to draw the hotkey /// Specifies the screen-relative location and maximum container size. - /// Determines if the bounds width will be used (default) or only the text width will be used. - public void Draw (Rect bounds, Attribute normalColor, Attribute hotColor, Rect containerBounds = default, bool fillRemaining = true) + public void Draw (Rect bounds, Attribute normalColor, Attribute hotColor, Rect containerBounds = default) { // With this check, we protect against subclasses with overrides of Text (like Button) if (ustring.IsNullOrEmpty (text)) { @@ -1263,7 +1200,7 @@ public void Draw (Rect bounds, Attribute normalColor, Attribute hotColor, Rect c var size = isVertical ? bounds.Height : bounds.Width; var current = start; var savedClip = Application.Driver?.Clip; - if (Application.Driver != null) { + if (Application.Driver != null && containerBounds != default) { Application.Driver.Clip = containerBounds == default ? bounds : new Rect (Math.Max (containerBounds.X, bounds.X), @@ -1273,10 +1210,10 @@ public void Draw (Rect bounds, Attribute normalColor, Attribute hotColor, Rect c } for (var idx = (isVertical ? start - y : start - x); current < start + size; idx++) { - if (!fillRemaining && idx < 0) { + if (idx < 0) { current++; continue; - } else if (!fillRemaining && idx > runes.Length - 1) { + } else if (idx > runes.Length - 1) { break; } var rune = (Rune)' '; @@ -1308,8 +1245,7 @@ public void Draw (Rect bounds, Attribute normalColor, Attribute hotColor, Rect c } else { current += runeWidth; } - var nextRuneWidth = idx + 1 > -1 && idx + 1 < runes.Length ? Rune.ColumnWidth (runes [idx + 1]) : 0; - if (!isVertical && idx + 1 < runes.Length && current + nextRuneWidth > start + size) { + if (!isVertical && idx + 1 < runes.Length && current + Rune.ColumnWidth (runes [idx + 1]) > start + size) { break; } } diff --git a/Terminal.Gui/Core/View.cs b/Terminal.Gui/Core/View.cs index dd7a52f4d7..2870be8584 100644 --- a/Terminal.Gui/Core/View.cs +++ b/Terminal.Gui/Core/View.cs @@ -271,7 +271,7 @@ internal Direction FocusDirection { /// /// Configurable keybindings supported by the control /// - private Dictionary KeyBindings { get; set; } = new Dictionary (); + private Dictionary KeyBindings { get; set; } = new Dictionary (); private Dictionary> CommandImplementations { get; set; } = new Dictionary> (); /// @@ -1716,32 +1716,17 @@ public override bool ProcessKey (KeyEvent keyEvent) /// The key event passed. protected bool? InvokeKeybindings (KeyEvent keyEvent) { - bool? toReturn = null; - if (KeyBindings.ContainsKey (keyEvent.Key)) { + var command = KeyBindings [keyEvent.Key]; - foreach (var command in KeyBindings [keyEvent.Key]) { - - if (!CommandImplementations.ContainsKey (command)) { - throw new NotSupportedException ($"A KeyBinding was set up for the command {command} ({keyEvent.Key}) but that command is not supported by this View ({GetType ().Name})"); - } - - // each command has its own return value - var thisReturn = CommandImplementations [command] (); - - // if we haven't got anything yet, the current command result should be used - if (toReturn == null) { - toReturn = thisReturn; - } - - // if ever see a true then that's what we will return - if (thisReturn ?? false) { - toReturn = thisReturn.Value; - } + if (!CommandImplementations.ContainsKey (command)) { + throw new NotSupportedException ($"A KeyBinding was set up for the command {command} ({keyEvent.Key}) but that command is not supported by this View ({GetType ().Name})"); } + + return CommandImplementations [command] (); } - return toReturn; + return null; } @@ -1751,19 +1736,11 @@ public override bool ProcessKey (KeyEvent keyEvent) /// /// If the key is already bound to a different it will be /// rebound to this one - /// Commands are only ever applied to the current (i.e. this feature - /// cannot be used to switch focus to another view and perform multiple commands there) /// /// - /// The command(s) to run on the when is pressed. - /// When specifying multiple, all commands will be applied in sequence. The bound strike - /// will be consumed if any took effect. - public void AddKeyBinding (Key key, params Command [] command) + /// + public void AddKeyBinding (Key key, Command command) { - if (command.Length == 0) { - throw new ArgumentException ("At least one command must be specified", nameof (command)); - } - if (KeyBindings.ContainsKey (key)) { KeyBindings [key] = command; } else { @@ -1779,7 +1756,7 @@ public void AddKeyBinding (Key key, params Command [] command) protected void ReplaceKeyBinding (Key fromKey, Key toKey) { if (KeyBindings.ContainsKey (fromKey)) { - var value = KeyBindings [fromKey]; + Command value = KeyBindings [fromKey]; KeyBindings.Remove (fromKey); KeyBindings [toKey] = value; } @@ -1818,9 +1795,9 @@ public void ClearKeybinding (Key key) /// keys bound to the same command and this method will clear all of them. /// /// - public void ClearKeybinding (params Command [] command) + public void ClearKeybinding (Command command) { - foreach (var kvp in KeyBindings.Where (kvp => kvp.Value.SequenceEqual (command)).ToArray ()) { + foreach (var kvp in KeyBindings.Where (kvp => kvp.Value == command).ToArray ()) { KeyBindings.Remove (kvp.Key); } } @@ -1860,9 +1837,9 @@ public IEnumerable GetSupportedCommands () /// /// The command to search. /// The used by a - public Key GetKeyFromCommand (params Command [] command) + public Key GetKeyFromCommand (Command command) { - return KeyBindings.First (x => x.Value.SequenceEqual (command)).Key; + return KeyBindings.First (x => x.Value == command).Key; } /// @@ -2556,24 +2533,14 @@ public override bool Enabled { } } - /// - /// Gets or sets whether a view is cleared if the property is . - /// - public bool ClearOnVisibleFalse { get; set; } = true; - /// > public override bool Visible { get => base.Visible; set { if (base.Visible != value) { base.Visible = value; - if (!value) { - if (HasFocus) { - SetHasFocus (false, this); - } - if (ClearOnVisibleFalse) { - Clear (); - } + if (!value && HasFocus) { + SetHasFocus (false, this); } OnVisibleChanged (); SetNeedsDisplay (); @@ -3004,9 +2971,8 @@ public bool GetCurrentHeight (out int currentHeight) /// Determines the current based on the value. /// /// if is - /// or if is . - /// If it's overridden can return other values. - public virtual Attribute GetNormalColor () + /// or if is + public Attribute GetNormalColor () { return Enabled ? ColorScheme.Normal : ColorScheme.Disabled; } diff --git a/Terminal.Gui/Terminal.Gui.csproj b/Terminal.Gui/Terminal.Gui.csproj index 20200381cb..5dcf16d6f3 100644 --- a/Terminal.Gui/Terminal.Gui.csproj +++ b/Terminal.Gui/Terminal.Gui.csproj @@ -16,7 +16,7 @@ 1.0 - + diff --git a/Terminal.Gui/Views/ComboBox.cs b/Terminal.Gui/Views/ComboBox.cs index c26a340edc..efe228c785 100644 --- a/Terminal.Gui/Views/ComboBox.cs +++ b/Terminal.Gui/Views/ComboBox.cs @@ -16,161 +16,6 @@ namespace Terminal.Gui { /// public class ComboBox : View { - private class ComboListView : ListView { - private int highlighted = -1; - private bool isFocusing; - private ComboBox container; - private bool hideDropdownListOnClick; - - public ComboListView (ComboBox container, bool hideDropdownListOnClick) - { - Initialize (container, hideDropdownListOnClick); - } - - public ComboListView (ComboBox container, Rect rect, IList source, bool hideDropdownListOnClick) : base (rect, source) - { - Initialize (container, hideDropdownListOnClick); - } - - public ComboListView (ComboBox container, IList source, bool hideDropdownListOnClick) : base (source) - { - Initialize (container, hideDropdownListOnClick); - } - - private void Initialize (ComboBox container, bool hideDropdownListOnClick) - { - if (container == null) - throw new ArgumentNullException ("ComboBox container cannot be null.", nameof (container)); - - this.container = container; - HideDropdownListOnClick = hideDropdownListOnClick; - } - - public bool HideDropdownListOnClick { - get => hideDropdownListOnClick; - set => hideDropdownListOnClick = WantContinuousButtonPressed = value; - } - - public override bool MouseEvent (MouseEvent me) - { - var res = false; - var isMousePositionValid = IsMousePositionValid (me); - - if (isMousePositionValid) { - res = base.MouseEvent (me); - } - - if (HideDropdownListOnClick && me.Flags == MouseFlags.Button1Clicked) { - if (!isMousePositionValid && !isFocusing) { - container.isShow = false; - container.HideList (); - } else if (isMousePositionValid) { - OnOpenSelectedItem (); - } else { - isFocusing = false; - } - return true; - } else if (me.Flags == MouseFlags.ReportMousePosition && HideDropdownListOnClick) { - if (isMousePositionValid) { - highlighted = Math.Min (TopItem + me.Y, Source.Count); - SetNeedsDisplay (); - } - isFocusing = false; - return true; - } - - return res; - } - - private bool IsMousePositionValid (MouseEvent me) - { - if (me.X >= 0 && me.X < Frame.Width && me.Y >= 0 && me.Y < Frame.Height) { - return true; - } - return false; - } - - public override void Redraw (Rect bounds) - { - var current = ColorScheme.Focus; - Driver.SetAttribute (current); - Move (0, 0); - var f = Frame; - var item = TopItem; - bool focused = HasFocus; - int col = AllowsMarking ? 2 : 0; - int start = LeftItem; - - for (int row = 0; row < f.Height; row++, item++) { - bool isSelected = item == container.SelectedItem; - bool isHighlighted = hideDropdownListOnClick && item == highlighted; - - Attribute newcolor; - if (isHighlighted || (isSelected && !hideDropdownListOnClick)) { - newcolor = focused ? ColorScheme.Focus : ColorScheme.HotNormal; - } else if (isSelected && hideDropdownListOnClick) { - newcolor = focused ? ColorScheme.HotFocus : ColorScheme.HotNormal; - } else { - newcolor = focused ? GetNormalColor () : GetNormalColor (); - } - - if (newcolor != current) { - Driver.SetAttribute (newcolor); - current = newcolor; - } - - Move (0, row); - if (Source == null || item >= Source.Count) { - for (int c = 0; c < f.Width; c++) - Driver.AddRune (' '); - } else { - var rowEventArgs = new ListViewRowEventArgs (item); - OnRowRender (rowEventArgs); - if (rowEventArgs.RowAttribute != null && current != rowEventArgs.RowAttribute) { - current = (Attribute)rowEventArgs.RowAttribute; - Driver.SetAttribute (current); - } - if (AllowsMarking) { - Driver.AddRune (Source.IsMarked (item) ? (AllowsMultipleSelection ? Driver.Checked : Driver.Selected) : (AllowsMultipleSelection ? Driver.UnChecked : Driver.UnSelected)); - Driver.AddRune (' '); - } - Source.Render (this, Driver, isSelected, item, col, row, f.Width - col, start); - } - } - } - - public override bool OnEnter (View view) - { - if (hideDropdownListOnClick) { - isFocusing = true; - highlighted = container.SelectedItem; - Application.GrabMouse (this); - } - - return base.OnEnter (view); - } - - public override bool OnLeave (View view) - { - if (hideDropdownListOnClick) { - isFocusing = false; - highlighted = container.SelectedItem; - Application.UngrabMouse (); - } - - return base.OnLeave (view); - } - - public override bool OnSelectedChanged () - { - var res = base.OnSelectedChanged (); - - highlighted = SelectedItem; - - return res; - } - } - IListDataSource source; /// /// Gets or sets the backing this , enabling custom rendering. @@ -216,16 +61,6 @@ public void SetSource (IList source) /// public event Action SelectedItemChanged; - /// - /// This event is raised when the drop-down list is expanded. - /// - public event Action Expanded; - - /// - /// This event is raised when the drop-down list is collapsed. - /// - public event Action Collapsed; - /// /// This event is raised when the user Double Clicks on an item or presses ENTER to open the selected item. /// @@ -234,7 +69,7 @@ public void SetSource (IList source) readonly IList searchset = new List (); ustring text = ""; readonly TextField search; - readonly ComboListView listview; + readonly ListView listview; bool autoHide = true; int minimumHeight = 2; @@ -252,7 +87,7 @@ public ComboBox () : this (string.Empty) public ComboBox (ustring text) : base () { search = new TextField (""); - listview = new ComboListView (this, HideDropdownListOnClick) { LayoutStyle = LayoutStyle.Computed, CanFocus = true, TabStop = false }; + listview = new ListView () { LayoutStyle = LayoutStyle.Computed, CanFocus = true, TabStop = false }; Initialize (); Text = text; @@ -266,20 +101,7 @@ public ComboBox (ustring text) : base () public ComboBox (Rect rect, IList source) : base (rect) { search = new TextField ("") { Width = rect.Width }; - listview = new ComboListView (this, rect, source, HideDropdownListOnClick) { LayoutStyle = LayoutStyle.Computed, ColorScheme = Colors.Base }; - - Initialize (); - SetSource (source); - } - - /// - /// Initialize with the source. - /// - /// The source. - public ComboBox (IList source) : this (string.Empty) - { - search = new TextField (""); - listview = new ComboListView (this, source, HideDropdownListOnClick) { LayoutStyle = LayoutStyle.Computed, ColorScheme = Colors.Base }; + listview = new ListView (rect, source) { LayoutStyle = LayoutStyle.Computed, ColorScheme = Colors.Base }; Initialize (); SetSource (source); @@ -311,7 +133,7 @@ private void Initialize () listview.SelectedItemChanged += (ListViewItemEventArgs e) => { - if (!HideDropdownListOnClick && searchset.Count > 0) { + if (searchset.Count > 0) { SetValue (searchset [listview.SelectedItem]); } }; @@ -360,8 +182,6 @@ private void Initialize () private bool isShow = false; private int selectedItem = -1; - private int lastSelectedItem = -1; - private bool hideDropdownListOnClick; /// /// Gets the index of the currently selected item in the @@ -373,7 +193,7 @@ public int SelectedItem { if (selectedItem != value && (value == -1 || (source != null && value > -1 && value < source.Count))) { - selectedItem = lastSelectedItem = value; + selectedItem = value; if (selectedItem != -1) { SetValue (source.ToList () [selectedItem].ToString (), true); } else { @@ -416,14 +236,6 @@ public bool ReadOnly { } } - /// - /// Gets or sets if the drop-down list can be hide with a button click event. - /// - public bool HideDropdownListOnClick { - get => hideDropdownListOnClick; - set => hideDropdownListOnClick = listview.HideDropdownListOnClick = value; - } - /// public override bool MouseEvent (MouseEvent me) { @@ -456,25 +268,10 @@ public override bool MouseEvent (MouseEvent me) private void FocusSelectedItem () { listview.SelectedItem = SelectedItem > -1 ? SelectedItem : 0; - listview.TabStop = true; - listview.SetFocus (); - OnExpanded (); - } - - /// - /// Virtual method which invokes the event. - /// - public virtual void OnExpanded () - { - Expanded?.Invoke (); - } - - /// - /// Virtual method which invokes the event. - /// - public virtual void OnCollapsed () - { - Collapsed?.Invoke (); + if (SelectedItem > -1) { + listview.TabStop = true; + listview.SetFocus (); + } } /// @@ -527,7 +324,6 @@ public virtual bool OnSelectedChanged () public virtual bool OnOpenSelectedItem () { var value = search.Text; - lastSelectedItem = SelectedItem; OpenSelectedItem?.Invoke (new ListViewItemEventArgs (SelectedItem, value)); return true; @@ -542,7 +338,6 @@ public override void Redraw (Rect bounds) return; } - Driver.SetAttribute (ColorScheme.Focus); Move (Bounds.Right - 1, 0); Driver.AddRune (Driver.DownArrow); } @@ -567,16 +362,8 @@ bool UnixEmulation () bool CancelSelected () { search.SetFocus (); - if (ReadOnly || HideDropdownListOnClick) { - SelectedItem = lastSelectedItem; - if (SelectedItem > -1 && listview.Source?.Count > 0) { - search.Text = text = listview.Source.ToList () [SelectedItem].ToString (); - } - } else if (!ReadOnly) { - search.Text = text = ""; - selectedItem = lastSelectedItem; - OnSelectedChanged (); - } + search.Text = text = ""; + OnSelectedChanged (); Collapse (); return true; } @@ -848,16 +635,12 @@ private void ShowList () /// Consider making public private void HideList () { - if (lastSelectedItem != selectedItem) { - OnOpenSelectedItem (); - } var rect = listview.ViewToScreen (listview.Bounds); Reset (SelectedItem > -1); listview.Clear (rect); listview.TabStop = false; SuperView?.SendSubviewToBack (this); SuperView?.SetNeedsDisplay (rect); - OnCollapsed (); } /// diff --git a/Terminal.Gui/Views/ListView.cs b/Terminal.Gui/Views/ListView.cs index 1a37fea3af..525d4c2508 100644 --- a/Terminal.Gui/Views/ListView.cs +++ b/Terminal.Gui/Views/ListView.cs @@ -140,7 +140,7 @@ public IListDataSource Source { /// public void SetSource (IList source) { - if (source == null && (Source == null || !(Source is ListWrapper))) + if (source == null) Source = null; else { Source = MakeWrapper (source); @@ -157,7 +157,7 @@ public void SetSource (IList source) public Task SetSourceAsync (IList source) { return Task.Factory.StartNew (() => { - if (source == null && (Source == null || !(Source is ListWrapper))) + if (source == null) Source = null; else Source = MakeWrapper (source); @@ -521,17 +521,12 @@ public virtual bool MoveDown () top++; } else if (selected < top) { top = selected; - } else if (selected < top) { - top = selected; } OnSelectedChanged (); SetNeedsDisplay (); } else if (selected == 0) { OnSelectedChanged (); SetNeedsDisplay (); - } else if (selected >= top + Frame.Height) { - top = source.Count - Frame.Height; - SetNeedsDisplay (); } return true; @@ -566,9 +561,6 @@ public virtual bool MoveUp () } OnSelectedChanged (); SetNeedsDisplay (); - } else if (selected < top) { - top = selected; - SetNeedsDisplay (); } return true; } @@ -827,7 +819,7 @@ public ListWrapper (IList source) int GetMaxLengthItem () { - if (src == null || src?.Count == 0) { + if (src?.Count == 0) { return 0; } @@ -883,7 +875,7 @@ void RenderUstr (ConsoleDriver driver, ustring ustr, int col, int line, int widt public void Render (ListView container, ConsoleDriver driver, bool marked, int item, int col, int line, int width, int start = 0) { container.Move (col, line); - var t = src? [item]; + var t = src [item]; if (t == null) { RenderUstr (driver, ustring.Make (""), col, line, width); } else { diff --git a/Terminal.Gui/Views/Menu.cs b/Terminal.Gui/Views/Menu.cs index e40d852b5b..022b0b9c0c 100644 --- a/Terminal.Gui/Views/Menu.cs +++ b/Terminal.Gui/Views/Menu.cs @@ -384,26 +384,17 @@ class Menu : View { internal int current; internal View previousSubFocused; - internal static Rect MakeFrame (int x, int y, MenuItem [] items, Menu parent = null) + internal static Rect MakeFrame (int x, int y, MenuItem [] items) { if (items == null || items.Length == 0) { return new Rect (); } - int minX = x; - int minY = y; - int maxW = (items.Max (z => z?.Width) ?? 0) + 2; - int maxH = items.Length + 2; - if (parent != null && x + maxW > Driver.Cols) { - minX = Math.Max (parent.Frame.Right - parent.Frame.Width - maxW, 0); - } - if (y + maxH > Driver.Rows) { - minY = Math.Max (Driver.Rows - maxH, 0); - } - return new Rect (minX, minY, maxW, maxH); + int maxW = items.Max (z => z?.Width) ?? 0; + + return new Rect (x, y, maxW + 2, items.Length + 2); } - public Menu (MenuBar host, int x, int y, MenuBarItem barItems, Menu parent = null) - : base (MakeFrame (x, y, barItems.Children, parent)) + public Menu (MenuBar host, int x, int y, MenuBarItem barItems) : base (MakeFrame (x, y, barItems.Children)) { this.barItems = barItems; this.host = host; @@ -1241,7 +1232,7 @@ internal void OpenMenu (int index, int sIndex = -1, MenuBarItem subMenu = null) } else { var last = openSubMenu.Count > 0 ? openSubMenu.Last () : openMenu; if (!UseSubMenusSingleFrame) { - openCurrentMenu = new Menu (this, last.Frame.Left + last.Frame.Width, last.Frame.Top + 1 + last.current, subMenu, last); + openCurrentMenu = new Menu (this, last.Frame.Left + last.Frame.Width, last.Frame.Top + 1 + last.current, subMenu); } else { var first = openSubMenu.Count > 0 ? openSubMenu.First () : openMenu; var mbi = new MenuItem [2 + subMenu.Children.Length]; diff --git a/Terminal.Gui/Views/ScrollBarView.cs b/Terminal.Gui/Views/ScrollBarView.cs index f584a2ec7d..25152cae05 100644 --- a/Terminal.Gui/Views/ScrollBarView.cs +++ b/Terminal.Gui/Views/ScrollBarView.cs @@ -106,7 +106,7 @@ public ScrollBarView (View host, bool isVertical, bool showBothScrollIndicator = OtherScrollBarView.X = OtherScrollBarView.IsVertical ? Pos.Right (host) - 1 : Pos.Left (host); OtherScrollBarView.Y = OtherScrollBarView.IsVertical ? Pos.Top (host) : Pos.Bottom (host) - 1; OtherScrollBarView.Host.SuperView.Add (OtherScrollBarView); - OtherScrollBarView.ShowScrollIndicator = true; + OtherScrollBarView.showScrollIndicator = true; } ShowScrollIndicator = true; contentBottomRightCorner = new View (" ") { Visible = host.Visible }; @@ -116,7 +116,6 @@ public ScrollBarView (View host, bool isVertical, bool showBothScrollIndicator = contentBottomRightCorner.Width = 1; contentBottomRightCorner.Height = 1; contentBottomRightCorner.MouseClick += ContentBottomRightCorner_MouseClick; - ClearOnVisibleFalse = false; } private void Host_VisibleChanged () @@ -189,9 +188,11 @@ public bool IsVertical { public int Size { get => size; set { - size = value; - SetRelativeLayout (Bounds); - ShowHideScrollBars (false); + if (hosted || (otherScrollBarView != null && otherScrollBarView.hosted)) { + size = value + 1; + } else { + size = value; + } SetNeedsDisplay (); } } @@ -219,6 +220,9 @@ public int Position { position = Math.Max (position + max, 0); } var s = GetBarsize (vertical); + if (position + s == size && (hosted || (otherScrollBarView != null && otherScrollBarView.hosted))) { + position++; + } OnChangedPosition (); SetNeedsDisplay (); } @@ -323,13 +327,11 @@ public virtual void Refresh () ShowHideScrollBars (); } - void ShowHideScrollBars (bool redraw = true) + void ShowHideScrollBars () { if (!hosted || (hosted && !autoHideScrollBars)) { if (contentBottomRightCorner != null && contentBottomRightCorner.Visible) { contentBottomRightCorner.Visible = false; - } else if (otherScrollBarView != null && otherScrollBarView.contentBottomRightCorner != null && otherScrollBarView.contentBottomRightCorner.Visible) { - otherScrollBarView.contentBottomRightCorner.Visible = false; } return; } @@ -348,34 +350,24 @@ void ShowHideScrollBars (bool redraw = true) if (showBothScrollIndicator) { if (contentBottomRightCorner != null) { contentBottomRightCorner.Visible = true; - } else if (otherScrollBarView != null && otherScrollBarView.contentBottomRightCorner != null) { - otherScrollBarView.contentBottomRightCorner.Visible = true; } } else if (!showScrollIndicator) { if (contentBottomRightCorner != null) { contentBottomRightCorner.Visible = false; - } else if (otherScrollBarView != null && otherScrollBarView.contentBottomRightCorner != null) { - otherScrollBarView.contentBottomRightCorner.Visible = false; } if (Application.mouseGrabView != null && Application.mouseGrabView == this) { Application.UngrabMouse (); } - } else if (contentBottomRightCorner != null) { + } else { contentBottomRightCorner.Visible = false; - } else if (otherScrollBarView != null && otherScrollBarView.contentBottomRightCorner != null) { - otherScrollBarView.contentBottomRightCorner.Visible = false; } if (Host?.Visible == true && showScrollIndicator && !Visible) { Visible = true; } - if (Host?.Visible == true && otherScrollBarView?.showScrollIndicator == true && !otherScrollBarView.Visible) { + if (Host?.Visible == true && otherScrollBarView != null && otherScrollBarView.showScrollIndicator + && !otherScrollBarView.Visible) { otherScrollBarView.Visible = true; } - - if (!redraw) { - return; - } - if (showScrollIndicator) { Redraw (Bounds); } @@ -392,22 +384,13 @@ bool CheckBothScrollBars (ScrollBarView scrollBarView, bool pending = false) if (scrollBarView.showScrollIndicator) { scrollBarView.ShowScrollIndicator = false; } - if (scrollBarView.Visible) { - scrollBarView.Visible = false; - } } else if (barsize > 0 && barsize == scrollBarView.size && scrollBarView.OtherScrollBarView != null && pending) { if (scrollBarView.showScrollIndicator) { scrollBarView.ShowScrollIndicator = false; } - if (scrollBarView.Visible) { - scrollBarView.Visible = false; - } if (scrollBarView.OtherScrollBarView != null && scrollBarView.showBothScrollIndicator) { scrollBarView.OtherScrollBarView.ShowScrollIndicator = false; } - if (scrollBarView.OtherScrollBarView.Visible) { - scrollBarView.OtherScrollBarView.Visible = false; - } } else if (barsize > 0 && barsize == size && scrollBarView.OtherScrollBarView != null && !pending) { pending = true; } else { @@ -415,16 +398,10 @@ bool CheckBothScrollBars (ScrollBarView scrollBarView, bool pending = false) if (!scrollBarView.showBothScrollIndicator) { scrollBarView.OtherScrollBarView.ShowScrollIndicator = true; } - if (!scrollBarView.OtherScrollBarView.Visible) { - scrollBarView.OtherScrollBarView.Visible = true; - } } if (!scrollBarView.showScrollIndicator) { scrollBarView.ShowScrollIndicator = true; } - if (!scrollBarView.Visible) { - scrollBarView.Visible = true; - } } return pending; @@ -441,7 +418,7 @@ void SetWidthHeight () } else if (showScrollIndicator) { Width = vertical ? 1 : Dim.Width (Host) - 0; Height = vertical ? Dim.Height (Host) - 0 : 1; - } else if (otherScrollBarView?.showScrollIndicator == true) { + } else if (otherScrollBarView != null && otherScrollBarView.showScrollIndicator) { otherScrollBarView.Width = otherScrollBarView.vertical ? 1 : Dim.Width (Host) - 0; otherScrollBarView.Height = otherScrollBarView.vertical ? Dim.Height (Host) - 0 : 1; } @@ -455,10 +432,7 @@ void SetWidthHeight () /// public override void Redraw (Rect region) { - if (ColorScheme == null || ((!showScrollIndicator || Size == 0) && AutoHideScrollBars && Visible)) { - if ((!showScrollIndicator || Size == 0) && AutoHideScrollBars && Visible) { - ShowHideScrollBars (false); - } + if (ColorScheme == null || Size == 0) { return; } @@ -604,8 +578,6 @@ public override void Redraw (Rect region) if (contentBottomRightCorner != null && hosted && showBothScrollIndicator) { contentBottomRightCorner.Redraw (contentBottomRightCorner.Bounds); - } else if (otherScrollBarView != null && otherScrollBarView.contentBottomRightCorner != null && otherScrollBarView.hosted && otherScrollBarView.showBothScrollIndicator) { - otherScrollBarView.contentBottomRightCorner.Redraw (otherScrollBarView.contentBottomRightCorner.Bounds); } } diff --git a/Terminal.Gui/Views/ScrollView.cs b/Terminal.Gui/Views/ScrollView.cs index 306261dae3..a77a8f2aa2 100644 --- a/Terminal.Gui/Views/ScrollView.cs +++ b/Terminal.Gui/Views/ScrollView.cs @@ -517,6 +517,7 @@ public override bool MouseEvent (MouseEvent me) horizontal.MouseEvent (me); } else if (IsOverridden (me.View)) { Application.UngrabMouse (); + return false; } return true; } diff --git a/Terminal.Gui/Views/TextField.cs b/Terminal.Gui/Views/TextField.cs index dba4130bf9..ebd900da22 100644 --- a/Terminal.Gui/Views/TextField.cs +++ b/Terminal.Gui/Views/TextField.cs @@ -203,8 +203,6 @@ void Initialize (ustring text, int w) AddKeyBinding (Key.X | Key.CtrlMask, Command.Cut); AddKeyBinding (Key.V | Key.CtrlMask, Command.Paste); AddKeyBinding (Key.T | Key.CtrlMask, Command.SelectAll); - - AddKeyBinding (Key.R | Key.CtrlMask, Command.DeleteAll); AddKeyBinding (Key.D | Key.CtrlMask | Key.ShiftMask, Command.DeleteAll); currentCulture = Thread.CurrentThread.CurrentUICulture; @@ -414,7 +412,7 @@ public override void Redraw (Rect bounds) var selColor = new Attribute (ColorScheme.Focus.Background, ColorScheme.Focus.Foreground); SetSelectedStartSelectedLength (); - Driver.SetAttribute (GetNormalColor ()); + Driver.SetAttribute (ColorScheme.Focus); Move (0, 0); int p = first; @@ -466,12 +464,6 @@ public override void Redraw (Rect bounds) Autocomplete.RenderOverlay (renderAt); } - /// - public override Attribute GetNormalColor () - { - return Enabled ? ColorScheme.Focus : ColorScheme.Disabled; - } - Attribute GetReadOnlyColor () { if (ColorScheme.Disabled.Foreground == ColorScheme.Focus.Background) { diff --git a/Terminal.Gui/Views/TextView.cs b/Terminal.Gui/Views/TextView.cs index f671a5264f..1a28678497 100644 --- a/Terminal.Gui/Views/TextView.cs +++ b/Terminal.Gui/Views/TextView.cs @@ -1176,11 +1176,6 @@ public class TextView : View { /// public event Action TextChanged; - /// - /// Invoked with the unwrapped . - /// - public event Action UnwrappedCursorPosition; - /// /// Provides autocomplete context menu based on suggestions at the current cursor /// position. Populate to enable this feature @@ -1372,8 +1367,6 @@ void Initialize () AddKeyBinding (Key.Z | Key.CtrlMask, Command.Undo); AddKeyBinding (Key.R | Key.CtrlMask, Command.Redo); - - AddKeyBinding (Key.G | Key.CtrlMask, Command.DeleteAll); AddKeyBinding (Key.D | Key.CtrlMask | Key.ShiftMask, Command.DeleteAll); currentCulture = Thread.CurrentThread.CurrentUICulture; @@ -1615,7 +1608,12 @@ public ustring SelectedText { return ustring.Empty; } - return GetSelectedRegion (); + SetWrapModel (); + var sel = GetRegion (); + UpdateWrapModel (); + Adjust (); + + return sel; } } @@ -1938,7 +1936,7 @@ void ClearRegion (int left, int top, int right, int bottom) /// /// Sets the driver to the default color for the control where no text is being rendered. Defaults to . /// - protected virtual void SetNormalColor () + protected virtual void ColorNormal () { Driver.SetAttribute (GetNormalColor ()); } @@ -1950,7 +1948,7 @@ protected virtual void SetNormalColor () /// /// /// - protected virtual void SetNormalColor (List line, int idx) + protected virtual void ColorNormal (List line, int idx) { Driver.SetAttribute (GetNormalColor ()); } @@ -1962,27 +1960,9 @@ protected virtual void SetNormalColor (List line, int idx) /// /// /// - protected virtual void SetSelectionColor (List line, int idx) - { - Driver.SetAttribute (new Attribute (ColorScheme.Focus.Background, ColorScheme.Focus.Foreground)); - } - - /// - /// Sets the to an appropriate color for rendering the given of the - /// current . Override to provide custom coloring by calling - /// Defaults to . - /// - /// - /// - protected virtual void SetReadOnlyColor (List line, int idx) + protected virtual void ColorSelection (List line, int idx) { - Attribute attribute; - if (ColorScheme.Disabled.Foreground == ColorScheme.Focus.Background) { - attribute = new Attribute (ColorScheme.Focus.Foreground, ColorScheme.Focus.Background); - } else { - attribute = new Attribute (ColorScheme.Disabled.Foreground, ColorScheme.Focus.Background); - } - Driver.SetAttribute (attribute); + Driver.SetAttribute (ColorScheme.Focus); } /// @@ -1992,7 +1972,7 @@ protected virtual void SetReadOnlyColor (List line, int idx) /// /// /// - protected virtual void SetUsedColor (List line, int idx) + protected virtual void ColorUsed (List line, int idx) { Driver.SetAttribute (ColorScheme.HotFocus); } @@ -2042,18 +2022,10 @@ public override bool OnEnter (View view) } // Returns an encoded region start..end (top 32 bits are the row, low32 the column) - void GetEncodedRegionBounds (out long start, out long end, - int? startRow = null, int? startCol = null, int? cRow = null, int? cCol = null) - { - long selection; - long point; - if (startRow == null || startCol == null || cRow == null || cCol == null) { - selection = ((long)(uint)selectionStartRow << 32) | (uint)selectionStartColumn; - point = ((long)(uint)currentRow << 32) | (uint)currentColumn; - } else { - selection = ((long)(uint)startRow << 32) | (uint)startCol; - point = ((long)(uint)cRow << 32) | (uint)cCol; - } + void GetEncodedRegionBounds (out long start, out long end) + { + long selection = ((long)(uint)selectionStartRow << 32) | (uint)selectionStartColumn; + long point = ((long)(uint)currentRow << 32) | (uint)currentColumn; if (selection > point) { start = point; end = selection; @@ -2075,10 +2047,10 @@ bool PointInSelection (int col, int row) // Returns a ustring with the text in the selected // region. // - ustring GetRegion (int? sRow = null, int? sCol = null, int? cRow = null, int? cCol = null, TextModel model = null) + ustring GetRegion () { long start, end; - GetEncodedRegionBounds (out start, out end, sRow, sCol, cRow, cCol); + GetEncodedRegionBounds (out start, out end); if (start == end) { return ustring.Empty; } @@ -2086,7 +2058,7 @@ ustring GetRegion (int? sRow = null, int? sCol = null, int? cRow = null, int? cC var maxrow = ((int)(end >> 32)); int startCol = (int)(start & 0xffffffff); var endCol = (int)(end & 0xffffffff); - var line = model == null ? this.model.GetLine (startRow) : model.GetLine (startRow); + var line = model.GetLine (startRow); if (startRow == maxrow) return StringFromRunes (line.GetRange (startCol, endCol - startCol)); @@ -2094,10 +2066,9 @@ ustring GetRegion (int? sRow = null, int? sCol = null, int? cRow = null, int? cC ustring res = StringFromRunes (line.GetRange (startCol, line.Count - startCol)); for (int row = startRow + 1; row < maxrow; row++) { - res = res + ustring.Make (Environment.NewLine) + StringFromRunes (model == null - ? this.model.GetLine (row) : model.GetLine (row)); + res = res + ustring.Make (Environment.NewLine) + StringFromRunes (model.GetLine (row)); } - line = model == null ? this.model.GetLine (maxrow) : model.GetLine (maxrow); + line = model.GetLine (maxrow); res = res + ustring.Make (Environment.NewLine) + StringFromRunes (line.GetRange (0, endCol)); return res; } @@ -2349,42 +2320,10 @@ void UpdateWrapModel ([CallerMemberName] string caller = null) throw new InvalidOperationException ($"WordWrap settings was changed after the {currentCaller} call."); } - /// - /// Invoke the event with the unwrapped . - /// - public virtual void OnUnwrappedCursorPosition (int? cRow = null, int? cCol = null) - { - var row = cRow == null ? currentRow : cRow; - var col = cCol == null ? currentColumn : cCol; - if (cRow == null && cCol == null && wordWrap) { - row = wrapManager.GetModelLineFromWrappedLines (currentRow); - col = wrapManager.GetModelColFromWrappedLines (currentRow, currentColumn); - } - UnwrappedCursorPosition?.Invoke (new Point ((int)col, (int)row)); - } - - ustring GetSelectedRegion () - { - var cRow = currentRow; - var cCol = currentColumn; - var startRow = selectionStartRow; - var startCol = selectionStartColumn; - var model = this.model; - if (wordWrap) { - cRow = wrapManager.GetModelLineFromWrappedLines (currentRow); - cCol = wrapManager.GetModelColFromWrappedLines (currentRow, currentColumn); - startRow = wrapManager.GetModelLineFromWrappedLines (selectionStartRow); - startCol = wrapManager.GetModelColFromWrappedLines (selectionStartRow, selectionStartColumn); - model = wrapManager.Model; - } - OnUnwrappedCursorPosition (cRow, cCol); - return GetRegion (startRow, startCol, cRow, cCol, model); - } - /// public override void Redraw (Rect bounds) { - SetNormalColor (); + ColorNormal (); var offB = OffSetBackground (); int right = Frame.Width + offB.width + RightOffset; @@ -2400,14 +2339,12 @@ public override void Redraw (Rect bounds) var rune = idxCol >= lineRuneCount ? ' ' : line [idxCol]; var cols = Rune.ColumnWidth (rune); if (idxCol < line.Count && selecting && PointInSelection (idxCol, idxRow)) { - SetSelectionColor (line, idxCol); + ColorSelection (line, idxCol); } else if (idxCol == currentColumn && idxRow == currentRow && !selecting && !Used && HasFocus && idxCol < lineRuneCount) { - SetSelectionColor (line, idxCol); - } else if (ReadOnly) { - SetReadOnlyColor (line, idxCol); + ColorUsed (line, idxCol); } else { - SetNormalColor (line, idxCol); + ColorNormal (line, idxCol); } if (rune == '\t') { @@ -2431,13 +2368,13 @@ public override void Redraw (Rect bounds) } } if (col < right) { - SetNormalColor (); + ColorNormal (); ClearRegion (col, row, right, row + 1); } row++; } if (row < bottom) { - SetNormalColor (); + ColorNormal (); ClearRegion (bounds.Left, row, right, bottom); } @@ -2458,12 +2395,6 @@ public override void Redraw (Rect bounds) Autocomplete.RenderOverlay (renderAt); } - /// - public override Attribute GetNormalColor () - { - return Enabled ? ColorScheme.Focus : ColorScheme.Disabled; - } - /// public override bool CanFocus { get => base.CanFocus; @@ -2686,8 +2617,6 @@ void Adjust () } else { PositionCursor (); } - - OnUnwrappedCursorPosition (); } (int width, int height) OffSetBackground () @@ -3206,14 +3135,14 @@ void KillWordBackward () if (newPos.HasValue && currentRow == newPos.Value.row) { var restCount = currentColumn - newPos.Value.col; currentLine.RemoveRange (newPos.Value.col, restCount); - if (wordWrap) { + if (wordWrap && wrapManager.RemoveRange (currentRow, newPos.Value.col, restCount)) { wrapNeeded = true; } currentColumn = newPos.Value.col; } else if (newPos.HasValue) { var restCount = currentLine.Count - currentColumn; currentLine.RemoveRange (currentColumn, restCount); - if (wordWrap) { + if (wordWrap && wrapManager.RemoveRange (currentRow, currentColumn, restCount)) { wrapNeeded = true; } currentColumn = newPos.Value.col; @@ -3263,7 +3192,7 @@ void KillWordForward () restCount = currentLine.Count - currentColumn; currentLine.RemoveRange (currentColumn, restCount); } - if (wordWrap) { + if (wordWrap && wrapManager.RemoveRange (currentRow, currentColumn, restCount)) { wrapNeeded = true; } @@ -3650,24 +3579,16 @@ bool InsertText (KeyEvent kb) if (selecting) { ClearSelectedRegion (); } - if (kb.Key == Key.Enter) { - model.AddLine (currentRow + 1, new List ()); - currentRow++; - currentColumn = 0; - } else if ((uint)kb.Key == 13) { - currentColumn = 0; - } else { - if (Used) { - Insert ((uint)kb.Key); - currentColumn++; - if (currentColumn >= leftColumn + Frame.Width) { - leftColumn++; - SetNeedsDisplay (); - } - } else { - Insert ((uint)kb.Key); - currentColumn++; + if (Used) { + Insert ((uint)kb.Key); + currentColumn++; + if (currentColumn >= leftColumn + Frame.Width) { + leftColumn++; + SetNeedsDisplay (); } + } else { + Insert ((uint)kb.Key); + currentColumn++; } historyText.Add (new List> () { new List (GetCurrentLine ()) }, CursorPosition, @@ -3753,7 +3674,7 @@ bool DeleteTextForwards () historyText.Add (new List> () { new List (currentLine) }, CursorPosition, HistoryText.LineStatus.Replaced); - if (wordWrap) { + if (wordWrap && wrapManager.RemoveLine (currentRow, currentColumn, out _)) { wrapNeeded = true; } if (wrapNeeded) { @@ -3770,7 +3691,7 @@ bool DeleteTextForwards () historyText.Add (new List> () { new List (currentLine) }, CursorPosition, HistoryText.LineStatus.Replaced); - if (wordWrap) { + if (wordWrap && wrapManager.RemoveAt (currentRow, currentColumn)) { wrapNeeded = true; } @@ -3798,7 +3719,7 @@ bool DeleteTextBackwards () historyText.Add (new List> () { new List (currentLine) }, CursorPosition); currentLine.RemoveAt (currentColumn - 1); - if (wordWrap) { + if (wordWrap && wrapManager.RemoveAt (currentRow, currentColumn - 1)) { wrapNeeded = true; } currentColumn--; @@ -3830,7 +3751,8 @@ bool DeleteTextBackwards () var prevCount = prevRow.Count; model.GetLine (prowIdx).AddRange (GetCurrentLine ()); model.RemoveLine (currentRow); - if (wordWrap) { + bool lineRemoved = false; + if (wordWrap && wrapManager.RemoveLine (currentRow, currentColumn, out lineRemoved, false)) { wrapNeeded = true; } currentRow--; @@ -3838,7 +3760,11 @@ bool DeleteTextBackwards () historyText.Add (new List> () { GetCurrentLine () }, new Point (currentColumn, prowIdx), HistoryText.LineStatus.Replaced); - currentColumn = prevCount; + if (wrapNeeded && !lineRemoved) { + currentColumn = Math.Max (prevCount - 1, 0); + } else { + currentColumn = prevCount; + } SetNeedsDisplay (); } @@ -3945,7 +3871,6 @@ void StopSelecting () { shiftSelecting = false; selecting = false; - isButtonShift = false; } void ClearSelectedRegion () @@ -4260,6 +4185,8 @@ public override bool MouseEvent (MouseEvent ev) if (ev.Flags == MouseFlags.Button1Clicked) { if (shiftSelecting && !isButtonShift) { StopSelecting (); + } else if (!shiftSelecting && isButtonShift) { + isButtonShift = false; } ProcessMouseClick (ev, out _); PositionCursor (); diff --git a/Terminal.Gui/Views/TreeView.cs b/Terminal.Gui/Views/TreeView.cs index 5067295fbb..61fa4520c2 100644 --- a/Terminal.Gui/Views/TreeView.cs +++ b/Terminal.Gui/Views/TreeView.cs @@ -907,7 +907,7 @@ public void GoToEnd () { var map = BuildLineMap (); ScrollOffsetVertical = Math.Max (0, map.Count - Bounds.Height + 1); - SelectedObject = map.LastOrDefault ()?.Model; + SelectedObject = map.Last ().Model; SetNeedsDisplay (); } diff --git a/Terminal.Gui/Windows/Dialog.cs b/Terminal.Gui/Windows/Dialog.cs index c4d159eac4..84da2f0266 100644 --- a/Terminal.Gui/Windows/Dialog.cs +++ b/Terminal.Gui/Windows/Dialog.cs @@ -160,7 +160,7 @@ void LayoutStartedHandler () switch (ButtonAlignment) { case ButtonAlignments.Center: // Center Buttons - shiftLeft = (Bounds.Width - buttonsWidth - buttons.Count - 2) / 2 + 1; + shiftLeft = Math.Max ((Bounds.Width - buttonsWidth - buttons.Count - 2) / 2 + 1, 0); for (int i = buttons.Count - 1; i >= 0; i--) { Button button = buttons [i]; shiftLeft += button.Frame.Width + (i == buttons.Count - 1 ? 0 : 1); @@ -231,5 +231,6 @@ public override bool ProcessKey (KeyEvent kb) } return base.ProcessKey (kb); } + } } diff --git a/Terminal.Gui/Windows/MessageBox.cs b/Terminal.Gui/Windows/MessageBox.cs index c1cb326824..b8fdd8a162 100644 --- a/Terminal.Gui/Windows/MessageBox.cs +++ b/Terminal.Gui/Windows/MessageBox.cs @@ -1,6 +1,7 @@ using NStack; using System; using System.Collections.Generic; +using System.Linq; namespace Terminal.Gui { /// @@ -239,16 +240,7 @@ static int QueryFull (bool useErrorColors, int width, int height, ustring title, int defaultButton = 0, Border border = null, params ustring [] buttons) { const int defaultWidth = 50; - int maxWidthLine = TextFormatter.MaxWidthLine (message); - if (maxWidthLine > Application.Driver.Cols) { - maxWidthLine = Application.Driver.Cols; - } - if (width == 0) { - maxWidthLine = Math.Max (maxWidthLine, defaultWidth); - } else { - maxWidthLine = width; - } - int textWidth = TextFormatter.MaxWidth (message, maxWidthLine); + int textWidth = TextFormatter.MaxWidth (message, width == 0 ? defaultWidth : width); int textHeight = TextFormatter.MaxLines (message, textWidth); // message.Count (ustring.Make ('\n')) + 1; int msgboxHeight = Math.Max (1, textHeight) + 4; // textHeight + (top + top padding + buttons + bottom) @@ -270,11 +262,10 @@ static int QueryFull (bool useErrorColors, int width, int height, ustring title, // Create Dialog (retain backwards compat by supporting specifying height/width) Dialog d; if (width == 0 & height == 0) { - d = new Dialog (title, buttonList.ToArray ()) { - Height = msgboxHeight - }; + d = new Dialog (title, buttonList.ToArray ()); + d.Height = msgboxHeight; } else { - d = new Dialog (title, width, Math.Max (height, 4), buttonList.ToArray ()); + d = new Dialog (title, Math.Max (width, textWidth) + 4, height, buttonList.ToArray ()); } if (border != null) { @@ -286,22 +277,19 @@ static int QueryFull (bool useErrorColors, int width, int height, ustring title, } if (message != null) { - var l = new Label (message) { - LayoutStyle = LayoutStyle.Computed, - TextAlignment = TextAlignment.Centered, - X = Pos.Center (), - Y = Pos.Center (), - Width = Dim.Fill (), - Height = Dim.Fill (1), - AutoSize = false - }; + var l = new Label (textWidth > width ? 0 : (width - 4 - textWidth) / 2, 1, message); + l.LayoutStyle = LayoutStyle.Computed; + l.TextAlignment = TextAlignment.Centered; + l.X = Pos.Center (); + l.Y = Pos.Center (); + l.Width = Dim.Fill (2); + l.Height = Dim.Fill (1); d.Add (l); } - if (width == 0 & height == 0) { - // Dynamically size Width - d.Width = Math.Max (maxWidthLine, Math.Max (title.ConsoleWidth, Math.Max (textWidth + 2, d.GetButtonsWidth ()))); // textWidth + (left + padding + padding + right) - } + // Dynamically size Width + int msgboxWidth = Math.Max (defaultWidth, Math.Max (title.RuneCount + 8, Math.Max (textWidth + 4, d.GetButtonsWidth ()) + 8)); // textWidth + (left + padding + padding + right) + d.Width = msgboxWidth; // Setup actions Clicked = -1; diff --git a/Terminal.Gui/Windows/Wizard.cs b/Terminal.Gui/Windows/Wizard.cs index dd0b224135..9d1be30940 100644 --- a/Terminal.Gui/Windows/Wizard.cs +++ b/Terminal.Gui/Windows/Wizard.cs @@ -203,6 +203,11 @@ public WizardStep (ustring title) base.Add (contentView); + helpTextView.ColorScheme = new ColorScheme () { + Normal = new Attribute(Color.Gray, Color.DarkGray), + Focus = new Attribute(Color.DarkGray, Color.Gray), + HotFocus = new Attribute(Color.White, Color.DarkGray) + }; helpTextView.ReadOnly = true; helpTextView.WordWrap = true; base.Add (helpTextView); diff --git a/UICatalog/KeyBindingsDialog.cs b/UICatalog/KeyBindingsDialog.cs index 95b1fcf91e..cb2c1b9cfe 100644 --- a/UICatalog/KeyBindingsDialog.cs +++ b/UICatalog/KeyBindingsDialog.cs @@ -132,7 +132,7 @@ public KeyBindingsDialog () : base("Keybindings", 50,10) Width = Dim.Percent (50), Height = Dim.Percent (100) - 1, }; - + commandsListView.SelectedItemChanged += CommandsListView_SelectedItemChanged; Add (commandsListView); keyLabel = new Label () { @@ -143,7 +143,7 @@ public KeyBindingsDialog () : base("Keybindings", 50,10) }; Add (keyLabel); - var btnChange = new Button ("Ch_ange") { + var btnChange = new Button ("Change") { X = Pos.Percent (50), Y = 1, }; @@ -160,13 +160,6 @@ public KeyBindingsDialog () : base("Keybindings", 50,10) var cancel = new Button ("Cancel"); cancel.Clicked += ()=>Application.RequestStop(); AddButton (cancel); - - // Register event handler as the last thing in constructor to prevent early calls - // before it is even shown (e.g. OnEnter) - commandsListView.SelectedItemChanged += CommandsListView_SelectedItemChanged; - - // Setup to show first ListView entry - SetTextBoxToShowBinding (commands.First()); } private void RemapKey () diff --git a/UICatalog/Scenarios/AutoSizeAndDirectionText.cs b/UICatalog/Scenarios/AutoSizeAndDirectionText.cs index 342c87bd64..4cfa487d47 100644 --- a/UICatalog/Scenarios/AutoSizeAndDirectionText.cs +++ b/UICatalog/Scenarios/AutoSizeAndDirectionText.cs @@ -33,6 +33,7 @@ public override void Setup () Y = Pos.Center (), Width = 20, Height = 5, + ColorScheme = color, Text = text }; diff --git a/UICatalog/Scenarios/BordersComparisons.cs b/UICatalog/Scenarios/BordersComparisons.cs index baaabcae01..b07c76e52f 100644 --- a/UICatalog/Scenarios/BordersComparisons.cs +++ b/UICatalog/Scenarios/BordersComparisons.cs @@ -46,6 +46,7 @@ public override void Init (Toplevel top, ColorScheme colorScheme) Y = Pos.AnchorEnd (2), Width = 10, Height = Dim.Fill (), + ColorScheme = Colors.Dialog, Text = "1234567890" }; var tf2 = new TextField ("1234567890") { @@ -85,6 +86,7 @@ public override void Init (Toplevel top, ColorScheme colorScheme) Y = Pos.AnchorEnd (2), Width = 10, Height = Dim.Fill (), + ColorScheme = Colors.Dialog, Text = "1234567890" }; var tf4 = new TextField ("1234567890") { @@ -121,6 +123,7 @@ public override void Init (Toplevel top, ColorScheme colorScheme) Y = Pos.AnchorEnd (2), Width = 10, Height = Dim.Fill (), + ColorScheme = Colors.Dialog, Text = "1234567890" }; var tf6 = new TextField ("1234567890") { diff --git a/UICatalog/Scenarios/BordersOnFrameView.cs b/UICatalog/Scenarios/BordersOnFrameView.cs index ee205f49f4..4eaf21c316 100644 --- a/UICatalog/Scenarios/BordersOnFrameView.cs +++ b/UICatalog/Scenarios/BordersOnFrameView.cs @@ -56,6 +56,7 @@ public override void Setup () Y = Pos.AnchorEnd (2), Width = 10, Height = Dim.Fill (), + ColorScheme = Colors.Dialog, Text = "1234567890" }; smartView.Add (tf1, button, label, tf2, tv); diff --git a/UICatalog/Scenarios/BordersOnToplevel.cs b/UICatalog/Scenarios/BordersOnToplevel.cs index edf238e6a5..7364549a87 100644 --- a/UICatalog/Scenarios/BordersOnToplevel.cs +++ b/UICatalog/Scenarios/BordersOnToplevel.cs @@ -56,6 +56,7 @@ public override void Setup () Y = Pos.AnchorEnd (2), Width = 10, Height = Dim.Fill (), + ColorScheme = Colors.Dialog, Text = "1234567890" }; smartView.Add (tf1, button, label, tf2, tv); diff --git a/UICatalog/Scenarios/BordersOnWindow.cs b/UICatalog/Scenarios/BordersOnWindow.cs index 51e441b3ac..5aaf97466c 100644 --- a/UICatalog/Scenarios/BordersOnWindow.cs +++ b/UICatalog/Scenarios/BordersOnWindow.cs @@ -56,6 +56,7 @@ public override void Setup () Y = Pos.AnchorEnd (2), Width = 10, Height = Dim.Fill (), + ColorScheme = Colors.Dialog, Text = "1234567890" }; smartView.Add (tf1, button, label, tf2, tv); diff --git a/UICatalog/Scenarios/ComboBoxIteration.cs b/UICatalog/Scenarios/ComboBoxIteration.cs index 1c9e670028..f3b90d552a 100644 --- a/UICatalog/Scenarios/ComboBoxIteration.cs +++ b/UICatalog/Scenarios/ComboBoxIteration.cs @@ -33,8 +33,7 @@ public override void Setup () X = Pos.Right (listview) + 1, Y = Pos.Bottom (lbListView) + 1, Height = Dim.Fill (2), - Width = Dim.Percent (40), - HideDropdownListOnClick = true + Width = Dim.Percent (40) }; comboBox.SetSource (items); diff --git a/UICatalog/Scenarios/DynamicMenuBar.cs b/UICatalog/Scenarios/DynamicMenuBar.cs index 82309b9656..629705acdf 100644 --- a/UICatalog/Scenarios/DynamicMenuBar.cs +++ b/UICatalog/Scenarios/DynamicMenuBar.cs @@ -681,6 +681,7 @@ public DynamicMenuBarDetails (ustring title) : base (title) Add (_lblAction); _txtAction = new TextView () { + ColorScheme = Colors.Dialog, X = Pos.Left (_txtTitle), Y = Pos.Top (_lblAction), Width = Dim.Fill (), diff --git a/UICatalog/Scenarios/DynamicStatusBar.cs b/UICatalog/Scenarios/DynamicStatusBar.cs index 5583afbcb0..3475829e29 100644 --- a/UICatalog/Scenarios/DynamicStatusBar.cs +++ b/UICatalog/Scenarios/DynamicStatusBar.cs @@ -383,6 +383,7 @@ public DynamicStatusBarDetails (ustring title) : base (title) Add (_lblAction); _txtAction = new TextView () { + ColorScheme = Colors.Dialog, X = Pos.Left (_txtTitle), Y = Pos.Top (_lblAction), Width = Dim.Fill (), diff --git a/UICatalog/Scenarios/Editor.cs b/UICatalog/Scenarios/Editor.cs index 633158ee57..bfc18fd9ef 100644 --- a/UICatalog/Scenarios/Editor.cs +++ b/UICatalog/Scenarios/Editor.cs @@ -26,11 +26,11 @@ public class Editor : Scenario { private string _textToReplace; private bool _matchCase; private bool _matchWholeWord; - private Window _winDialog; + private Window winDialog; private TabView _tabView; - private MenuItem _miForceMinimumPosToZero; - private bool _forceMinimumPosToZero = true; - private readonly List _cultureInfos = Application.SupportedCultures; + private MenuItem miForceMinimumPosToZero; + private bool forceMinimumPosToZero = true; + private readonly List cultureInfos = Application.SupportedCultures; public override void Init (Toplevel top, ColorScheme colorScheme) { @@ -60,12 +60,6 @@ public override void Init (Toplevel top, ColorScheme colorScheme) CreateDemoFile (_fileName); - var siCursorPosition = new StatusItem (Key.Null, "", null); - - _textView.UnwrappedCursorPosition += (e) => { - siCursorPosition.Title = $"Ln {e.Y + 1}, Col {e.X + 1}"; - }; - LoadFile (); Win.Add (_textView); @@ -109,17 +103,16 @@ public override void Init (Toplevel top, ColorScheme colorScheme) CreateVisibleChecked () }), new MenuBarItem ("Conte_xtMenu", new MenuItem [] { - _miForceMinimumPosToZero = new MenuItem ("ForceMinimumPosTo_Zero", "", () => { - _miForceMinimumPosToZero.Checked = _forceMinimumPosToZero = !_forceMinimumPosToZero; - _textView.ContextMenu.ForceMinimumPosToZero = _forceMinimumPosToZero; - }) { CheckType = MenuItemCheckStyle.Checked, Checked = _forceMinimumPosToZero }, + miForceMinimumPosToZero = new MenuItem ("ForceMinimumPosTo_Zero", "", () => { + miForceMinimumPosToZero.Checked = forceMinimumPosToZero = !forceMinimumPosToZero; + _textView.ContextMenu.ForceMinimumPosToZero = forceMinimumPosToZero; + }) { CheckType = MenuItemCheckStyle.Checked, Checked = forceMinimumPosToZero }, new MenuBarItem ("_Languages", GetSupportedCultures ()) }) }); Top.Add (menu); var statusBar = new StatusBar (new StatusItem [] { - siCursorPosition, new StatusItem(Key.F2, "~F2~ Open", () => Open()), new StatusItem(Key.F3, "~F3~ Save", () => Save()), new StatusItem(Key.F4, "~F4~ Save As", () => SaveAs()), @@ -175,20 +168,20 @@ public override void Init (Toplevel top, ColorScheme colorScheme) Win.KeyPress += (e) => { var keys = ShortcutHelper.GetModifiersKey (e.KeyEvent); - if (_winDialog != null && (e.KeyEvent.Key == Key.Esc + if (winDialog != null && (e.KeyEvent.Key == Key.Esc || e.KeyEvent.Key == (Key.Q | Key.CtrlMask))) { DisposeWinDialog (); } else if (e.KeyEvent.Key == (Key.Q | Key.CtrlMask)) { Quit (); e.Handled = true; - } else if (_winDialog != null && keys == (Key.Tab | Key.CtrlMask)) { + } else if (winDialog != null && keys == (Key.Tab | Key.CtrlMask)) { if (_tabView.SelectedTab == _tabView.Tabs.ElementAt (_tabView.Tabs.Count - 1)) { _tabView.SelectedTab = _tabView.Tabs.ElementAt (0); } else { _tabView.SwitchTabBy (1); } e.Handled = true; - } else if (_winDialog != null && keys == (Key.Tab | Key.CtrlMask | Key.ShiftMask)) { + } else if (winDialog != null && keys == (Key.Tab | Key.CtrlMask | Key.ShiftMask)) { if (_tabView.SelectedTab == _tabView.Tabs.ElementAt (0)) { _tabView.SelectedTab = _tabView.Tabs.ElementAt (_tabView.Tabs.Count - 1); } else { @@ -203,9 +196,9 @@ public override void Init (Toplevel top, ColorScheme colorScheme) private void DisposeWinDialog () { - _winDialog.Dispose (); - Win.Remove (_winDialog); - _winDialog = null; + winDialog.Dispose (); + Win.Remove (winDialog); + winDialog = null; } public override void Setup () @@ -283,7 +276,7 @@ private void ContinueFind (bool next = true, bool replace = false) Find (); return; } else if (replace && (string.IsNullOrEmpty (_textToFind) - || (_winDialog == null && string.IsNullOrEmpty (_textToReplace)))) { + || (winDialog == null && string.IsNullOrEmpty (_textToReplace)))) { Replace (); return; } @@ -330,7 +323,7 @@ private void ReplacePrevious () private void ReplaceAll () { - if (string.IsNullOrEmpty (_textToFind) || (string.IsNullOrEmpty (_textToReplace) && _winDialog == null)) { + if (string.IsNullOrEmpty (_textToFind) || (string.IsNullOrEmpty (_textToReplace) && winDialog == null)) { Replace (); return; } @@ -475,7 +468,7 @@ private MenuItem [] GetSupportedCultures () List supportedCultures = new List (); var index = -1; - foreach (var c in _cultureInfos) { + foreach (var c in cultureInfos) { var culture = new MenuItem { CheckType = MenuItemCheckStyle.Checked }; @@ -721,17 +714,17 @@ void SetCursor (CursorVisibility visibility) private void CreateFindReplace (bool isFind = true) { - if (_winDialog != null) { - _winDialog.SetFocus (); + if (winDialog != null) { + winDialog.SetFocus (); return; } - _winDialog = new Window (isFind ? "Find" : "Replace") { + winDialog = new Window (isFind ? "Find" : "Replace") { X = Win.Bounds.Width / 2 - 30, Y = Win.Bounds.Height / 2 - 10, ColorScheme = Colors.TopLevel }; - _winDialog.Border.Effect3D = true; + winDialog.Border.Effect3D = true; _tabView = new TabView () { X = 0, @@ -744,15 +737,15 @@ private void CreateFindReplace (bool isFind = true) var replace = ReplaceTab (); _tabView.AddTab (new TabView.Tab ("Replace", replace), !isFind); _tabView.SelectedTabChanged += (s, e) => _tabView.SelectedTab.View.FocusFirst (); - _winDialog.Add (_tabView); + winDialog.Add (_tabView); - Win.Add (_winDialog); + Win.Add (winDialog); - _winDialog.Width = replace.Width + 4; - _winDialog.Height = replace.Height + 4; + winDialog.Width = replace.Width + 4; + winDialog.Height = replace.Height + 4; - _winDialog.SuperView.BringSubviewToFront (_winDialog); - _winDialog.SetFocus (); + winDialog.SuperView.BringSubviewToFront (winDialog); + winDialog.SetFocus (); } private void SetFindText () diff --git a/UICatalog/Scenarios/GraphViewExample.cs b/UICatalog/Scenarios/GraphViewExample.cs index 8404f044b1..3e5890a7bf 100644 --- a/UICatalog/Scenarios/GraphViewExample.cs +++ b/UICatalog/Scenarios/GraphViewExample.cs @@ -101,8 +101,7 @@ private void MultiBarGraph () about.Text = "Housing Expenditures by income thirds 1996-2003"; - var fore = graphView.ColorScheme.Normal.Foreground == Color.Black ? Color.White : graphView.ColorScheme.Normal.Foreground; - var black = Application.Driver.MakeAttribute (fore, Color.Black); + var black = Application.Driver.MakeAttribute (graphView.ColorScheme.Normal.Foreground, Color.Black); var cyan = Application.Driver.MakeAttribute (Color.BrightCyan, Color.Black); var magenta = Application.Driver.MakeAttribute (Color.BrightMagenta, Color.Black); var red = Application.Driver.MakeAttribute (Color.BrightRed, Color.Black); @@ -139,7 +138,7 @@ private void MultiBarGraph () graphView.AxisY.Minimum = 0; - var legend = new LegendAnnotation (new Rect (graphView.Bounds.Width - 20, 0, 20, 5)); + var legend = new LegendAnnotation (new Rect (graphView.Bounds.Width - 20,0, 20, 5)); legend.AddEntry (new GraphCellToRender (stiple, series.SubSeries.ElementAt (0).OverrideBarColor), "Lower Third"); legend.AddEntry (new GraphCellToRender (stiple, series.SubSeries.ElementAt (1).OverrideBarColor), "Middle Third"); legend.AddEntry (new GraphCellToRender (stiple, series.SubSeries.ElementAt (2).OverrideBarColor), "Upper Third"); @@ -541,19 +540,26 @@ protected override void DrawBarLine (GraphView graph, Terminal.Gui.Point start, var driver = Application.Driver; int x = start.X; - for (int y = end.Y; y <= start.Y; y++) { + for(int y = end.Y; y <= start.Y; y++) { var height = graph.ScreenToGraphSpace (x, y).Y; if (height >= 85) { - driver.SetAttribute (red); - } else if (height >= 66) { + driver.SetAttribute(red); + } + else + if (height >= 66) { driver.SetAttribute (brightred); - } else if (height >= 45) { + } + else + if (height >= 45) { driver.SetAttribute (brightyellow); - } else if (height >= 25) { + } + else + if (height >= 25) { driver.SetAttribute (brightgreen); - } else { + } + else{ driver.SetAttribute (green); } @@ -677,8 +683,9 @@ private void Zoom (float factor) private void Margin (bool left, bool increase) { if (left) { - graphView.MarginLeft = (uint)Math.Max (0, graphView.MarginLeft + (increase ? 1 : -1)); - } else { + graphView.MarginLeft = (uint)Math.Max(0,graphView.MarginLeft + (increase ? 1 : -1)); + } + else { graphView.MarginBottom = (uint)Math.Max (0, graphView.MarginBottom + (increase ? 1 : -1)); } diff --git a/UICatalog/Scenarios/MessageBoxes.cs b/UICatalog/Scenarios/MessageBoxes.cs index 0b9aaa7026..b4ebcc0a66 100644 --- a/UICatalog/Scenarios/MessageBoxes.cs +++ b/UICatalog/Scenarios/MessageBoxes.cs @@ -90,6 +90,7 @@ public override void Setup () Y = Pos.Top (label), Width = Dim.Fill (), Height = 5, + ColorScheme = Colors.Dialog, }; frame.Add (messageEdit); diff --git a/UICatalog/Scenarios/ProgressBarStyles.cs b/UICatalog/Scenarios/ProgressBarStyles.cs index 0b8ee4bfe4..74f6ebf94d 100644 --- a/UICatalog/Scenarios/ProgressBarStyles.cs +++ b/UICatalog/Scenarios/ProgressBarStyles.cs @@ -135,15 +135,11 @@ public override void Setup () void Top_Unloaded () { - if (_fractionTimer != null) { - _fractionTimer.Dispose (); - _fractionTimer = null; - } if (_pulseTimer != null) { _pulseTimer.Dispose (); _pulseTimer = null; + Top.Unloaded -= Top_Unloaded; } - Top.Unloaded -= Top_Unloaded; } } } diff --git a/UICatalog/Scenarios/SyntaxHighlighting.cs b/UICatalog/Scenarios/SyntaxHighlighting.cs index cd3436341c..887542c404 100644 --- a/UICatalog/Scenarios/SyntaxHighlighting.cs +++ b/UICatalog/Scenarios/SyntaxHighlighting.cs @@ -38,7 +38,7 @@ public override void Setup () Height = Dim.Fill (1), }; - textView.Init (); + textView.Init(); textView.Text = "SELECT TOP 100 * \nfrom\n MyDb.dbo.Biochemistry;"; @@ -63,49 +63,49 @@ private void Quit () Application.RequestStop (); } - private class SqlTextView : TextView { + private class SqlTextView : TextView{ - private HashSet keywords = new HashSet (StringComparer.CurrentCultureIgnoreCase); + private HashSet keywords = new HashSet(StringComparer.CurrentCultureIgnoreCase); private Attribute blue; private Attribute white; private Attribute magenta; - public void Init () + public void Init() { - keywords.Add ("select"); - keywords.Add ("distinct"); - keywords.Add ("top"); - keywords.Add ("from"); - keywords.Add ("create"); - keywords.Add ("CIPHER"); - keywords.Add ("CLASS_ORIGIN"); - keywords.Add ("CLIENT"); - keywords.Add ("CLOSE"); - keywords.Add ("COALESCE"); - keywords.Add ("CODE"); - keywords.Add ("COLUMNS"); - keywords.Add ("COLUMN_FORMAT"); - keywords.Add ("COLUMN_NAME"); - keywords.Add ("COMMENT"); - keywords.Add ("COMMIT"); - keywords.Add ("COMPACT"); - keywords.Add ("COMPLETION"); - keywords.Add ("COMPRESSED"); - keywords.Add ("COMPRESSION"); - keywords.Add ("CONCURRENT"); - keywords.Add ("CONNECT"); - keywords.Add ("CONNECTION"); - keywords.Add ("CONSISTENT"); - keywords.Add ("CONSTRAINT_CATALOG"); - keywords.Add ("CONSTRAINT_SCHEMA"); - keywords.Add ("CONSTRAINT_NAME"); - keywords.Add ("CONTAINS"); - keywords.Add ("CONTEXT"); - keywords.Add ("CONTRIBUTORS"); - keywords.Add ("COPY"); - keywords.Add ("CPU"); - keywords.Add ("CURSOR_NAME"); + keywords.Add("select"); + keywords.Add("distinct"); + keywords.Add("top"); + keywords.Add("from"); + keywords.Add("create"); + keywords.Add("CIPHER"); + keywords.Add("CLASS_ORIGIN"); + keywords.Add("CLIENT"); + keywords.Add("CLOSE"); + keywords.Add("COALESCE"); + keywords.Add("CODE"); + keywords.Add("COLUMNS"); + keywords.Add("COLUMN_FORMAT"); + keywords.Add("COLUMN_NAME"); + keywords.Add("COMMENT"); + keywords.Add("COMMIT"); + keywords.Add("COMPACT"); + keywords.Add("COMPLETION"); + keywords.Add("COMPRESSED"); + keywords.Add("COMPRESSION"); + keywords.Add("CONCURRENT"); + keywords.Add("CONNECT"); + keywords.Add("CONNECTION"); + keywords.Add("CONSISTENT"); + keywords.Add("CONSTRAINT_CATALOG"); + keywords.Add("CONSTRAINT_SCHEMA"); + keywords.Add("CONSTRAINT_NAME"); + keywords.Add("CONTAINS"); + keywords.Add("CONTEXT"); + keywords.Add("CONTRIBUTORS"); + keywords.Add("COPY"); + keywords.Add("CPU"); + keywords.Add("CURSOR_NAME"); keywords.Add ("primary"); keywords.Add ("key"); keywords.Add ("insert"); @@ -138,26 +138,29 @@ public void Init () keywords.Add ("union"); keywords.Add ("exists"); - Autocomplete.AllSuggestions = keywords.ToList (); + Autocomplete.AllSuggestions = keywords.ToList(); magenta = Driver.MakeAttribute (Color.Magenta, Color.Black); blue = Driver.MakeAttribute (Color.Cyan, Color.Black); white = Driver.MakeAttribute (Color.White, Color.Black); } - protected override void SetNormalColor () + protected override void ColorNormal () { Driver.SetAttribute (white); } - protected override void SetNormalColor (List line, int idx) + protected override void ColorNormal (List line, int idx) { - if (IsInStringLiteral (line, idx)) { + if(IsInStringLiteral(line,idx)) { Driver.SetAttribute (magenta); - } else - if (IsKeyword (line, idx)) { + } + else + if(IsKeyword(line,idx)) + { Driver.SetAttribute (blue); - } else { + } + else{ Driver.SetAttribute (white); } } @@ -165,9 +168,9 @@ protected override void SetNormalColor (List line, int idx) private bool IsInStringLiteral (List line, int idx) { string strLine = new string (line.Select (r => (char)r).ToArray ()); - - foreach (Match m in Regex.Matches (strLine, "'[^']*'")) { - if (idx >= m.Index && idx < m.Index + m.Length) { + + foreach(Match m in Regex.Matches(strLine, "'[^']*'")) { + if(idx >= m.Index && idx < m.Index+m.Length) { return true; } } @@ -175,36 +178,37 @@ private bool IsInStringLiteral (List line, int idx) return false; } - private bool IsKeyword (List line, int idx) + private bool IsKeyword(List line, int idx) { - var word = IdxToWord (line, idx); - - if (string.IsNullOrWhiteSpace (word)) { + var word = IdxToWord(line,idx); + + if(string.IsNullOrWhiteSpace(word)){ return false; } - return keywords.Contains (word, StringComparer.CurrentCultureIgnoreCase); + return keywords.Contains(word,StringComparer.CurrentCultureIgnoreCase); } - private string IdxToWord (List line, int idx) + private string IdxToWord(List line, int idx) { - var words = Regex.Split ( - new string (line.Select (r => (char)r).ToArray ()), + var words = Regex.Split( + new string(line.Select(r=>(char)r).ToArray()), "\\b"); int count = 0; string current = null; - foreach (var word in words) { + foreach(var word in words) + { current = word; - count += word.Length; - if (count > idx) { + count+= word.Length; + if(count > idx){ break; } } - return current?.Trim (); + return current?.Trim(); } } } diff --git a/UICatalog/Scenarios/Text.cs b/UICatalog/Scenarios/Text.cs index 7b9a256281..836a8bb9ea 100644 --- a/UICatalog/Scenarios/Text.cs +++ b/UICatalog/Scenarios/Text.cs @@ -49,6 +49,7 @@ void TextField_TextChanging (TextChangingEventArgs e) Y = 3, Width = Dim.Percent (50), Height = Dim.Percent (30), + ColorScheme = Colors.Dialog }; textView.Text = s; textView.DrawContent += TextView_DrawContent; diff --git a/UICatalog/Scenarios/TextAlignmentsAndDirection.cs b/UICatalog/Scenarios/TextAlignmentsAndDirection.cs index e407878263..aa58bf2d0f 100644 --- a/UICatalog/Scenarios/TextAlignmentsAndDirection.cs +++ b/UICatalog/Scenarios/TextAlignmentsAndDirection.cs @@ -105,7 +105,7 @@ public override void Setup () Y = Pos.Bottom (container) + 1, Width = Dim.Fill (10), Height = Dim.Fill (1), - ColorScheme = Colors.TopLevel, + ColorScheme = color2, Text = txt }; diff --git a/UICatalog/Scenarios/TextViewAutocompletePopup.cs b/UICatalog/Scenarios/TextViewAutocompletePopup.cs index a9518586ff..957247c93e 100644 --- a/UICatalog/Scenarios/TextViewAutocompletePopup.cs +++ b/UICatalog/Scenarios/TextViewAutocompletePopup.cs @@ -24,6 +24,7 @@ public override void Setup () { Win.Title = GetName (); var width = 20; + var colorScheme = Colors.Dialog; var text = " jamp jemp jimp jomp jump"; var menu = new MenuBar (new MenuBarItem [] { @@ -38,6 +39,7 @@ public override void Setup () textViewTopLeft = new TextView () { Width = width, Height = height, + ColorScheme = colorScheme, Text = text }; textViewTopLeft.DrawContent += TextViewTopLeft_DrawContent; @@ -47,6 +49,7 @@ public override void Setup () X = Pos.AnchorEnd (width), Width = width, Height = height, + ColorScheme = colorScheme, Text = text }; textViewTopRight.DrawContent += TextViewTopRight_DrawContent; @@ -56,6 +59,7 @@ public override void Setup () Y = Pos.AnchorEnd (height), Width = width, Height = height, + ColorScheme = colorScheme, Text = text }; textViewBottomLeft.DrawContent += TextViewBottomLeft_DrawContent; @@ -66,6 +70,7 @@ public override void Setup () Y = Pos.AnchorEnd (height), Width = width, Height = height, + ColorScheme = colorScheme, Text = text }; textViewBottomRight.DrawContent += TextViewBottomRight_DrawContent; @@ -76,6 +81,7 @@ public override void Setup () Y = Pos.Center (), Width = width, Height = height, + ColorScheme = colorScheme, Text = text }; textViewCentered.DrawContent += TextViewCentered_DrawContent; diff --git a/UICatalog/Scenarios/Wizards.cs b/UICatalog/Scenarios/Wizards.cs index e5f503414c..b7f09229a1 100644 --- a/UICatalog/Scenarios/Wizards.cs +++ b/UICatalog/Scenarios/Wizards.cs @@ -217,7 +217,6 @@ void Top_Loaded () Height = Dim.Fill (1), WordWrap = true, AllowsTab = false, - ColorScheme = Colors.Base }; var help = "This is helpful."; fourthStep.Add (someText); diff --git a/UnitTests/ApplicationTests.cs b/UnitTests/ApplicationTests.cs index 8c335da05e..0aa526d68f 100644 --- a/UnitTests/ApplicationTests.cs +++ b/UnitTests/ApplicationTests.cs @@ -84,7 +84,6 @@ void Init () Application.Init (new FakeDriver (), new FakeMainLoop (() => FakeConsole.ReadKey (true))); Assert.NotNull (Application.Driver); Assert.NotNull (Application.MainLoop); - Assert.NotNull (SynchronizationContext.Current); } void Shutdown () @@ -1301,7 +1300,7 @@ public void TestAddManyTimeouts () var myi = i; Task.Run (() => { - Thread.Sleep (100); + Task.Delay (100).Wait (); // each thread registers lots of 1s timeouts for (int j = 0; j < numberOfTimeoutsPerThread; j++) { @@ -1318,7 +1317,7 @@ public void TestAddManyTimeouts () if (myi == 0) { // let the timeouts run for a bit - Thread.Sleep (5000); + Task.Delay (5000).Wait (); // then tell the application to quit Application.MainLoop.Invoke (() => Application.RequestStop ()); @@ -1336,159 +1335,5 @@ public void TestAddManyTimeouts () Assert.True (delegatesRun >= numberOfThreads * numberOfTimeoutsPerThread * 2); } } - - [Fact] - public void SynchronizationContext_Post () - { - Init (); - var context = SynchronizationContext.Current; - - var success = false; - Task.Run (() => { - Thread.Sleep (1_000); - - // non blocking - context.Post ( - delegate (object o) { - success = true; - - // then tell the application to quit - Application.MainLoop.Invoke (() => Application.RequestStop ()); - }, null); - Assert.False (success); - }); - - // blocks here until the RequestStop is processed at the end of the test - Application.Run (); - Assert.True (success); - - Application.Shutdown (); - } - - [Fact] - public void SynchronizationContext_Send () - { - Init (); - var context = SynchronizationContext.Current; - - var success = false; - Task.Run (() => { - Thread.Sleep (1_000); - - // blocking - context.Send ( - delegate (object o) { - success = true; - - // then tell the application to quit - Application.MainLoop.Invoke (() => Application.RequestStop ()); - }, null); - Assert.True (success); - }); - - // blocks here until the RequestStop is processed at the end of the test - Application.Run (); - Assert.True (success); - - Application.Shutdown (); - } - - [Fact] - public void SynchronizationContext_CreateCopy () - { - Init (); - - var context = SynchronizationContext.Current; - Assert.NotNull (context); - - var contextCopy = context.CreateCopy (); - Assert.NotNull (contextCopy); - - Assert.NotEqual (context, contextCopy); - - Application.Shutdown (); - } - - [Fact, AutoInitShutdown] - public void MouseGrabView_WithNullMouseEventView () - { - var tf = new TextField () { Width = 10 }; - var sv = new ScrollView () { - Width = Dim.Fill (), - Height = Dim.Fill (), - ContentSize = new Size (100, 100) - }; - - sv.Add (tf); - Application.Top.Add (sv); - - var iterations = -1; - - Application.Iteration = () => { - iterations++; - if (iterations == 0) { - Assert.True (tf.HasFocus); - Assert.Null (Application.mouseGrabView); - - ReflectionTools.InvokePrivate ( - typeof (Application), - "ProcessMouseEvent", - new MouseEvent () { - X = 5, - Y = 5, - Flags = MouseFlags.ReportMousePosition - }); - - Assert.Equal (sv, Application.mouseGrabView); - - MessageBox.Query ("Title", "Test", "Ok"); - - Assert.Null (Application.mouseGrabView); - } else if (iterations == 1) { - Assert.Equal (sv, Application.mouseGrabView); - - ReflectionTools.InvokePrivate ( - typeof (Application), - "ProcessMouseEvent", - new MouseEvent () { - X = 5, - Y = 5, - Flags = MouseFlags.ReportMousePosition - }); - - Assert.Null (Application.mouseGrabView); - - ReflectionTools.InvokePrivate ( - typeof (Application), - "ProcessMouseEvent", - new MouseEvent () { - X = 40, - Y = 12, - Flags = MouseFlags.ReportMousePosition - }); - - Assert.Null (Application.mouseGrabView); - - ReflectionTools.InvokePrivate ( - typeof (Application), - "ProcessMouseEvent", - new MouseEvent () { - X = 0, - Y = 0, - Flags = MouseFlags.Button1Pressed - }); - - Assert.Null (Application.mouseGrabView); - - Application.RequestStop (); - } else if (iterations == 2) { - Assert.Null (Application.mouseGrabView); - - Application.RequestStop (); - } - }; - - Application.Run (); - } } } diff --git a/UnitTests/CheckboxTests.cs b/UnitTests/CheckboxTests.cs index 99bbdf41fa..6dac850889 100644 --- a/UnitTests/CheckboxTests.cs +++ b/UnitTests/CheckboxTests.cs @@ -314,18 +314,10 @@ public void TextAlignment_Centered () [Fact, AutoInitShutdown] public void TextAlignment_Justified () { - var checkBox1 = new CheckBox () { + var checkBox = new CheckBox () { X = 1, Y = Pos.Center (), - Text = "Check first out 你", - TextAlignment = TextAlignment.Justified, - AutoSize = false, - Width = 25 - }; - var checkBox2 = new CheckBox () { - X = 1, - Y = Pos.Bottom (checkBox1), - Text = "Check second out 你", + Text = "Check this out 你", TextAlignment = TextAlignment.Justified, AutoSize = false, Width = 25 @@ -335,56 +327,44 @@ public void TextAlignment_Justified () Height = Dim.Fill (), Title = "Test Demo 你" }; - win.Add (checkBox1, checkBox2); + win.Add (checkBox); Application.Top.Add (win); Application.Begin (Application.Top); - ((FakeDriver)Application.Driver).SetBufferSize (30, 6); - - Assert.Equal (TextAlignment.Justified, checkBox1.TextAlignment); - Assert.Equal (new Rect (1, 1, 25, 1), checkBox1.Frame); - Assert.Equal (new Size (25, 1), checkBox1.TextFormatter.Size); - Assert.Equal ("Check first out 你", checkBox1.Text); - Assert.Equal ("╴ Check first out 你", checkBox1.TextFormatter.Text); - Assert.False (checkBox1.AutoSize); - Assert.Equal (TextAlignment.Justified, checkBox2.TextAlignment); - Assert.Equal (new Rect (1, 2, 25, 1), checkBox2.Frame); - Assert.Equal (new Size (25, 1), checkBox2.TextFormatter.Size); - Assert.Equal ("Check second out 你", checkBox2.Text); - Assert.Equal ("╴ Check second out 你", checkBox2.TextFormatter.Text); - Assert.False (checkBox2.AutoSize); + ((FakeDriver)Application.Driver).SetBufferSize (30, 5); + Assert.Equal (TextAlignment.Justified, checkBox.TextAlignment); + Assert.Equal (new Rect (1, 1, 25, 1), checkBox.Frame); + Assert.Equal (new Size (25, 1), checkBox.TextFormatter.Size); + Assert.Equal ("Check this out 你", checkBox.Text); + Assert.Equal ("╴ Check this out 你", checkBox.TextFormatter.Text); + Assert.False (checkBox.AutoSize); var expected = @" ┌ Test Demo 你 ──────────────┐ │ │ -│ ╴ Check first out 你 │ -│ ╴ Check second out 你 │ +│ ╴ Check this out 你 │ │ │ └────────────────────────────┘ "; var pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); - Assert.Equal (new Rect (0, 0, 30, 6), pos); - - checkBox1.Checked = true; - Assert.Equal (new Rect (1, 1, 25, 1), checkBox1.Frame); - Assert.Equal (new Size (25, 1), checkBox1.TextFormatter.Size); - checkBox2.Checked = true; - Assert.Equal (new Rect (1, 2, 25, 1), checkBox2.Frame); - Assert.Equal (new Size (25, 1), checkBox2.TextFormatter.Size); + Assert.Equal (new Rect (0, 0, 30, 5), pos); + + checkBox.Checked = true; + Assert.Equal (new Rect (1, 1, 25, 1), checkBox.Frame); + Assert.Equal (new Size (25, 1), checkBox.TextFormatter.Size); Application.Refresh (); expected = @" ┌ Test Demo 你 ──────────────┐ │ │ -│ √ Check first out 你 │ -│ √ Check second out 你 │ +│ √ Check this out 你 │ │ │ └────────────────────────────┘ "; pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); - Assert.Equal (new Rect (0, 0, 30, 6), pos); + Assert.Equal (new Rect (0, 0, 30, 5), pos); } [Fact, AutoInitShutdown] diff --git a/UnitTests/ComboBoxTests.cs b/UnitTests/ComboBoxTests.cs index e6e0f731e5..4a7005a16f 100644 --- a/UnitTests/ComboBoxTests.cs +++ b/UnitTests/ComboBoxTests.cs @@ -21,42 +21,18 @@ public void Constructors_Defaults () Assert.Null (cb.Source); Assert.False (cb.AutoSize); Assert.Equal (new Rect (0, 0, 0, 2), cb.Frame); - Assert.Equal (-1, cb.SelectedItem); cb = new ComboBox ("Test"); Assert.Equal ("Test", cb.Text); Assert.Null (cb.Source); Assert.False (cb.AutoSize); Assert.Equal (new Rect (0, 0, 0, 2), cb.Frame); - Assert.Equal (-1, cb.SelectedItem); cb = new ComboBox (new Rect (1, 2, 10, 20), new List () { "One", "Two", "Three" }); Assert.Equal (string.Empty, cb.Text); Assert.NotNull (cb.Source); Assert.False (cb.AutoSize); Assert.Equal (new Rect (1, 2, 10, 20), cb.Frame); - Assert.Equal (-1, cb.SelectedItem); - - cb = new ComboBox (new List () { "One", "Two", "Three" }); - Assert.Equal (string.Empty, cb.Text); - Assert.NotNull (cb.Source); - Assert.False (cb.AutoSize); - Assert.Equal (new Rect (0, 0, 0, 2), cb.Frame); - Assert.Equal (-1, cb.SelectedItem); - } - - [Fact] - [AutoInitShutdown] - public void Constructor_With_Source_Initialize_With_The_Passed_SelectedItem () - { - var cb = new ComboBox (new List () { "One", "Two", "Three" }) { - SelectedItem = 1 - }; - Assert.Equal ("Two", cb.Text); - Assert.NotNull (cb.Source); - Assert.False (cb.AutoSize); - Assert.Equal (new Rect (0, 0, 0, 2), cb.Frame); - Assert.Equal (1, cb.SelectedItem); } [Fact] @@ -264,676 +240,5 @@ public void Source_Equal_Null_Or_Count_Equal_Zero_Sets_SelectedItem_Equal_To_Min Assert.Equal (-1, cb.SelectedItem); Assert.Equal ("", cb.Text); } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_Gets_Sets () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5 - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.False (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (0, cb.SelectedItem); - Assert.Equal ("One", cb.Text); - - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = 1, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = 1, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - cb.HideDropdownListOnClick = true; - - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = 2, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("Three", selected); - Assert.False (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = 2, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("Three", selected); - Assert.False (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("Three", selected); - Assert.True (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("One", selected); - Assert.False (cb.IsShow); - Assert.Equal (0, cb.SelectedItem); - Assert.Equal ("One", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_True_OpenSelectedItem_With_Mouse_And_Key_And_Mouse () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = true - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.True (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ()))); - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_True_OpenSelectedItem_With_Mouse_And_Key_CursorDown_And_Esc () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = true - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.True (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.Esc, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_False_OpenSelectedItem_With_Mouse_And_Key_CursorDown_And_Esc () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = false - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.False (cb.HideDropdownListOnClick); - Assert.False (cb.ReadOnly); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (0, cb.SelectedItem); - Assert.Equal ("One", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.True (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.Esc, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_False_ReadOnly_True_OpenSelectedItem_With_Mouse_And_Key_CursorDown_And_Esc () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = false, - ReadOnly = true - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.False (cb.HideDropdownListOnClick); - Assert.True (cb.ReadOnly); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (0, cb.SelectedItem); - Assert.Equal ("One", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.True (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.True (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.Esc, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_True_OpenSelectedItem_With_Mouse_And_Key_F4 () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = true - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.True (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_False_OpenSelectedItem_With_Mouse_And_Key_F4 () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = false - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.False (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (0, cb.SelectedItem); - Assert.Equal ("One", cb.Text); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("Two", selected); - Assert.False (cb.IsShow); - Assert.Equal (1, cb.SelectedItem); - Assert.Equal ("Two", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_True_Colapse_On_Click_Outside_Frame () - { - var selected = ""; - var cb = new ComboBox { - Height = 4, - Width = 5, - HideDropdownListOnClick = true - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.True (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = -1, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = -1, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = cb.Frame.Width, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - Assert.True (cb.Subviews [1].MouseEvent (new MouseEvent { - X = 0, - Y = cb.Frame.Height, - Flags = MouseFlags.Button1Clicked - })); - Assert.Equal ("", selected); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - } - - [Fact, AutoInitShutdown] - public void HideDropdownListOnClick_True_Highlight_Current_Item () - { - var selected = ""; - var cb = new ComboBox { - Width = 6, - Height = 4, - HideDropdownListOnClick = true, - }; - cb.SetSource (new List { "One", "Two", "Three" }); - cb.OpenSelectedItem += (e) => selected = e.Value.ToString (); - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.True (cb.HideDropdownListOnClick); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.MouseEvent (new MouseEvent { - X = cb.Bounds.Right - 1, - Y = 0, - Flags = MouseFlags.Button1Pressed - })); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - cb.Redraw (cb.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ▼ -One -Two -Three ", output); - - var attributes = new Attribute [] { - // 0 - cb.Subviews [0].ColorScheme.Focus, - // 1 - cb.Subviews [1].ColorScheme.HotFocus, - // 2 - cb.Subviews [1].GetNormalColor () - }; - - GraphViewTests.AssertDriverColorsAre (@" -000000 -00000 -22222 -22222", attributes); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - cb.Redraw (cb.Bounds); - GraphViewTests.AssertDriverColorsAre (@" -000000 -22222 -00000 -22222", attributes); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ()))); - Assert.Equal ("", selected); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - cb.Redraw (cb.Bounds); - GraphViewTests.AssertDriverColorsAre (@" -000000 -22222 -22222 -00000", attributes); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - Assert.Equal ("Three", selected); - Assert.False (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("Three", selected); - Assert.True (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - cb.Redraw (cb.Bounds); - GraphViewTests.AssertDriverColorsAre (@" -000000 -22222 -22222 -00000", attributes); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ()))); - Assert.Equal ("Three", selected); - Assert.True (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - cb.Redraw (cb.Bounds); - GraphViewTests.AssertDriverColorsAre (@" -000000 -22222 -00000 -11111", attributes); - - Assert.True (cb.Subviews [1].ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ()))); - Assert.Equal ("Three", selected); - Assert.True (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - cb.Redraw (cb.Bounds); - GraphViewTests.AssertDriverColorsAre (@" -000000 -00000 -22222 -11111", attributes); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Equal ("Three", selected); - Assert.False (cb.IsShow); - Assert.Equal (2, cb.SelectedItem); - Assert.Equal ("Three", cb.Text); - } - - [Fact, AutoInitShutdown] - public void Expanded_Collapsed_Events () - { - var cb = new ComboBox { - Height = 4, - Width = 5 - }; - var list = new List { "One", "Two", "Three" }; - - cb.Expanded += () => cb.SetSource (list); - cb.Collapsed += () => cb.Source = null; - - Application.Top.Add (cb); - Application.Begin (Application.Top); - - Assert.Null (cb.Source); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.NotNull (cb.Source); - Assert.True (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - - Assert.True (cb.ProcessKey (new KeyEvent (Key.F4, new KeyModifiers ()))); - Assert.Null (cb.Source); - Assert.False (cb.IsShow); - Assert.Equal (-1, cb.SelectedItem); - Assert.Equal ("", cb.Text); - } } } \ No newline at end of file diff --git a/UnitTests/ContextMenuTests.cs b/UnitTests/ContextMenuTests.cs index 5df3b07ce2..d5b024be42 100644 --- a/UnitTests/ContextMenuTests.cs +++ b/UnitTests/ContextMenuTests.cs @@ -423,7 +423,7 @@ public void Show_Display_At_Zero_If_The_Toplevel_Height_Is_Less_Than_The_Menu_He cm.Show (); Assert.Equal (new Point (0, 0), cm.Position); Application.Begin (Application.Top); - ((FakeDriver)Application.Driver).SetBufferSize (80, 3); + ((FakeDriver)Application.Driver).SetBufferSize (80, 4); var expected = @" ┌──────┐ @@ -432,7 +432,7 @@ public void Show_Display_At_Zero_If_The_Toplevel_Height_Is_Less_Than_The_Menu_He "; var pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); - Assert.Equal (new Rect (0, 0, 8, 3), pos); + Assert.Equal (new Rect (0, 1, 8, 3), pos); cm.Hide (); Assert.Equal (new Point (0, 0), cm.Position); @@ -592,27 +592,27 @@ public void ContextMenu_On_Toplevel_With_A_MenuBar_TextField_StatusBar () Assert.Equal (new Point (9, 3), tf.ContextMenu.Position); Application.Top.Redraw (Application.Top.Bounds); var expected = @" - File Edit - - - Label: TextField - ┌─────────────────────┐ - │ Select All Ctrl+T │ - │ Delete All Ctrl+R │ - │ Copy Ctrl+C │ - │ Cut Ctrl+X │ - │ Paste Ctrl+V │ - │ Undo Ctrl+Z │ - │ Redo Ctrl+Y │ - └─────────────────────┘ - - - - F1 Help │ ^Q Quit + File Edit + + + Label: TextField + ┌───────────────────────────┐ + │ Select All Ctrl+T │ + │ Delete All Ctrl+Shift+D │ + │ Copy Ctrl+C │ + │ Cut Ctrl+X │ + │ Paste Ctrl+V │ + │ Undo Ctrl+Z │ + │ Redo Ctrl+Y │ + └───────────────────────────┘ + + + + F1 Help │ ^Q Quit "; var pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); - Assert.Equal (new Rect (2, 0, 32, 17), pos); + Assert.Equal (new Rect (2, 0, 38, 17), pos); } [Fact, AutoInitShutdown] @@ -648,6 +648,7 @@ public void ContextMenu_On_Toplevel_With_A_MenuBar_Window_TextField_StatusBar () Application.Begin (Application.Top); ((FakeDriver)Application.Driver).SetBufferSize (44, 17); + Assert.Equal (new Rect (9, 3, 20, 1), tf.Frame); Assert.True (tf.HasFocus); @@ -662,15 +663,15 @@ File Edit │ │ │ │ │ Label: TextField │ -│ ┌─────────────────────┐ │ -│ │ Select All Ctrl+T │ │ -│ │ Delete All Ctrl+R │ │ -│ │ Copy Ctrl+C │ │ -│ │ Cut Ctrl+X │ │ -│ │ Paste Ctrl+V │ │ -│ │ Undo Ctrl+Z │ │ -│ │ Redo Ctrl+Y │ │ -│ └─────────────────────┘ │ +│ ┌───────────────────────────┐ │ +│ │ Select All Ctrl+T │ │ +│ │ Delete All Ctrl+Shift+D │ │ +│ │ Copy Ctrl+C │ │ +│ │ Cut Ctrl+X │ │ +│ │ Paste Ctrl+V │ │ +│ │ Undo Ctrl+Z │ │ +│ │ Redo Ctrl+Y │ │ +│ └───────────────────────────┘ │ └──────────────────────────────────────────┘ F1 Help │ ^Q Quit "; @@ -678,215 +679,5 @@ F1 Help │ ^Q Quit var pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); Assert.Equal (new Rect (2, 0, 44, 17), pos); } - - [Fact, AutoInitShutdown] - public void Menus_And_SubMenus_Always_Try_To_Be_On_Screen () - { - var cm = new ContextMenu (-1, -2, - new MenuBarItem (new MenuItem [] { - new MenuItem ("One", "", null), - new MenuItem ("Two", "", null), - new MenuItem ("Three", "", null), - new MenuBarItem ("Four", new MenuItem [] { - new MenuItem ("SubMenu1", "", null), - new MenuItem ("SubMenu2", "", null), - new MenuItem ("SubMenu3", "", null), - new MenuItem ("SubMenu4", "", null), - new MenuItem ("SubMenu5", "", null), - new MenuItem ("SubMenu6", "", null), - new MenuItem ("SubMenu7", "", null) - }), - new MenuItem ("Five", "", null), - new MenuItem ("Six", "", null) - }) - ); - - Assert.Equal (new Point (-1, -2), cm.Position); - - cm.Show (); - Assert.Equal (new Point (-1, -2), cm.Position); - var top = Application.Top; - Application.Begin (top); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌────────┐ -│ One │ -│ Two │ -│ Three │ -│ Four ►│ -│ Five │ -│ Six │ -└────────┘ -", output); - - Assert.True (top.Subviews [0].MouseEvent (new MouseEvent { - X = 0, - Y = 4, - Flags = MouseFlags.ReportMousePosition, - View = top.Subviews [0] - })); - Application.Refresh (); - Assert.Equal (new Point (-1, -2), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌────────┐ -│ One │ -│ Two │ -│ Three │ -│ Four ►│┌───────────┐ -│ Five ││ SubMenu1 │ -│ Six ││ SubMenu2 │ -└────────┘│ SubMenu3 │ - │ SubMenu4 │ - │ SubMenu5 │ - │ SubMenu6 │ - │ SubMenu7 │ - └───────────┘ -", output); - - ((FakeDriver)Application.Driver).SetBufferSize (40, 20); - cm.Position = new Point (41, -2); - cm.Show (); - Application.Refresh (); - Assert.Equal (new Point (41, -2), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌────────┐ - │ One │ - │ Two │ - │ Three │ - │ Four ►│ - │ Five │ - │ Six │ - └────────┘ -", output); - - Assert.True (top.Subviews [0].MouseEvent (new MouseEvent { - X = 30, - Y = 4, - Flags = MouseFlags.ReportMousePosition, - View = top.Subviews [0] - })); - Application.Refresh (); - Assert.Equal (new Point (41, -2), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌────────┐ - │ One │ - │ Two │ - │ Three │ - ┌───────────┐│ Four ►│ - │ SubMenu1 ││ Five │ - │ SubMenu2 ││ Six │ - │ SubMenu3 │└────────┘ - │ SubMenu4 │ - │ SubMenu5 │ - │ SubMenu6 │ - │ SubMenu7 │ - └───────────┘ -", output); - - cm.Position = new Point (41, 9); - cm.Show (); - Application.Refresh (); - Assert.Equal (new Point (41, 9), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌────────┐ - │ One │ - │ Two │ - │ Three │ - │ Four ►│ - │ Five │ - │ Six │ - └────────┘ -", output); - - Assert.True (top.Subviews [0].MouseEvent (new MouseEvent { - X = 30, - Y = 4, - Flags = MouseFlags.ReportMousePosition, - View = top.Subviews [0] - })); - Application.Refresh (); - Assert.Equal (new Point (41, 9), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌────────┐ - ┌───────────┐│ One │ - │ SubMenu1 ││ Two │ - │ SubMenu2 ││ Three │ - │ SubMenu3 ││ Four ►│ - │ SubMenu4 ││ Five │ - │ SubMenu5 ││ Six │ - │ SubMenu6 │└────────┘ - │ SubMenu7 │ - └───────────┘ -", output); - - cm.Position = new Point (41, 22); - cm.Show (); - Application.Refresh (); - Assert.Equal (new Point (41, 22), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌────────┐ - │ One │ - │ Two │ - │ Three │ - │ Four ►│ - │ Five │ - │ Six │ - └────────┘ -", output); - - Assert.True (top.Subviews [0].MouseEvent (new MouseEvent { - X = 30, - Y = 4, - Flags = MouseFlags.ReportMousePosition, - View = top.Subviews [0] - })); - Application.Refresh (); - Assert.Equal (new Point (41, 22), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌───────────┐ - │ SubMenu1 │┌────────┐ - │ SubMenu2 ││ One │ - │ SubMenu3 ││ Two │ - │ SubMenu4 ││ Three │ - │ SubMenu5 ││ Four ►│ - │ SubMenu6 ││ Five │ - │ SubMenu7 ││ Six │ - └───────────┘└────────┘ -", output); - - ((FakeDriver)Application.Driver).SetBufferSize (18, 8); - cm.Position = new Point (19, 10); - cm.Show (); - Application.Refresh (); - Assert.Equal (new Point (19, 10), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌────────┐ - │ One │ - │ Two │ - │ Three │ - │ Four ►│ - │ Five │ - │ Six │ - └────────┘ -", output); - - Assert.True (top.Subviews [0].MouseEvent (new MouseEvent { - X = 30, - Y = 4, - Flags = MouseFlags.ReportMousePosition, - View = top.Subviews [0] - })); - Application.Refresh (); - Assert.Equal (new Point (19, 10), cm.Position); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌───────────┐────┐ -│ SubMenu1 │ │ -│ SubMenu2 │ │ -│ SubMenu3 │ee │ -│ SubMenu4 │r ►│ -│ SubMenu5 │e │ -│ SubMenu6 │ │ -│ SubMenu7 │────┘ -", output); - } } } diff --git a/UnitTests/ListViewTests.cs b/UnitTests/ListViewTests.cs index 03b01547aa..99abd469d8 100644 --- a/UnitTests/ListViewTests.cs +++ b/UnitTests/ListViewTests.cs @@ -5,17 +5,9 @@ using System.Text; using System.Threading.Tasks; using Xunit; -using Xunit.Abstractions; namespace Terminal.Gui.Views { public class ListViewTests { - readonly ITestOutputHelper output; - - public ListViewTests (ITestOutputHelper output) - { - this.output = output; - } - [Fact] public void Constructors_Defaults () { @@ -38,97 +30,6 @@ public void Constructors_Defaults () Assert.Equal (new Rect (0, 1, 10, 20), lv.Frame); } - [Fact] - public void ListViewSelectThenDown () - { - var lv = new ListView (new List () { "One", "Two", "Three" }); - lv.AllowsMarking = true; - - Assert.NotNull (lv.Source); - - // first item should be selected by default - Assert.Equal (0, lv.SelectedItem); - - // nothing is ticked - Assert.False (lv.Source.IsMarked (0)); - Assert.False (lv.Source.IsMarked (1)); - Assert.False (lv.Source.IsMarked (2)); - - lv.AddKeyBinding (Key.Space | Key.ShiftMask, Command.ToggleChecked, Command.LineDown); - - var ev = new KeyEvent (Key.Space | Key.ShiftMask, new KeyModifiers () { Shift = true }); - - // view should indicate that it has accepted and consumed the event - Assert.True (lv.ProcessKey (ev)); - - // second item should now be selected - Assert.Equal (1, lv.SelectedItem); - - // first item only should be ticked - Assert.True (lv.Source.IsMarked (0)); - Assert.False (lv.Source.IsMarked (1)); - Assert.False (lv.Source.IsMarked (2)); - - // Press key combo again - Assert.True (lv.ProcessKey (ev)); - Assert.Equal (2, lv.SelectedItem); - Assert.True (lv.Source.IsMarked (0)); - Assert.True (lv.Source.IsMarked (1)); - Assert.False (lv.Source.IsMarked (2)); - - // Press key combo again - Assert.True (lv.ProcessKey (ev)); - Assert.Equal (2, lv.SelectedItem); // cannot move down any further - Assert.True (lv.Source.IsMarked (0)); - Assert.True (lv.Source.IsMarked (1)); - Assert.True (lv.Source.IsMarked (2)); // but can toggle marked - - // Press key combo again - Assert.True (lv.ProcessKey (ev)); - Assert.Equal (2, lv.SelectedItem); // cannot move down any further - Assert.True (lv.Source.IsMarked (0)); - Assert.True (lv.Source.IsMarked (1)); - Assert.False (lv.Source.IsMarked (2)); // untoggle toggle marked - } - [Fact] - public void SettingEmptyKeybindingThrows () - { - var lv = new ListView (new List () { "One", "Two", "Three" }); - Assert.Throws (() => lv.AddKeyBinding (Key.Space)); - } - - - /// - /// Tests that when none of the Commands in a chained keybinding are possible - /// the returns the appropriate result - /// - [Fact] - public void ListViewProcessKeyReturnValue_WithMultipleCommands () - { - var lv = new ListView (new List () { "One", "Two", "Three", "Four" }); - - Assert.NotNull (lv.Source); - - // first item should be selected by default - Assert.Equal (0, lv.SelectedItem); - - // bind shift down to move down twice in control - lv.AddKeyBinding (Key.CursorDown | Key.ShiftMask, Command.LineDown, Command.LineDown); - - var ev = new KeyEvent (Key.CursorDown | Key.ShiftMask, new KeyModifiers () { Shift = true }); - - Assert.True (lv.ProcessKey (ev), "The first time we move down 2 it should be possible"); - - // After moving down twice from One we should be at 'Three' - Assert.Equal (2, lv.SelectedItem); - - // clear the items - lv.SetSource (null); - - // Press key combo again - return should be false this time as none of the Commands are allowable - Assert.False (lv.ProcessKey (ev), "We cannot move down so will not respond to this"); - } - private class NewListDataSource : IListDataSource { public int Count => throw new NotImplementedException (); @@ -229,227 +130,5 @@ string GetContents (int line) return item; } } - - [Fact] - [AutoInitShutdown] - public void Ensures_Visibility_SelectedItem_On_MoveDown_And_MoveUp () - { - var source = new List (); - for (int i = 0; i < 20; i++) { - source.Add ($"Line{i}"); - } - var lv = new ListView (source) { Width = Dim.Fill (), Height = Dim.Fill () }; - var win = new Window (); - win.Add (lv); - Application.Top.Add (win); - Application.Begin (Application.Top); - ((FakeDriver)Application.Driver).SetBufferSize (12, 12); - Application.Refresh (); - - Assert.Equal (0, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line0 │ -│Line1 │ -│Line2 │ -│Line3 │ -│Line4 │ -│Line5 │ -│Line6 │ -│Line7 │ -│Line8 │ -│Line9 │ -└──────────┘", output); - - Assert.True (lv.ScrollDown (10)); - lv.Redraw (lv.Bounds); - Assert.Equal (0, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line10 │ -│Line11 │ -│Line12 │ -│Line13 │ -│Line14 │ -│Line15 │ -│Line16 │ -│Line17 │ -│Line18 │ -│Line19 │ -└──────────┘", output); - - Assert.True (lv.MoveDown ()); - lv.Redraw (lv.Bounds); - Assert.Equal (1, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line1 │ -│Line2 │ -│Line3 │ -│Line4 │ -│Line5 │ -│Line6 │ -│Line7 │ -│Line8 │ -│Line9 │ -│Line10 │ -└──────────┘", output); - - Assert.True (lv.MoveEnd ()); - lv.Redraw (lv.Bounds); - Assert.Equal (19, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line19 │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -└──────────┘", output); - - Assert.True (lv.ScrollUp (20)); - lv.Redraw (lv.Bounds); - Assert.Equal (19, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line0 │ -│Line1 │ -│Line2 │ -│Line3 │ -│Line4 │ -│Line5 │ -│Line6 │ -│Line7 │ -│Line8 │ -│Line9 │ -└──────────┘", output); - - Assert.True (lv.MoveDown ()); - lv.Redraw (lv.Bounds); - Assert.Equal (19, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line10 │ -│Line11 │ -│Line12 │ -│Line13 │ -│Line14 │ -│Line15 │ -│Line16 │ -│Line17 │ -│Line18 │ -│Line19 │ -└──────────┘", output); - - Assert.True (lv.ScrollUp (20)); - lv.Redraw (lv.Bounds); - Assert.Equal (19, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line0 │ -│Line1 │ -│Line2 │ -│Line3 │ -│Line4 │ -│Line5 │ -│Line6 │ -│Line7 │ -│Line8 │ -│Line9 │ -└──────────┘", output); - - Assert.True (lv.MoveDown ()); - lv.Redraw (lv.Bounds); - Assert.Equal (19, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line10 │ -│Line11 │ -│Line12 │ -│Line13 │ -│Line14 │ -│Line15 │ -│Line16 │ -│Line17 │ -│Line18 │ -│Line19 │ -└──────────┘", output); - - Assert.True (lv.MoveHome ()); - lv.Redraw (lv.Bounds); - Assert.Equal (0, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line0 │ -│Line1 │ -│Line2 │ -│Line3 │ -│Line4 │ -│Line5 │ -│Line6 │ -│Line7 │ -│Line8 │ -│Line9 │ -└──────────┘", output); - - Assert.True (lv.ScrollDown (20)); - lv.Redraw (lv.Bounds); - Assert.Equal (0, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line19 │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -└──────────┘", output); - - Assert.True (lv.MoveUp ()); - lv.Redraw (lv.Bounds); - Assert.Equal (0, lv.SelectedItem); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌──────────┐ -│Line0 │ -│Line1 │ -│Line2 │ -│Line3 │ -│Line4 │ -│Line5 │ -│Line6 │ -│Line7 │ -│Line8 │ -│Line9 │ -└──────────┘", output); - } - - [Fact] - public void SetSource_Preserves_ListWrapper_Instance_If_Not_Null () - { - var lv = new ListView (new List { "One", "Two" }); - - Assert.NotNull (lv.Source); - - lv.SetSource (null); - Assert.NotNull (lv.Source); - - lv.Source = null; - Assert.Null (lv.Source); - - lv = new ListView (new List { "One", "Two" }); - Assert.NotNull (lv.Source); - - lv.SetSourceAsync (null); - Assert.NotNull (lv.Source); - } } } diff --git a/UnitTests/MainLoopTests.cs b/UnitTests/MainLoopTests.cs index 4cf1d5b712..8d4330d115 100644 --- a/UnitTests/MainLoopTests.cs +++ b/UnitTests/MainLoopTests.cs @@ -29,18 +29,12 @@ public void AddIdle_Adds_And_Removes () { var ml = new MainLoop (new FakeMainLoop (() => FakeConsole.ReadKey (true))); - Func fnTrue = () => true; - Func fnFalse = () => false; - + Func fnTrue = () => { return true; }; + Func fnFalse = () => { return false; }; ml.AddIdle (fnTrue); ml.AddIdle (fnFalse); - Assert.Equal (2, ml.IdleHandlers.Count); - Assert.Equal (fnTrue, ml.IdleHandlers [0]); - Assert.NotEqual (fnFalse, ml.IdleHandlers [0]); - Assert.True (ml.RemoveIdle (fnTrue)); - Assert.Single (ml.IdleHandlers); // BUGBUG: This doesn't throw or indicate an error. Ideally RemoveIdle would either // throw an exception in this case, or return an error. @@ -58,19 +52,8 @@ public void AddIdle_Adds_And_Removes () ml.AddIdle (fnTrue); ml.AddIdle (fnTrue); - Assert.Equal (2, ml.IdleHandlers.Count); - Assert.Equal (fnTrue, ml.IdleHandlers [0]); - Assert.True (ml.IdleHandlers [0] ()); - Assert.Equal (fnTrue, ml.IdleHandlers [1]); - Assert.True (ml.IdleHandlers [1] ()); - Assert.True (ml.RemoveIdle (fnTrue)); - Assert.Single (ml.IdleHandlers); - Assert.Equal (fnTrue, ml.IdleHandlers [0]); - Assert.NotEqual (fnFalse, ml.IdleHandlers [0]); - Assert.True (ml.RemoveIdle (fnTrue)); - Assert.Empty (ml.IdleHandlers); // BUGBUG: This doesn't throw an exception or indicate an error. Ideally RemoveIdle would either // throw an exception in this case, or return an error. @@ -142,17 +125,14 @@ public void AddTwice_Function_CalledTwice () ml.AddIdle (fn); ml.MainIteration (); Assert.Equal (2, functionCalled); - Assert.Equal (2, ml.IdleHandlers.Count); functionCalled = 0; Assert.True (ml.RemoveIdle (fn)); - Assert.Single (ml.IdleHandlers); ml.MainIteration (); Assert.Equal (1, functionCalled); functionCalled = 0; Assert.True (ml.RemoveIdle (fn)); - Assert.Empty (ml.IdleHandlers); ml.MainIteration (); Assert.Equal (0, functionCalled); Assert.False (ml.RemoveIdle (fn)); @@ -525,71 +505,5 @@ public void Wakeup () // - wait = false // TODO: Add IMainLoop tests - - volatile static int tbCounter = 0; - static ManualResetEventSlim _wakeUp = new ManualResetEventSlim (false); - - private static void Launch (Random r, TextField tf, int target) - { - Task.Run (() => { - Thread.Sleep (r.Next (2, 4)); - Application.MainLoop.Invoke (() => { - tf.Text = $"index{r.Next ()}"; - Interlocked.Increment (ref tbCounter); - if (target == tbCounter) { - // On last increment wake up the check - _wakeUp.Set (); - } - }); - }); - } - - private static void RunTest (Random r, TextField tf, int numPasses, int numIncrements, int pollMs) - { - for (int j = 0; j < numPasses; j++) { - - _wakeUp.Reset (); - for (var i = 0; i < numIncrements; i++) { - Launch (r, tf, (j + 1) * numIncrements); - } - - - while (tbCounter != (j + 1) * numIncrements) // Wait for tbCounter to reach expected value - { - var tbNow = tbCounter; - _wakeUp.Wait (pollMs); - if (tbCounter == tbNow) { - // No change after wait: Idle handlers added via Application.MainLoop.Invoke have gone missing - Application.MainLoop.Invoke (() => Application.RequestStop ()); - throw new TimeoutException ( - $"Timeout: Increment lost. tbCounter ({tbCounter}) didn't " + - $"change after waiting {pollMs} ms. Failed to reach {(j + 1) * numIncrements} on pass {j + 1}"); - } - }; - } - Application.MainLoop.Invoke (() => Application.RequestStop ()); - } - - [Fact] - [AutoInitShutdown] - public async Task InvokeLeakTest () - { - Random r = new (); - TextField tf = new (); - Application.Top.Add (tf); - - const int numPasses = 10; - const int numIncrements = 10000; - const int pollMs = 20000; - - var task = Task.Run (() => RunTest (r, tf, numPasses, numIncrements, pollMs)); - - // blocks here until the RequestStop is processed at the end of the test - Application.Run (); - - await task; // Propagate exception if any occurred - - Assert.Equal ((numIncrements * numPasses), tbCounter); - } } } diff --git a/UnitTests/MenuTests.cs b/UnitTests/MenuTests.cs index 77c336b8ab..ad54bd193b 100644 --- a/UnitTests/MenuTests.cs +++ b/UnitTests/MenuTests.cs @@ -670,7 +670,7 @@ public void DrawFrame_With_Negative_Positions () menu.CloseAllMenus (); menu.Frame = new Rect (0, 0, menu.Frame.Width, menu.Frame.Height); - ((FakeDriver)Application.Driver).SetBufferSize (7, 3); + ((FakeDriver)Application.Driver).SetBufferSize (7, 4); menu.OpenMenu (); Application.Refresh (); @@ -681,7 +681,7 @@ public void DrawFrame_With_Negative_Positions () "; pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); - Assert.Equal (new Rect (0, 0, 7, 3), pos); + Assert.Equal (new Rect (0, 1, 7, 3), pos); } [Fact, AutoInitShutdown] diff --git a/UnitTests/MessageBoxTests.cs b/UnitTests/MessageBoxTests.cs deleted file mode 100644 index 8bbc9fcf49..0000000000 --- a/UnitTests/MessageBoxTests.cs +++ /dev/null @@ -1,158 +0,0 @@ -using System.Threading.Tasks; -using Xunit; -using Xunit.Abstractions; -using System.Text; - -namespace Terminal.Gui.Views { - - public class MessageBoxTests { - readonly ITestOutputHelper output; - - public MessageBoxTests (ITestOutputHelper output) - { - this.output = output; - } - - [Fact, AutoInitShutdown] - public void MessageBox_With_Empty_Size_Without_Buttons () - { - var iterations = -1; - Application.Begin (Application.Top); - - Application.Iteration += () => { - iterations++; - - if (iterations == 0) { - MessageBox.Query ("Title", "Message"); - - Application.RequestStop (); - - } else if (iterations == 1) { - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌ Title ─────────────────────────────────────────┐ - │ Message │ - │ │ - │ │ - └────────────────────────────────────────────────┘ -", output); - - Application.RequestStop (); - } - }; - - Application.Run (); - } - - [Fact, AutoInitShutdown] - public void MessageBox_With_Empty_Size_With_Button () - { - var iterations = -1; - Application.Begin (Application.Top); - - Application.Iteration += () => { - iterations++; - - if (iterations == 0) { - StringBuilder aboutMessage = new StringBuilder (); - aboutMessage.AppendLine (@"A comprehensive sample library for"); - aboutMessage.AppendLine (@""); - aboutMessage.AppendLine (@" _______ _ _ _____ _ "); - aboutMessage.AppendLine (@" |__ __| (_) | | / ____| (_) "); - aboutMessage.AppendLine (@" | | ___ _ __ _ __ ___ _ _ __ __ _| || | __ _ _ _ "); - aboutMessage.AppendLine (@" | |/ _ \ '__| '_ ` _ \| | '_ \ / _` | || | |_ | | | | | "); - aboutMessage.AppendLine (@" | | __/ | | | | | | | | | | | (_| | || |__| | |_| | | "); - aboutMessage.AppendLine (@" |_|\___|_| |_| |_| |_|_|_| |_|\__,_|_(_)_____|\__,_|_| "); - aboutMessage.AppendLine (@""); - aboutMessage.AppendLine (@"https://github.com/gui-cs/Terminal.Gui"); - - MessageBox.Query ("About UI Catalog", aboutMessage.ToString (), "_Ok"); - - Application.RequestStop (); - } else if (iterations == 1) { - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌ About UI Catalog ──────────────────────────────────────────┐ - │ A comprehensive sample library for │ - │ │ - │ _______ _ _ _____ _ │ - │ |__ __| (_) | | / ____| (_) │ - │ | | ___ _ __ _ __ ___ _ _ __ __ _| || | __ _ _ _ │ - │ | |/ _ \ '__| '_ ` _ \| | '_ \ / _` | || | |_ | | | | | │ - │ | | __/ | | | | | | | | | | | (_| | || |__| | |_| | | │ - │ |_|\___|_| |_| |_| |_|_|_| |_|\__,_|_(_)_____|\__,_|_| │ - │ │ - │ https://github.com/gui-cs/Terminal.Gui │ - │ │ - │ [◦ Ok ◦] │ - └────────────────────────────────────────────────────────────┘ -", output); - - Application.RequestStop (); - } - }; - - Application.Run (); - } - - [Fact, AutoInitShutdown] - public void MessageBox_With_A_Lower_Fixed_Size () - { - var iterations = -1; - Application.Begin (Application.Top); - - Application.Iteration += () => { - iterations++; - - if (iterations == 0) { - MessageBox.Query (7, 5, "Title", "Message", "_Ok"); - - Application.RequestStop (); - } else if (iterations == 1) { - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌─────┐ - │Messa│ - │ ge │ - │ Ok ◦│ - └─────┘ -", output); - - Application.RequestStop (); - } - }; - - Application.Run (); - } - - [Fact, AutoInitShutdown] - public void MessageBox_With_A_Enough_Fixed_Size () - { - var iterations = -1; - Application.Begin (Application.Top); - - Application.Iteration += () => { - iterations++; - - if (iterations == 0) { - MessageBox.Query (11, 5, "Title", "Message", "_Ok"); - - Application.RequestStop (); - } else if (iterations == 1) { - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" - ┌ Title ──┐ - │ Message │ - │ │ - │[◦ Ok ◦] │ - └─────────┘ -", output); - - Application.RequestStop (); - } - }; - - Application.Run (); - } - } -} \ No newline at end of file diff --git a/UnitTests/ReflectionTools.cs b/UnitTests/ReflectionTools.cs deleted file mode 100644 index 3f661bc5f2..0000000000 --- a/UnitTests/ReflectionTools.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System; -using System.Reflection; - -public static class ReflectionTools { - // If the class is non-static - public static Object InvokePrivate (Object objectUnderTest, string method, params object [] args) - { - Type t = objectUnderTest.GetType (); - return t.InvokeMember (method, - BindingFlags.InvokeMethod | - BindingFlags.NonPublic | - BindingFlags.Instance | - BindingFlags.Static, - null, - objectUnderTest, - args); - } - // if the class is static - public static Object InvokePrivate (Type typeOfObjectUnderTest, string method, params object [] args) - { - MemberInfo [] members = typeOfObjectUnderTest.GetMembers (BindingFlags.NonPublic | BindingFlags.Static); - foreach (var member in members) { - if (member.Name == method) { - return typeOfObjectUnderTest.InvokeMember (method, - BindingFlags.NonPublic | - BindingFlags.Static | - BindingFlags.InvokeMethod, - null, - typeOfObjectUnderTest, - args); - } - } - return null; - } -} diff --git a/UnitTests/ScrollBarViewTests.cs b/UnitTests/ScrollBarViewTests.cs index 12215d1540..f4571602c1 100644 --- a/UnitTests/ScrollBarViewTests.cs +++ b/UnitTests/ScrollBarViewTests.cs @@ -192,9 +192,9 @@ public void Hosting_A_View_To_A_ScrollBarView () _hostView.Redraw (_hostView.Bounds); Assert.Equal (_scrollBar.Position, _hostView.Top); - Assert.Equal (_scrollBar.Size, _hostView.Lines); + Assert.Equal (_scrollBar.Size, _hostView.Lines + 1); Assert.Equal (_scrollBar.OtherScrollBarView.Position, _hostView.Left); - Assert.Equal (_scrollBar.OtherScrollBarView.Size, _hostView.Cols); + Assert.Equal (_scrollBar.OtherScrollBarView.Size, _hostView.Cols + 1); } [Fact] @@ -310,8 +310,8 @@ public void KeepContentAlwaysInViewport_True () Assert.Equal (25, _hostView.Bounds.Height); Assert.Equal (79, _scrollBar.OtherScrollBarView.Bounds.Width); Assert.Equal (24, _scrollBar.Bounds.Height); - Assert.Equal (30, _scrollBar.Size); - Assert.Equal (100, _scrollBar.OtherScrollBarView.Size); + Assert.Equal (31, _scrollBar.Size); + Assert.Equal (101, _scrollBar.OtherScrollBarView.Size); Assert.True (_scrollBar.ShowScrollIndicator); Assert.True (_scrollBar.OtherScrollBarView.ShowScrollIndicator); Assert.True (_scrollBar.Visible); @@ -320,8 +320,8 @@ public void KeepContentAlwaysInViewport_True () _scrollBar.Position = 50; Assert.Equal (_scrollBar.Position, _scrollBar.Size - _scrollBar.Bounds.Height); Assert.Equal (_scrollBar.Position, _hostView.Top); - Assert.Equal (6, _scrollBar.Position); - Assert.Equal (6, _hostView.Top); + Assert.Equal (7, _scrollBar.Position); + Assert.Equal (7, _hostView.Top); Assert.True (_scrollBar.ShowScrollIndicator); Assert.True (_scrollBar.OtherScrollBarView.ShowScrollIndicator); Assert.True (_scrollBar.Visible); @@ -330,8 +330,8 @@ public void KeepContentAlwaysInViewport_True () _scrollBar.OtherScrollBarView.Position = 150; Assert.Equal (_scrollBar.OtherScrollBarView.Position, _scrollBar.OtherScrollBarView.Size - _scrollBar.OtherScrollBarView.Bounds.Width); Assert.Equal (_scrollBar.OtherScrollBarView.Position, _hostView.Left); - Assert.Equal (21, _scrollBar.OtherScrollBarView.Position); - Assert.Equal (21, _hostView.Left); + Assert.Equal (22, _scrollBar.OtherScrollBarView.Position); + Assert.Equal (22, _hostView.Left); Assert.True (_scrollBar.ShowScrollIndicator); Assert.True (_scrollBar.OtherScrollBarView.ShowScrollIndicator); Assert.True (_scrollBar.Visible); @@ -350,14 +350,14 @@ public void KeepContentAlwaysInViewport_False () _scrollBar.Position = 50; Assert.Equal (_scrollBar.Position, _scrollBar.Size - 1); Assert.Equal (_scrollBar.Position, _hostView.Top); - Assert.Equal (29, _scrollBar.Position); - Assert.Equal (29, _hostView.Top); + Assert.Equal (30, _scrollBar.Position); + Assert.Equal (30, _hostView.Top); _scrollBar.OtherScrollBarView.Position = 150; Assert.Equal (_scrollBar.OtherScrollBarView.Position, _scrollBar.OtherScrollBarView.Size - 1); Assert.Equal (_scrollBar.OtherScrollBarView.Position, _hostView.Left); - Assert.Equal (99, _scrollBar.OtherScrollBarView.Position); - Assert.Equal (99, _hostView.Left); + Assert.Equal (100, _scrollBar.OtherScrollBarView.Position); + Assert.Equal (100, _hostView.Left); } [Fact] @@ -497,7 +497,7 @@ public void Constructor_ShowBothScrollIndicator_False_And_IsVertical_True_Refres }; listView.DrawContent += (e) => { - newScrollBarView.Size = listView.Source.Count; + newScrollBarView.Size = listView.Source.Count - 1; Assert.Equal (newScrollBarView.Size, listView.Source.Count); newScrollBarView.Position = listView.TopItem; Assert.Equal (newScrollBarView.Position, listView.TopItem); @@ -572,7 +572,7 @@ public void Constructor_ShowBothScrollIndicator_False_And_IsVertical_False_Refre }; listView.DrawContent += (e) => { - newScrollBarView.Size = listView.Maxlength; + newScrollBarView.Size = listView.Maxlength - 1; Assert.Equal (newScrollBarView.Size, listView.Maxlength); newScrollBarView.Position = listView.LeftItem; Assert.Equal (newScrollBarView.Position, listView.LeftItem); @@ -618,9 +618,9 @@ public void Internal_Tests () Assert.Equal (0, max); Assert.False (sbv.OtherScrollBarView.CanScroll (10, out max, sbv.OtherScrollBarView.IsVertical)); Assert.Equal (0, max); - // They aren't visible so they aren't drawn. - Assert.False (sbv.Visible); - Assert.False (sbv.OtherScrollBarView.Visible); + // They are visible but are not drawn. + Assert.True (sbv.Visible); + Assert.True (sbv.OtherScrollBarView.Visible); top.LayoutSubviews (); // Now the host bounds is not empty. Assert.True (sbv.CanScroll (10, out max, sbv.IsVertical)); @@ -628,19 +628,17 @@ public void Internal_Tests () Assert.True (sbv.OtherScrollBarView.CanScroll (10, out max, sbv.OtherScrollBarView.IsVertical)); Assert.Equal (10, max); Assert.True (sbv.CanScroll (50, out max, sbv.IsVertical)); - Assert.Equal (40, sbv.Size); - Assert.Equal (15, max); // 15+25=40 + Assert.Equal (17, max); // 17+23=40 Assert.True (sbv.OtherScrollBarView.CanScroll (150, out max, sbv.OtherScrollBarView.IsVertical)); - Assert.Equal (100, sbv.OtherScrollBarView.Size); - Assert.Equal (20, max); // 20+80=100 - Assert.False (sbv.Visible); - Assert.False (sbv.OtherScrollBarView.Visible); + Assert.Equal (22, max); // 22+78=100 + Assert.True (sbv.Visible); + Assert.True (sbv.OtherScrollBarView.Visible); sbv.KeepContentAlwaysInViewport = false; sbv.OtherScrollBarView.KeepContentAlwaysInViewport = false; Assert.True (sbv.CanScroll (50, out max, sbv.IsVertical)); - Assert.Equal (39, max); + Assert.Equal (40, max); Assert.True (sbv.OtherScrollBarView.CanScroll (150, out max, sbv.OtherScrollBarView.IsVertical)); - Assert.Equal (99, max); + Assert.Equal (100, max); Assert.True (sbv.Visible); Assert.True (sbv.OtherScrollBarView.Visible); } @@ -803,182 +801,5 @@ public void Hosting_ShowBothScrollIndicator_Invisible () pos = GraphViewTests.AssertDriverContentsWithFrameAre (expected, output); Assert.Equal (new Rect (0, 0, 10, 10), pos); } - - - [Fact, AutoInitShutdown] - public void ContentBottomRightCorner_Not_Redraw_If_Both_Size_Equal_To_Zero () - { - var text = "This is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test"; - var label = new Label (text); - Application.Top.Add (label); - - var sbv = new ScrollBarView (label, true, true) { - Size = 100, - }; - sbv.OtherScrollBarView.Size = 100; - Application.Begin (Application.Top); - - Assert.Equal (100, sbv.Size); - Assert.Equal (100, sbv.OtherScrollBarView.Size); - Assert.True (sbv.ShowScrollIndicator); - Assert.True (sbv.OtherScrollBarView.ShowScrollIndicator); - Assert.True (sbv.Visible); - Assert.True (sbv.OtherScrollBarView.Visible); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a tes▲ -This is a tes┬ -This is a tes┴ -This is a tes░ -This is a tes▼ -◄├─┤░░░░░░░░► -", output); - - sbv.Size = 0; - sbv.OtherScrollBarView.Size = 0; - Assert.Equal (0, sbv.Size); - Assert.Equal (0, sbv.OtherScrollBarView.Size); - Assert.False (sbv.ShowScrollIndicator); - Assert.False (sbv.OtherScrollBarView.ShowScrollIndicator); - Assert.False (sbv.Visible); - Assert.False (sbv.OtherScrollBarView.Visible); - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a test -This is a test -This is a test -This is a test -This is a test -This is a test -", output); - - sbv.Size = 50; - sbv.OtherScrollBarView.Size = 50; - Assert.Equal (50, sbv.Size); - Assert.Equal (50, sbv.OtherScrollBarView.Size); - Assert.True (sbv.ShowScrollIndicator); - Assert.True (sbv.OtherScrollBarView.ShowScrollIndicator); - Assert.True (sbv.Visible); - Assert.True (sbv.OtherScrollBarView.Visible); - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a tes▲ -This is a tes┬ -This is a tes┴ -This is a tes░ -This is a tes▼ -◄├──┤░░░░░░░► -", output); - - } - - [Fact, AutoInitShutdown] - public void ContentBottomRightCorner_Not_Redraw_If_One_Size_Equal_To_Zero () - { - var text = "This is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test"; - var label = new Label (text); - Application.Top.Add (label); - - var sbv = new ScrollBarView (label, true, false) { - Size = 100, - }; - Application.Begin (Application.Top); - - Assert.Equal (100, sbv.Size); - Assert.Null (sbv.OtherScrollBarView); - Assert.True (sbv.ShowScrollIndicator); - Assert.True (sbv.Visible); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a tes▲ -This is a tes┬ -This is a tes┴ -This is a tes░ -This is a tes░ -This is a tes▼ -", output); - - sbv.Size = 0; - Assert.Equal (0, sbv.Size); - Assert.False (sbv.ShowScrollIndicator); - Assert.False (sbv.Visible); - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a test -This is a test -This is a test -This is a test -This is a test -This is a test -", output); - } - - [Fact, AutoInitShutdown] - public void ShowScrollIndicator_False_Must_Also_Set_Visible_To_False_To_Not_Respond_To_Events () - { - var clicked = false; - var text = "This is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test"; - var label = new Label (text) { Width = 14, Height = 5 }; - var btn = new Button (14, 0, "Click Me!"); - btn.Clicked += () => clicked = true; - Application.Top.Add (label, btn); - - var sbv = new ScrollBarView (label, true, false) { - Size = 5, - }; - Application.Begin (Application.Top); - - Assert.Equal (5, sbv.Size); - Assert.Null (sbv.OtherScrollBarView); - Assert.False (sbv.ShowScrollIndicator); - Assert.False (sbv.Visible); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a test[ Click Me! ] -This is a test -This is a test -This is a test -This is a test -", output); - - ReflectionTools.InvokePrivate ( - typeof (Application), - "ProcessMouseEvent", - new MouseEvent () { - X = 15, - Y = 0, - Flags = MouseFlags.Button1Clicked - }); - - Assert.Null (Application.mouseGrabView); - Assert.True (clicked); - - clicked = false; - - sbv.Visible = true; - Assert.Equal (5, sbv.Size); - Assert.False (sbv.ShowScrollIndicator); - Assert.True (sbv.Visible); - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a test[ Click Me! ] -This is a test -This is a test -This is a test -This is a test -", output); - - ReflectionTools.InvokePrivate ( - typeof (Application), - "ProcessMouseEvent", - new MouseEvent () { - X = 15, - Y = 0, - Flags = MouseFlags.Button1Clicked - }); - - Assert.Null (Application.mouseGrabView); - Assert.True (clicked); - Assert.Equal (5, sbv.Size); - Assert.False (sbv.ShowScrollIndicator); - Assert.False (sbv.Visible); - } } } diff --git a/UnitTests/TextFormatterTests.cs b/UnitTests/TextFormatterTests.cs index 0199df733e..02b07c0a5f 100644 --- a/UnitTests/TextFormatterTests.cs +++ b/UnitTests/TextFormatterTests.cs @@ -1093,11 +1093,11 @@ public void ClipAndJustify_Valid_Justified () text = "A sentence has words."; // should fit maxWidth = text.RuneCount + 1; - expectedClippedWidth = Math.Max (text.RuneCount, maxWidth); + expectedClippedWidth = Math.Min (text.RuneCount, maxWidth); justifiedText = TextFormatter.ClipAndJustify (text, maxWidth, align); - Assert.Equal (expectedClippedWidth, justifiedText.RuneCount); + //Assert.Equal (expectedClippedWidth, justifiedText.RuneCount); Assert.True (expectedClippedWidth <= maxWidth); - Assert.Throws (() => ustring.Make (text.ToRunes () [0..expectedClippedWidth])); + Assert.Equal (ustring.Make (text.ToRunes () [0..expectedClippedWidth]), justifiedText); // Should fit. maxWidth = text.RuneCount + 0; @@ -1205,6 +1205,7 @@ public void ClipAndJustify_Valid_Justified () Assert.Equal (ustring.Make (text.ToRunes () [0..expectedClippedWidth]), justifiedText); // see Justify_ tests below + } [Fact] @@ -1309,7 +1310,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012++456+89"; + justifiedText = text.Replace (" ", "+"); forceToWidth = text.RuneCount + 1; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1321,7 +1322,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012+++456++89"; + justifiedText = text.Replace (" ", "++"); forceToWidth = text.RuneCount + 3; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1333,7 +1334,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012++++456+++89"; + justifiedText = text.Replace (" ", "+++"); forceToWidth = text.RuneCount + 5; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1351,7 +1352,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012+++++++++++++456++++++++++++89"; + justifiedText = text.Replace (" ", "++++++++++++"); forceToWidth = text.RuneCount + 23; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1367,13 +1368,13 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012++456+89+end"; + justifiedText = text.Replace (" ", "+"); forceToWidth = text.RuneCount + 1; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012++456++89+end"; + justifiedText = text.Replace (" ", "+"); forceToWidth = text.RuneCount + 2; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1385,13 +1386,13 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012+++456++89++end"; + justifiedText = text.Replace (" ", "++"); forceToWidth = text.RuneCount + 4; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012+++456+++89++end"; + justifiedText = text.Replace (" ", "++"); forceToWidth = text.RuneCount + 5; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1403,13 +1404,13 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012++++++++456++++++++89+++++++end"; + justifiedText = text.Replace (" ", "+++++++"); forceToWidth = text.RuneCount + 20; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "012+++++++++456+++++++++89++++++++end"; + justifiedText = text.Replace (" ", "++++++++"); forceToWidth = text.RuneCount + 23; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1426,7 +1427,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "пÑÐ++вÐ+Ñ"; + justifiedText = text.Replace (" ", "+"); forceToWidth = text.RuneCount + 1; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1438,7 +1439,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "пÑÐ+++вÐ++Ñ"; + justifiedText = text.Replace (" ", "++"); forceToWidth = text.RuneCount + 3; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1450,7 +1451,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "пÑÐ++++вÐ+++Ñ"; + justifiedText = text.Replace (" ", "+++"); forceToWidth = text.RuneCount + 5; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1468,7 +1469,7 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "пÑÐ+++++++++++++вÐ++++++++++++Ñ"; + justifiedText = text.Replace (" ", "++++++++++++"); forceToWidth = text.RuneCount + 23; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1485,13 +1486,13 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "Ð++ÑÐ+вÐ+Ñ"; + justifiedText = text.Replace (" ", "+"); forceToWidth = text.RuneCount + 1; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "Ð++ÑÐ++вÐ+Ñ"; + justifiedText = text.Replace (" ", "+"); forceToWidth = text.RuneCount + 2; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1503,13 +1504,13 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "Ð+++ÑÐ++вÐ++Ñ"; + justifiedText = text.Replace (" ", "++"); forceToWidth = text.RuneCount + 4; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "Ð+++ÑÐ+++вÐ++Ñ"; + justifiedText = text.Replace (" ", "++"); forceToWidth = text.RuneCount + 5; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -1521,13 +1522,13 @@ public void Justify_Sentence () Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "Ð++++++++ÑÐ++++++++вÐ+++++++Ñ"; + justifiedText = text.Replace (" ", "+++++++"); forceToWidth = text.RuneCount + 20; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); Assert.True (Math.Abs (forceToWidth - justifiedText.ConsoleWidth) < text.Count (" ")); - justifiedText = "Ð+++++++++ÑÐ+++++++++вÐ++++++++Ñ"; + justifiedText = text.Replace (" ", "++++++++"); forceToWidth = text.RuneCount + 23; Assert.Equal (justifiedText.ToString (), TextFormatter.Justify (text, forceToWidth, fillChar).ToString ()); Assert.True (Math.Abs (forceToWidth - justifiedText.RuneCount) < text.Count (" ")); @@ -2933,38 +2934,6 @@ public void Format_Dont_Throw_ArgumentException_With_WordWrap_As_False_And_Keep_ Assert.Null (exception); } - - - [Fact, AutoInitShutdown] - public void Format_Justified_Always_Returns_Text_Width_Equal_To_Passed_Width_Horizontal () - { - ustring text = "Hello world, how are you today? Pretty neat!"; - - Assert.Equal (44, text.RuneCount); - - for (int i = 44; i < 80; i++) { - var fmtText = TextFormatter.Format (text, i, TextAlignment.Justified, false, true) [0]; - Assert.Equal (i, fmtText.RuneCount); - var c = (char)fmtText [^1]; - Assert.Equal ('!', c); - } - } - - [Fact, AutoInitShutdown] - public void Format_Justified_Always_Returns_Text_Width_Equal_To_Passed_Width_Vertical () - { - ustring text = "Hello world, how are you today? Pretty neat!"; - - Assert.Equal (44, text.RuneCount); - - for (int i = 44; i < 80; i++) { - var fmtText = TextFormatter.Format (text, i, TextAlignment.Justified, false, true, 0, TextDirection.TopBottom_LeftRight) [0]; - Assert.Equal (i, fmtText.RuneCount); - var c = (char)fmtText [^1]; - Assert.Equal ('!', c); - } - } - [Fact] public void Draw_Horizontal_Throws_IndexOutOfRangeException_With_Negative_Bounds () { @@ -3365,48 +3334,6 @@ public void Draw_Vertical_Wide_TextAlignments () Assert.Equal (new Rect (0, 0, 13, height + 2), pos); } - [Fact, AutoInitShutdown] - public void Draw_Fill_Remaining () - { - var view = new View ("This view needs to be cleared before rewritten."); - - var tf1 = new TextFormatter (); - tf1.Text = "This TextFormatter (tf1) without fill will not be cleared on rewritten."; - var tf1Size = tf1.Size; - - var tf2 = new TextFormatter (); - tf2.Text = "This TextFormatter (tf2) with fill will be cleared on rewritten."; - var tf2Size = tf2.Size; - - Application.Top.Add (view); - Application.Begin (Application.Top); - - tf1.Draw (new Rect (new Point (0, 1), tf1Size), view.GetNormalColor (), view.ColorScheme.HotNormal, default, false); - - tf2.Draw (new Rect (new Point (0, 2), tf2Size), view.GetNormalColor (), view.ColorScheme.HotNormal); - - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This view needs to be cleared before rewritten. -This TextFormatter (tf1) without fill will not be cleared on rewritten. -This TextFormatter (tf2) with fill will be cleared on rewritten. -", output); - - view.Text = "This view is rewritten."; - view.Redraw (view.Bounds); - - tf1.Text = "This TextFormatter (tf1) is rewritten."; - tf1.Draw (new Rect (new Point (0, 1), tf1Size), view.GetNormalColor (), view.ColorScheme.HotNormal, default, false); - - tf2.Text = "This TextFormatter (tf2) is rewritten."; - tf2.Draw (new Rect (new Point (0, 2), tf2Size), view.GetNormalColor (), view.ColorScheme.HotNormal); - - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This view is rewritten. -This TextFormatter (tf1) is rewritten.will not be cleared on rewritten. -This TextFormatter (tf2) is rewritten. -", output); - } - [Fact] public void GetTextWidth_Simple_And_Wide_Runes () { @@ -4085,57 +4012,5 @@ public void Format_With_PreserveTrailingSpaces_And_Without_PreserveTrailingSpace Assert.Equal ("Line2", formated [1]); Assert.Equal ("Line3", formated [^1]); } - - [Fact] - public void SplitNewLine_Ending_Without_NewLine_Probably_CRLF () - { - var text = $"First Line 界{Environment.NewLine}Second Line 界{Environment.NewLine}Third Line 界"; - var splited = TextFormatter.SplitNewLine (text); - Assert.Equal ("First Line 界", splited [0]); - Assert.Equal ("Second Line 界", splited [1]); - Assert.Equal ("Third Line 界", splited [^1]); - } - - [Fact] - public void SplitNewLine_Ending_With_NewLine_Probably_CRLF () - { - var text = $"First Line 界{Environment.NewLine}Second Line 界{Environment.NewLine}Third Line 界{Environment.NewLine}"; - var splited = TextFormatter.SplitNewLine (text); - Assert.Equal ("First Line 界", splited [0]); - Assert.Equal ("Second Line 界", splited [1]); - Assert.Equal ("Third Line 界", splited [2]); - Assert.Equal ("", splited [^1]); - } - - [Fact] - public void SplitNewLine_Ending_Without_NewLine_Only_LF () - { - var text = $"First Line 界\nSecond Line 界\nThird Line 界"; - var splited = TextFormatter.SplitNewLine (text); - Assert.Equal ("First Line 界", splited [0]); - Assert.Equal ("Second Line 界", splited [1]); - Assert.Equal ("Third Line 界", splited [^1]); - } - - [Fact] - public void SplitNewLine_Ending_With_NewLine_Only_LF () - { - var text = $"First Line 界\nSecond Line 界\nThird Line 界\n"; - var splited = TextFormatter.SplitNewLine (text); - Assert.Equal ("First Line 界", splited [0]); - Assert.Equal ("Second Line 界", splited [1]); - Assert.Equal ("Third Line 界", splited [2]); - Assert.Equal ("", splited [^1]); - } - - [Fact] - public void MaxWidthLine_With_And_Without_Newlines () - { - var text = "Single Line 界"; - Assert.Equal (14, TextFormatter.MaxWidthLine (text)); - - text = $"First Line 界\nSecond Line 界\nThird Line 界\n"; - Assert.Equal (14, TextFormatter.MaxWidthLine (text)); - } } } \ No newline at end of file diff --git a/UnitTests/TextViewTests.cs b/UnitTests/TextViewTests.cs index 0b32588d3f..c618664834 100644 --- a/UnitTests/TextViewTests.cs +++ b/UnitTests/TextViewTests.cs @@ -1323,26 +1323,20 @@ public void Copy_Or_Cut_And_Paste_With_No_Selection () Assert.Equal ("TAB to jump between text fields.", _textView.Text); _textView.SelectionStartColumn = 0; _textView.SelectionStartRow = 0; - Assert.Equal (new Point (24, 0), _textView.CursorPosition); Assert.True (_textView.Selecting); _textView.Selecting = false; _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste - Assert.Equal (new Point (28, 0), _textView.CursorPosition); - Assert.False (_textView.Selecting); Assert.Equal ("TAB to jump between texttext fields.", _textView.Text); _textView.SelectionStartColumn = 24; _textView.SelectionStartRow = 0; _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Cut - Assert.Equal (new Point (24, 0), _textView.CursorPosition); - Assert.False (_textView.Selecting); Assert.Equal ("", _textView.SelectedText); Assert.Equal ("TAB to jump between text fields.", _textView.Text); _textView.SelectionStartColumn = 0; _textView.SelectionStartRow = 0; + Assert.True (_textView.Selecting); _textView.Selecting = false; _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste - Assert.Equal (new Point (28, 0), _textView.CursorPosition); - Assert.False (_textView.Selecting); Assert.Equal ("TAB to jump between texttext fields.", _textView.Text); } @@ -5879,535 +5873,5 @@ public void ScrollTo_CursorPosition () tv.CursorPosition = new Point (tv.LeftColumn, tv.TopRow); Assert.Equal (new Point (0, 50), tv.CursorPosition); } - - [Fact] - [InitShutdown] - public void Mouse_Button_Shift_Preserves_Selection () - { - Assert.Equal ("TAB to jump between text fields.", _textView.Text); - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 12, Y = 0, Flags = MouseFlags.Button1Pressed | MouseFlags.ButtonShift })); - Assert.Equal (0, _textView.SelectionStartColumn); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (12, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("TAB to jump ", _textView.SelectedText); - - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 12, Y = 0, Flags = MouseFlags.Button1Clicked })); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (12, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("TAB to jump ", _textView.SelectedText); - - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 19, Y = 0, Flags = MouseFlags.Button1Pressed | MouseFlags.ButtonShift })); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (19, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("TAB to jump between", _textView.SelectedText); - - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 19, Y = 0, Flags = MouseFlags.Button1Clicked })); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (19, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("TAB to jump between", _textView.SelectedText); - - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 24, Y = 0, Flags = MouseFlags.Button1Pressed | MouseFlags.ButtonShift })); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (24, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("TAB to jump between text", _textView.SelectedText); - - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 24, Y = 0, Flags = MouseFlags.Button1Clicked })); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (24, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("TAB to jump between text", _textView.SelectedText); - - Assert.True (_textView.MouseEvent (new MouseEvent () { X = 24, Y = 0, Flags = MouseFlags.Button1Pressed })); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (0, _textView.SelectionStartRow); - Assert.Equal (new Point (24, 0), _textView.CursorPosition); - Assert.True (_textView.Selecting); - Assert.Equal ("", _textView.SelectedText); - } - - [Fact, AutoInitShutdown] - public void UnwrappedCursorPosition_Event () - { - var cp = Point.Empty; - var tv = new TextView () { - Width = Dim.Fill (), - Height = Dim.Fill (), - Text = "This is the first line.\nThis is the second line.\n" - }; - tv.UnwrappedCursorPosition += (e) => { - cp = e; - }; - Application.Top.Add (tv); - Application.Begin (Application.Top); - - Assert.False (tv.WordWrap); - Assert.Equal (Point.Empty, tv.CursorPosition); - Assert.Equal (Point.Empty, cp); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is the first line. -This is the second line. -", output); - - tv.WordWrap = true; - tv.CursorPosition = new Point (12, 0); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (12, 0), tv.CursorPosition); - Assert.Equal (new Point (12, 0), cp); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is the first line. -This is the second line. -", output); - - ((FakeDriver)Application.Driver).SetBufferSize (6, 25); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (4, 2), tv.CursorPosition); - Assert.Equal (new Point (12, 0), cp); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This -is -the -first - -line. -This -is -the -secon -d -line. -", output); - - Assert.True (tv.ProcessKey (new KeyEvent (Key.CursorRight, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (0, 3), tv.CursorPosition); - Assert.Equal (new Point (12, 0), cp); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This -is -the -first - -line. -This -is -the -secon -d -line. -", output); - - Assert.True (tv.ProcessKey (new KeyEvent (Key.CursorRight, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (1, 3), tv.CursorPosition); - Assert.Equal (new Point (13, 0), cp); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This -is -the -first - -line. -This -is -the -secon -d -line. -", output); - - Assert.True (tv.MouseEvent (new MouseEvent () { X = 0, Y = 3, Flags = MouseFlags.Button1Pressed })); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (0, 3), tv.CursorPosition); - Assert.Equal (new Point (12, 0), cp); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This -is -the -first - -line. -This -is -the -secon -d -line. -", output); - } - - [Fact] - [AutoInitShutdown] - public void DeleteTextBackwards_WordWrap_False_Return_Undo () - { - const string text = "This is the first line.\nThis is the second line.\n"; - var tv = new TextView () { - Width = Dim.Fill (), - Height = Dim.Fill (), - Text = text - }; - var envText = tv.Text; - Application.Top.Add (tv); - Application.Begin (Application.Top); - - Assert.False (tv.WordWrap); - Assert.Equal (Point.Empty, tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (3, 0); - Assert.Equal (new Point (3, 0), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.Backspace, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (0, 1); - Assert.Equal (new Point (0, 1), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.Backspace, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (22, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line.This is the second line. -", output); - - Assert.True (tv.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (0, 1), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - while (tv.Text != envText) { - Assert.True (tv.ProcessKey (new KeyEvent (Key.Z | Key.CtrlMask, new KeyModifiers ()))); - } - Assert.Equal (envText, tv.Text); - Assert.Equal (new Point (3, 0), tv.CursorPosition); - Assert.False (tv.IsDirty); - } - - [Fact] - [AutoInitShutdown] - public void DeleteTextBackwards_WordWrap_True_Return_Undo () - { - const string text = "This is the first line.\nThis is the second line.\n"; - var tv = new TextView () { - Width = Dim.Fill (), - Height = Dim.Fill (), - Text = text, - WordWrap = true - }; - var envText = tv.Text; - Application.Top.Add (tv); - Application.Begin (Application.Top); - - Assert.True (tv.WordWrap); - Assert.Equal (Point.Empty, tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (3, 0); - Assert.Equal (new Point (3, 0), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.Backspace, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (0, 1); - Assert.Equal (new Point (0, 1), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.Backspace, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (22, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line.This is the second line. -", output); - - Assert.True (tv.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (0, 1), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - while (tv.Text != envText) { - Assert.True (tv.ProcessKey (new KeyEvent (Key.Z | Key.CtrlMask, new KeyModifiers ()))); - } - Assert.Equal (envText, tv.Text); - Assert.Equal (new Point (3, 0), tv.CursorPosition); - Assert.False (tv.IsDirty); - } - - [Fact] - [AutoInitShutdown] - public void DeleteTextForwards_WordWrap_False_Return_Undo () - { - const string text = "This is the first line.\nThis is the second line.\n"; - var tv = new TextView () { - Width = Dim.Fill (), - Height = Dim.Fill (), - Text = text - }; - var envText = tv.Text; - Application.Top.Add (tv); - Application.Begin (Application.Top); - - Assert.False (tv.WordWrap); - Assert.Equal (Point.Empty, tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (2, 0); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.DeleteChar, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (22, 0); - Assert.Equal (new Point (22, 0), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.DeleteChar, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (22, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line.This is the second line. -", output); - - Assert.True (tv.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (0, 1), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - while (tv.Text != envText) { - Assert.True (tv.ProcessKey (new KeyEvent (Key.Z | Key.CtrlMask, new KeyModifiers ()))); - } - Assert.Equal (envText, tv.Text); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - Assert.False (tv.IsDirty); - } - - [Fact] - [AutoInitShutdown] - public void DeleteTextForwards_WordWrap_True_Return_Undo () - { - const string text = "This is the first line.\nThis is the second line.\n"; - var tv = new TextView () { - Width = Dim.Fill (), - Height = Dim.Fill (), - Text = text, - WordWrap = true - }; - var envText = tv.Text; - Application.Top.Add (tv); - Application.Begin (Application.Top); - - Assert.True (tv.WordWrap); - Assert.Equal (Point.Empty, tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (2, 0); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.DeleteChar, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - tv.CursorPosition = new Point (22, 0); - Assert.Equal (new Point (22, 0), tv.CursorPosition); - Assert.True (tv.ProcessKey (new KeyEvent (Key.DeleteChar, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (22, 0), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line.This is the second line. -", output); - - Assert.True (tv.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()))); - tv.Redraw (tv.Bounds); - Assert.Equal (new Point (0, 1), tv.CursorPosition); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -Ths is the first line. -This is the second line. -", output); - - while (tv.Text != envText) { - Assert.True (tv.ProcessKey (new KeyEvent (Key.Z | Key.CtrlMask, new KeyModifiers ()))); - } - Assert.Equal (envText, tv.Text); - Assert.Equal (new Point (2, 0), tv.CursorPosition); - Assert.False (tv.IsDirty); - } - - [Fact] - [InitShutdown] - public void TextView_InsertText_Newline_LF () - { - var tv = new TextView { - Width = 10, - Height = 10, - }; - tv.InsertText ("\naaa\nbbb"); - var p = Environment.OSVersion.Platform; - if (p == PlatformID.Win32NT || p == PlatformID.Win32S || p == PlatformID.Win32Windows) { - Assert.Equal ("\r\naaa\r\nbbb", tv.Text); - } else { - Assert.Equal ("\naaa\nbbb", tv.Text); - } - Assert.Equal ($"{Environment.NewLine}aaa{Environment.NewLine}bbb", tv.Text); - - var win = new Window (); - win.Add (tv); - Application.Top.Add (win); - Application.Begin (Application.Top); - ((FakeDriver)Application.Driver).SetBufferSize (15, 15); - Application.Refresh (); - //this passes - var pos = GraphViewTests.AssertDriverContentsWithFrameAre ( - @" -┌─────────────┐ -│ │ -│aaa │ -│bbb │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -└─────────────┘", output); - - Assert.Equal (new Rect (0, 0, 15, 15), pos); - - Assert.True (tv.Used); - tv.Used = false; - tv.CursorPosition = new Point (0, 0); - tv.InsertText ("\naaa\nbbb"); - Application.Refresh (); - - GraphViewTests.AssertDriverContentsWithFrameAre ( - @" -┌─────────────┐ -│ │ -│aaa │ -│bbb │ -│aaa │ -│bbb │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -└─────────────┘", output); - } - - [Fact] - [InitShutdown] - public void TextView_InsertText_Newline_CRLF () - { - var tv = new TextView { - Width = 10, - Height = 10, - }; - tv.InsertText ("\r\naaa\r\nbbb"); - var p = Environment.OSVersion.Platform; - if (p == PlatformID.Win32NT || p == PlatformID.Win32S || p == PlatformID.Win32Windows) { - Assert.Equal ("\r\naaa\r\nbbb", tv.Text); - } else { - Assert.Equal ("\naaa\nbbb", tv.Text); - } - Assert.Equal ($"{Environment.NewLine}aaa{Environment.NewLine}bbb", tv.Text); - - var win = new Window (); - win.Add (tv); - Application.Top.Add (win); - Application.Begin (Application.Top); - ((FakeDriver)Application.Driver).SetBufferSize (15, 15); - Application.Refresh (); - - //this passes - var pos = GraphViewTests.AssertDriverContentsWithFrameAre ( - @" -┌─────────────┐ -│ │ -│aaa │ -│bbb │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -└─────────────┘", output); - - Assert.Equal (new Rect (0, 0, 15, 15), pos); - - Assert.True (tv.Used); - tv.Used = false; - tv.CursorPosition = new Point (0, 0); - tv.InsertText ("\r\naaa\r\nbbb"); - Application.Refresh (); - - GraphViewTests.AssertDriverContentsWithFrameAre ( - @" -┌─────────────┐ -│ │ -│aaa │ -│bbb │ -│aaa │ -│bbb │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -│ │ -└─────────────┘", output); - } } } \ No newline at end of file diff --git a/UnitTests/TreeViewTests.cs b/UnitTests/TreeViewTests.cs index 1cdc3ed547..c14cebd51a 100644 --- a/UnitTests/TreeViewTests.cs +++ b/UnitTests/TreeViewTests.cs @@ -543,15 +543,6 @@ public void GoTo_OnlyAppliesToExposedObjects () Assert.Equal (1, tree.ScrollOffsetVertical); } - [Fact] - public void GoToEnd_ShouldNotFailOnEmptyTreeView () - { - var tree = new TreeView (); - - var exception = Record.Exception (() => tree.GoToEnd ()); - - Assert.Null (exception); - } [Fact] public void ObjectActivated_CustomKey () diff --git a/UnitTests/UnitTests.csproj b/UnitTests/UnitTests.csproj index 1035b581b7..f3bdb15066 100644 --- a/UnitTests/UnitTests.csproj +++ b/UnitTests/UnitTests.csproj @@ -18,8 +18,8 @@ TRACE;DEBUG_IDISPOSABLE - - + + diff --git a/UnitTests/ViewTests.cs b/UnitTests/ViewTests.cs index ef601b46b8..8b0c4ee113 100644 --- a/UnitTests/ViewTests.cs +++ b/UnitTests/ViewTests.cs @@ -3803,94 +3803,5 @@ e n ", output); } - [Fact, AutoInitShutdown] - public void Visible_Clear_The_View_Output () - { - var label = new Label ("Testing visibility."); - var win = new Window (); - win.Add (label); - var top = Application.Top; - top.Add (win); - Application.Begin (top); - - Assert.True (label.Visible); - ((FakeDriver)Application.Driver).SetBufferSize (30, 5); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌────────────────────────────┐ -│Testing visibility. │ -│ │ -│ │ -└────────────────────────────┘ -", output); - - label.Visible = false; - GraphViewTests.AssertDriverContentsWithFrameAre (@" -┌────────────────────────────┐ -│ │ -│ │ -│ │ -└────────────────────────────┘ -", output); - } - - [Fact, AutoInitShutdown] - public void ClearOnVisibleFalse_Gets_Sets () - { - var text = "This is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test\nThis is a test"; - var label = new Label (text); - Application.Top.Add (label); - - var sbv = new ScrollBarView (label, true, false) { - Size = 100, - ClearOnVisibleFalse = false - }; - Application.Begin (Application.Top); - - Assert.True (sbv.Visible); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a tes▲ -This is a tes┬ -This is a tes┴ -This is a tes░ -This is a tes░ -This is a tes▼ -", output); - - sbv.Visible = false; - Assert.False (sbv.Visible); - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a test -This is a test -This is a test -This is a test -This is a test -This is a test -", output); - - sbv.Visible = true; - Assert.True (sbv.Visible); - Application.Top.Redraw (Application.Top.Bounds); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a tes▲ -This is a tes┬ -This is a tes┴ -This is a tes░ -This is a tes░ -This is a tes▼ -", output); - - sbv.ClearOnVisibleFalse = true; - sbv.Visible = false; - Assert.False (sbv.Visible); - GraphViewTests.AssertDriverContentsWithFrameAre (@" -This is a tes -This is a tes -This is a tes -This is a tes -This is a tes -This is a tes -", output); - } } } diff --git a/docfx/README.md b/docfx/README.md index c12d87a75a..cd3a725bad 100644 --- a/docfx/README.md +++ b/docfx/README.md @@ -1,8 +1,8 @@ This folder generates the API docs for Terminal.Gui. -The API documentation is generated using the [DocFX tool](https://github.com/dotnet/docfx). The output of docfx gets put into the `./docs` folder which is then checked in. The `./docs` folder is then picked up by Github Pages and published to Miguel's Github Pages (https://migueldeicaza.github.io/gui.cs/). +The API documentation is generated via a GitHub Action (`.github/workflows/api-docs.yml`) using [DocFX](https://github.com/dotnet/docfx). The Action publishes the docs to the `gh-pages` branch, which gets published to https://gui-cs.github.io/Terminal.Gui/. -## To Generate the Docs +## To Generate the Docs Locally 0. Install DotFX https://dotnet.github.io/docfx/tutorial/docfx_getting_started.html 1. Change to the `./docfx` folder and run `./build.ps1` @@ -10,3 +10,5 @@ The API documentation is generated using the [DocFX tool](https://github.com/dot 3. Hit ctrl-c to stop the script. If `docfx` fails with a `Stackoverflow` error. Just run it again. And again. Sometimes it takes a few times. If that doesn't work, create a fresh clone or delete the `docfx/api`, `docfx/obj`, and `docs/` folders and run the steps above again. + +Note the `./docfx/build.ps1` script will create a `./docs` folder. This folder is ignored by `.gitignore`. diff --git a/docs/README.html b/docs/README.html deleted file mode 100644 index ceabe3678a..0000000000 --- a/docs/README.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - To Generate the Docs - - - - - - - - - - - - - - - - -
-
- - - - -
-
- -
-
Search Results for
-
-

-
-
    -
    -
    - - - -
    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html deleted file mode 100644 index 109f26505f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Class Application.ResizedEventArgs - - - - - - - - - - - - - - - - - -
    -
    - - - - -
    -
    - -
    -
    Search Results for
    -
    -

    -
    -
      -
      -
      - - - -
      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html b/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html deleted file mode 100644 index 7e91a049f3..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - Class Application.RunState - - - - - - - - - - - - - - - - - -
      -
      - - - - -
      -
      - -
      -
      Search Results for
      -
      -

      -
      -
        -
        -
        - - - -
        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Application.html b/docs/api/Terminal.Gui/Terminal.Gui.Application.html deleted file mode 100644 index 0a132fcaca..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Application.html +++ /dev/null @@ -1,1441 +0,0 @@ - - - - - - - - Class Application - - - - - - - - - - - - - - - - - -
        -
        - - - - -
        -
        - -
        -
        Search Results for
        -
        -

        -
        -
          -
          -
          - - - -
          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Attribute.html b/docs/api/Terminal.Gui/Terminal.Gui.Attribute.html deleted file mode 100644 index df5de2d84f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Attribute.html +++ /dev/null @@ -1,607 +0,0 @@ - - - - - - - - Struct Attribute - - - - - - - - - - - - - - - - - -
          -
          - - - - -
          -
          - -
          -
          Search Results for
          -
          -

          -
          -
            -
            -
            - - - -
            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Autocomplete.html b/docs/api/Terminal.Gui/Terminal.Gui.Autocomplete.html deleted file mode 100644 index 0576d3c18e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Autocomplete.html +++ /dev/null @@ -1,1195 +0,0 @@ - - - - - - - - Class Autocomplete - - - - - - - - - - - - - - - - - -
            -
            - - - - -
            -
            - -
            -
            Search Results for
            -
            -

            -
            -
              -
              -
              - - - -
              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html b/docs/api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html deleted file mode 100644 index 0fa476f997..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html +++ /dev/null @@ -1,965 +0,0 @@ - - - - - - - - Class Border.ToplevelContainer - - - - - - - - - - - - - - - - - -
              -
              - - - - -
              -
              - -
              -
              Search Results for
              -
              -

              -
              -
                -
                -
                - - - -
                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Border.html b/docs/api/Terminal.Gui/Terminal.Gui.Border.html deleted file mode 100644 index 521ec6b623..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Border.html +++ /dev/null @@ -1,865 +0,0 @@ - - - - - - - - Class Border - - - - - - - - - - - - - - - - - -
                -
                - - - - -
                -
                - -
                -
                Search Results for
                -
                -

                -
                -
                  -
                  -
                  - - - -
                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.BorderStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.BorderStyle.html deleted file mode 100644 index 2061302ee0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.BorderStyle.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum BorderStyle - - - - - - - - - - - - - - - - - -
                  -
                  - - - - -
                  -
                  - -
                  -
                  Search Results for
                  -
                  -

                  -
                  -
                    -
                    -
                    - - - -
                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Button.html b/docs/api/Terminal.Gui/Terminal.Gui.Button.html deleted file mode 100644 index 108c086225..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Button.html +++ /dev/null @@ -1,1153 +0,0 @@ - - - - - - - - Class Button - - - - - - - - - - - - - - - - - -
                    -
                    - - - - -
                    -
                    - -
                    -
                    Search Results for
                    -
                    -

                    -
                    -
                      -
                      -
                      - - - -
                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.CheckBox.html b/docs/api/Terminal.Gui/Terminal.Gui.CheckBox.html deleted file mode 100644 index 3773719a7a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.CheckBox.html +++ /dev/null @@ -1,1069 +0,0 @@ - - - - - - - - Class CheckBox - - - - - - - - - - - - - - - - - -
                      -
                      - - - - -
                      -
                      - -
                      -
                      Search Results for
                      -
                      -

                      -
                      -
                        -
                        -
                        - - - -
                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Clipboard.html b/docs/api/Terminal.Gui/Terminal.Gui.Clipboard.html deleted file mode 100644 index a80594ce78..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Clipboard.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - Class Clipboard - - - - - - - - - - - - - - - - - -
                        -
                        - - - - -
                        -
                        - -
                        -
                        Search Results for
                        -
                        -

                        -
                        -
                          -
                          -
                          - - - -
                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ClipboardBase.html b/docs/api/Terminal.Gui/Terminal.Gui.ClipboardBase.html deleted file mode 100644 index 6f058d2d31..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ClipboardBase.html +++ /dev/null @@ -1,472 +0,0 @@ - - - - - - - - Class ClipboardBase - - - - - - - - - - - - - - - - - -
                          -
                          - - - - -
                          -
                          - -
                          -
                          Search Results for
                          -
                          -

                          -
                          -
                            -
                            -
                            - - - -
                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Color.html b/docs/api/Terminal.Gui/Terminal.Gui.Color.html deleted file mode 100644 index 76b86b35be..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Color.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - Enum Color - - - - - - - - - - - - - - - - - -
                            -
                            - - - - -
                            -
                            - -
                            -
                            Search Results for
                            -
                            -

                            -
                            -
                              -
                              -
                              - - - -
                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ColorPicker.html b/docs/api/Terminal.Gui/Terminal.Gui.ColorPicker.html deleted file mode 100644 index 10a7c95b1f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ColorPicker.html +++ /dev/null @@ -1,1091 +0,0 @@ - - - - - - - - Class ColorPicker - - - - - - - - - - - - - - - - - -
                              -
                              - - - - -
                              -
                              - -
                              -
                              Search Results for
                              -
                              -

                              -
                              -
                                -
                                -
                                - - - -
                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ColorScheme.html b/docs/api/Terminal.Gui/Terminal.Gui.ColorScheme.html deleted file mode 100644 index b3565d2c01..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ColorScheme.html +++ /dev/null @@ -1,580 +0,0 @@ - - - - - - - - Class ColorScheme - - - - - - - - - - - - - - - - - -
                                -
                                - - - - -
                                -
                                - -
                                -
                                Search Results for
                                -
                                -

                                -
                                -
                                  -
                                  -
                                  - - - -
                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Colors.html b/docs/api/Terminal.Gui/Terminal.Gui.Colors.html deleted file mode 100644 index 7db0f7a731..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Colors.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class Colors - - - - - - - - - - - - - - - - - -
                                  -
                                  - - - - -
                                  -
                                  - -
                                  -
                                  Search Results for
                                  -
                                  -

                                  -
                                  -
                                    -
                                    -
                                    - - - -
                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ComboBox.html b/docs/api/Terminal.Gui/Terminal.Gui.ComboBox.html deleted file mode 100644 index f944e6b53c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ComboBox.html +++ /dev/null @@ -1,1488 +0,0 @@ - - - - - - - - Class ComboBox - - - - - - - - - - - - - - - - - -
                                    -
                                    - - - - -
                                    -
                                    - -
                                    -
                                    Search Results for
                                    -
                                    -

                                    -
                                    -
                                      -
                                      -
                                      - - - -
                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Command.html b/docs/api/Terminal.Gui/Terminal.Gui.Command.html deleted file mode 100644 index c0f5d6cd1a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Command.html +++ /dev/null @@ -1,604 +0,0 @@ - - - - - - - - Enum Command - - - - - - - - - - - - - - - - - -
                                      -
                                      - - - - -
                                      -
                                      - -
                                      -
                                      Search Results for
                                      -
                                      -

                                      -
                                      -
                                        -
                                        -
                                        - - - -
                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html b/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html deleted file mode 100644 index 44b0634bbf..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - Enum ConsoleDriver.DiagnosticFlags - - - - - - - - - - - - - - - - - -
                                        -
                                        - - - - -
                                        -
                                        - -
                                        -
                                        Search Results for
                                        -
                                        -

                                        -
                                        -
                                          -
                                          -
                                          - - - -
                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html b/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html deleted file mode 100644 index 9b1c4292c9..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html +++ /dev/null @@ -1,2906 +0,0 @@ - - - - - - - - Class ConsoleDriver - - - - - - - - - - - - - - - - - -
                                          -
                                          - - - - -
                                          -
                                          - -
                                          -
                                          Search Results for
                                          -
                                          -

                                          -
                                          -
                                            -
                                            -
                                            - - - -
                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ContextMenu.html b/docs/api/Terminal.Gui/Terminal.Gui.ContextMenu.html deleted file mode 100644 index d61942bb61..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ContextMenu.html +++ /dev/null @@ -1,688 +0,0 @@ - - - - - - - - Class ContextMenu - - - - - - - - - - - - - - - - - -
                                            -
                                            - - - - -
                                            -
                                            - -
                                            -
                                            Search Results for
                                            -
                                            -

                                            -
                                            -
                                              -
                                              -
                                              - - - -
                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.CursorVisibility.html b/docs/api/Terminal.Gui/Terminal.Gui.CursorVisibility.html deleted file mode 100644 index f93a29d454..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.CursorVisibility.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - Enum CursorVisibility - - - - - - - - - - - - - - - - - -
                                              -
                                              - - - - -
                                              -
                                              - -
                                              -
                                              Search Results for
                                              -
                                              -

                                              -
                                              -
                                                -
                                                -
                                                - - - -
                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.DateField.html b/docs/api/Terminal.Gui/Terminal.Gui.DateField.html deleted file mode 100644 index 4f95fcc1da..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.DateField.html +++ /dev/null @@ -1,1095 +0,0 @@ - - - - - - - - Class DateField - - - - - - - - - - - - - - - - - -
                                                -
                                                - - - - -
                                                -
                                                - -
                                                -
                                                Search Results for
                                                -
                                                -

                                                -
                                                -
                                                  -
                                                  -
                                                  - - - -
                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html b/docs/api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html deleted file mode 100644 index 21bbaf1747..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - Class DateTimeEventArgs<T> - - - - - - - - - - - - - - - - - -
                                                  -
                                                  - - - - -
                                                  -
                                                  - -
                                                  -
                                                  Search Results for
                                                  -
                                                  -

                                                  -
                                                  -
                                                    -
                                                    -
                                                    - - - -
                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html b/docs/api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html deleted file mode 100644 index 940bdda9d6..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum Dialog.ButtonAlignments - - - - - - - - - - - - - - - - - -
                                                    -
                                                    - - - - -
                                                    -
                                                    - -
                                                    -
                                                    Search Results for
                                                    -
                                                    -

                                                    -
                                                    -
                                                      -
                                                      -
                                                      - - - -
                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html b/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html deleted file mode 100644 index d719f4e9d4..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html +++ /dev/null @@ -1,957 +0,0 @@ - - - - - - - - Class Dialog - - - - - - - - - - - - - - - - - -
                                                      -
                                                      - - - - -
                                                      -
                                                      - -
                                                      -
                                                      Search Results for
                                                      -
                                                      -

                                                      -
                                                      -
                                                        -
                                                        -
                                                        - - - -
                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Dim.html b/docs/api/Terminal.Gui/Terminal.Gui.Dim.html deleted file mode 100644 index 4a97aba807..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Dim.html +++ /dev/null @@ -1,716 +0,0 @@ - - - - - - - - Class Dim - - - - - - - - - - - - - - - - - -
                                                        -
                                                        - - - - -
                                                        -
                                                        - -
                                                        -
                                                        Search Results for
                                                        -
                                                        -

                                                        -
                                                        -
                                                          -
                                                          -
                                                          - - - -
                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html b/docs/api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html deleted file mode 100644 index 128722eeb5..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Enum DisplayModeLayout - - - - - - - - - - - - - - - - - -
                                                          -
                                                          - - - - -
                                                          -
                                                          - -
                                                          -
                                                          Search Results for
                                                          -
                                                          -

                                                          -
                                                          -
                                                            -
                                                            -
                                                            - - - -
                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.FakeConsole.html b/docs/api/Terminal.Gui/Terminal.Gui.FakeConsole.html deleted file mode 100644 index eeed4c4022..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.FakeConsole.html +++ /dev/null @@ -1,3371 +0,0 @@ - - - - - - - - Class FakeConsole - - - - - - - - - - - - - - - - - -
                                                            -
                                                            - - - - -
                                                            -
                                                            - -
                                                            -
                                                            Search Results for
                                                            -
                                                            -

                                                            -
                                                            -
                                                              -
                                                              -
                                                              - - - -
                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.FakeDriver.html b/docs/api/Terminal.Gui/Terminal.Gui.FakeDriver.html deleted file mode 100644 index d1ddfa47b5..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.FakeDriver.html +++ /dev/null @@ -1,1548 +0,0 @@ - - - - - - - - Class FakeDriver - - - - - - - - - - - - - - - - - -
                                                              -
                                                              - - - - -
                                                              -
                                                              - -
                                                              -
                                                              Search Results for
                                                              -
                                                              -

                                                              -
                                                              -
                                                                -
                                                                -
                                                                - - - -
                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html b/docs/api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html deleted file mode 100644 index e6e6f2a3f2..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class FakeMainLoop - - - - - - - - - - - - - - - - - -
                                                                -
                                                                - - - - -
                                                                -
                                                                - -
                                                                -
                                                                Search Results for
                                                                -
                                                                -

                                                                -
                                                                -
                                                                  -
                                                                  -
                                                                  - - - -
                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.FileDialog.html b/docs/api/Terminal.Gui/Terminal.Gui.FileDialog.html deleted file mode 100644 index c71144f41f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.FileDialog.html +++ /dev/null @@ -1,1282 +0,0 @@ - - - - - - - - Class FileDialog - - - - - - - - - - - - - - - - - -
                                                                  -
                                                                  - - - - -
                                                                  -
                                                                  - -
                                                                  -
                                                                  Search Results for
                                                                  -
                                                                  -

                                                                  -
                                                                  -
                                                                    -
                                                                    -
                                                                    - - - -
                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html b/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html deleted file mode 100644 index 7c69d30594..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html +++ /dev/null @@ -1,1012 +0,0 @@ - - - - - - - - Class FrameView - - - - - - - - - - - - - - - - - -
                                                                    -
                                                                    - - - - -
                                                                    -
                                                                    - -
                                                                    -
                                                                    Search Results for
                                                                    -
                                                                    -

                                                                    -
                                                                    -
                                                                      -
                                                                      -
                                                                      - - - -
                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.GraphView.html b/docs/api/Terminal.Gui/Terminal.Gui.GraphView.html deleted file mode 100644 index 58d3af5ee7..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.GraphView.html +++ /dev/null @@ -1,1305 +0,0 @@ - - - - - - - - Class GraphView - - - - - - - - - - - - - - - - - -
                                                                      -
                                                                      - - - - -
                                                                      -
                                                                      - -
                                                                      -
                                                                      Search Results for
                                                                      -
                                                                      -

                                                                      -
                                                                      -
                                                                        -
                                                                        -
                                                                        - - - -
                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html deleted file mode 100644 index dd66e06695..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - - - - Class Axis - - - - - - - - - - - - - - - - - -
                                                                        -
                                                                        - - - - -
                                                                        -
                                                                        - -
                                                                        -
                                                                        Search Results for
                                                                        -
                                                                        -

                                                                        -
                                                                        -
                                                                          -
                                                                          -
                                                                          - - - -
                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html deleted file mode 100644 index 996f502ec0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - Class AxisIncrementToRender - - - - - - - - - - - - - - - - - -
                                                                          -
                                                                          - - - - -
                                                                          -
                                                                          - -
                                                                          -
                                                                          Search Results for
                                                                          -
                                                                          -

                                                                          -
                                                                          -
                                                                            -
                                                                            -
                                                                            - - - -
                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html deleted file mode 100644 index 29dea382d3..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - Class BarSeries.Bar - - - - - - - - - - - - - - - - - -
                                                                            -
                                                                            - - - - -
                                                                            -
                                                                            - -
                                                                            -
                                                                            Search Results for
                                                                            -
                                                                            -

                                                                            -
                                                                            -
                                                                              -
                                                                              -
                                                                              - - - -
                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html deleted file mode 100644 index 5199c8fa48..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html +++ /dev/null @@ -1,520 +0,0 @@ - - - - - - - - Class BarSeries - - - - - - - - - - - - - - - - - -
                                                                              -
                                                                              - - - - -
                                                                              -
                                                                              - -
                                                                              -
                                                                              Search Results for
                                                                              -
                                                                              -

                                                                              -
                                                                              -
                                                                                -
                                                                                -
                                                                                - - - -
                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html deleted file mode 100644 index d42e05c8ba..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - Class GraphCellToRender - - - - - - - - - - - - - - - - - -
                                                                                -
                                                                                - - - - -
                                                                                -
                                                                                - -
                                                                                -
                                                                                Search Results for
                                                                                -
                                                                                -

                                                                                -
                                                                                -
                                                                                  -
                                                                                  -
                                                                                  - - - -
                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html deleted file mode 100644 index 7a6a634545..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html +++ /dev/null @@ -1,431 +0,0 @@ - - - - - - - - Class HorizontalAxis - - - - - - - - - - - - - - - - - -
                                                                                  -
                                                                                  - - - - -
                                                                                  -
                                                                                  - -
                                                                                  -
                                                                                  Search Results for
                                                                                  -
                                                                                  -

                                                                                  -
                                                                                  -
                                                                                    -
                                                                                    -
                                                                                    - - - -
                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html deleted file mode 100644 index 78c8e5c03c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - Interface IAnnotation - - - - - - - - - - - - - - - - - -
                                                                                    -
                                                                                    - - - - -
                                                                                    -
                                                                                    - -
                                                                                    -
                                                                                    Search Results for
                                                                                    -
                                                                                    -

                                                                                    -
                                                                                    -
                                                                                      -
                                                                                      -
                                                                                      - - - -
                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html deleted file mode 100644 index 18e3bf0a61..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - Interface ISeries - - - - - - - - - - - - - - - - - -
                                                                                      -
                                                                                      - - - - -
                                                                                      -
                                                                                      - -
                                                                                      -
                                                                                      Search Results for
                                                                                      -
                                                                                      -

                                                                                      -
                                                                                      -
                                                                                        -
                                                                                        -
                                                                                        - - - -
                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html deleted file mode 100644 index 029e987305..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Delegate LabelGetterDelegate - - - - - - - - - - - - - - - - - -
                                                                                        -
                                                                                        - - - - -
                                                                                        -
                                                                                        - -
                                                                                        -
                                                                                        Search Results for
                                                                                        -
                                                                                        -

                                                                                        -
                                                                                        -
                                                                                          -
                                                                                          -
                                                                                          - - - -
                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html deleted file mode 100644 index 5c9728b3eb..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - Class LegendAnnotation - - - - - - - - - - - - - - - - - -
                                                                                          -
                                                                                          - - - - -
                                                                                          -
                                                                                          - -
                                                                                          -
                                                                                          Search Results for
                                                                                          -
                                                                                          -

                                                                                          -
                                                                                          -
                                                                                            -
                                                                                            -
                                                                                            - - - -
                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html deleted file mode 100644 index 7b727a62a9..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html +++ /dev/null @@ -1,386 +0,0 @@ - - - - - - - - Class MultiBarSeries - - - - - - - - - - - - - - - - - -
                                                                                            -
                                                                                            - - - - -
                                                                                            -
                                                                                            - -
                                                                                            -
                                                                                            Search Results for
                                                                                            -
                                                                                            -

                                                                                            -
                                                                                            -
                                                                                              -
                                                                                              -
                                                                                              - - - -
                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html deleted file mode 100644 index 95f6dc602f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Enum Orientation - - - - - - - - - - - - - - - - - -
                                                                                              -
                                                                                              - - - - -
                                                                                              -
                                                                                              - -
                                                                                              -
                                                                                              Search Results for
                                                                                              -
                                                                                              -

                                                                                              -
                                                                                              -
                                                                                                -
                                                                                                -
                                                                                                - - - -
                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html deleted file mode 100644 index da908e5f04..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class PathAnnotation.LineF - - - - - - - - - - - - - - - - - -
                                                                                                -
                                                                                                - - - - -
                                                                                                -
                                                                                                - -
                                                                                                -
                                                                                                Search Results for
                                                                                                -
                                                                                                -

                                                                                                -
                                                                                                -
                                                                                                  -
                                                                                                  -
                                                                                                  - - - -
                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html deleted file mode 100644 index d630dfccf3..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - Class PathAnnotation - - - - - - - - - - - - - - - - - -
                                                                                                  -
                                                                                                  - - - - -
                                                                                                  -
                                                                                                  - -
                                                                                                  -
                                                                                                  Search Results for
                                                                                                  -
                                                                                                  -

                                                                                                  -
                                                                                                  -
                                                                                                    -
                                                                                                    -
                                                                                                    - - - -
                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html deleted file mode 100644 index c279754347..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - Class ScatterSeries - - - - - - - - - - - - - - - - - -
                                                                                                    -
                                                                                                    - - - - -
                                                                                                    -
                                                                                                    - -
                                                                                                    -
                                                                                                    Search Results for
                                                                                                    -
                                                                                                    -

                                                                                                    -
                                                                                                    -
                                                                                                      -
                                                                                                      -
                                                                                                      - - - -
                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html deleted file mode 100644 index b9b17af10c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - Class TextAnnotation - - - - - - - - - - - - - - - - - -
                                                                                                      -
                                                                                                      - - - - -
                                                                                                      -
                                                                                                      - -
                                                                                                      -
                                                                                                      Search Results for
                                                                                                      -
                                                                                                      -

                                                                                                      -
                                                                                                      -
                                                                                                        -
                                                                                                        -
                                                                                                        - - - -
                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html deleted file mode 100644 index 4ef15fcc7e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - - - - - Class VerticalAxis - - - - - - - - - - - - - - - - - -
                                                                                                        -
                                                                                                        - - - - -
                                                                                                        -
                                                                                                        - -
                                                                                                        -
                                                                                                        Search Results for
                                                                                                        -
                                                                                                        -

                                                                                                        -
                                                                                                        -
                                                                                                          -
                                                                                                          -
                                                                                                          - - - -
                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.html b/docs/api/Terminal.Gui/Terminal.Gui.Graphs.html deleted file mode 100644 index 56ec71e034..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Graphs.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Namespace Terminal.Gui.Graphs - - - - - - - - - - - - - - - - - -
                                                                                                          -
                                                                                                          - - - - -
                                                                                                          -
                                                                                                          - -
                                                                                                          -
                                                                                                          Search Results for
                                                                                                          -
                                                                                                          -

                                                                                                          -
                                                                                                          -
                                                                                                            -
                                                                                                            -
                                                                                                            - - - -
                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html deleted file mode 100644 index 7e4bc01268..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - Class HexView.HexViewEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                            -
                                                                                                            - - - - -
                                                                                                            -
                                                                                                            - -
                                                                                                            -
                                                                                                            Search Results for
                                                                                                            -
                                                                                                            -

                                                                                                            -
                                                                                                            -
                                                                                                              -
                                                                                                              -
                                                                                                              - - - -
                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.HexView.html b/docs/api/Terminal.Gui/Terminal.Gui.HexView.html deleted file mode 100644 index 8b20759f30..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.HexView.html +++ /dev/null @@ -1,1320 +0,0 @@ - - - - - - - - Class HexView - - - - - - - - - - - - - - - - - -
                                                                                                              -
                                                                                                              - - - - -
                                                                                                              -
                                                                                                              - -
                                                                                                              -
                                                                                                              Search Results for
                                                                                                              -
                                                                                                              -

                                                                                                              -
                                                                                                              -
                                                                                                                -
                                                                                                                -
                                                                                                                - - - -
                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.IAutocomplete.html b/docs/api/Terminal.Gui/Terminal.Gui.IAutocomplete.html deleted file mode 100644 index e919e6aa12..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.IAutocomplete.html +++ /dev/null @@ -1,707 +0,0 @@ - - - - - - - - Interface IAutocomplete - - - - - - - - - - - - - - - - - -
                                                                                                                -
                                                                                                                - - - - -
                                                                                                                -
                                                                                                                - -
                                                                                                                -
                                                                                                                Search Results for
                                                                                                                -
                                                                                                                -

                                                                                                                -
                                                                                                                -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  - - - -
                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.IClipboard.html b/docs/api/Terminal.Gui/Terminal.Gui.IClipboard.html deleted file mode 100644 index 777a547101..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.IClipboard.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - Interface IClipboard - - - - - - - - - - - - - - - - - -
                                                                                                                  -
                                                                                                                  - - - - -
                                                                                                                  -
                                                                                                                  - -
                                                                                                                  -
                                                                                                                  Search Results for
                                                                                                                  -
                                                                                                                  -

                                                                                                                  -
                                                                                                                  -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - - -
                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.IListDataSource.html b/docs/api/Terminal.Gui/Terminal.Gui.IListDataSource.html deleted file mode 100644 index 1304ea95e7..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.IListDataSource.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - - - Interface IListDataSource - - - - - - - - - - - - - - - - - -
                                                                                                                    -
                                                                                                                    - - - - -
                                                                                                                    -
                                                                                                                    - -
                                                                                                                    -
                                                                                                                    Search Results for
                                                                                                                    -
                                                                                                                    -

                                                                                                                    -
                                                                                                                    -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - - - -
                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html b/docs/api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html deleted file mode 100644 index 34470dacb8..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Interface IMainLoopDriver - - - - - - - - - - - - - - - - - -
                                                                                                                      -
                                                                                                                      - - - - -
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      -
                                                                                                                      Search Results for
                                                                                                                      -
                                                                                                                      -

                                                                                                                      -
                                                                                                                      -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        - - - -
                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ITreeView.html b/docs/api/Terminal.Gui/Terminal.Gui.ITreeView.html deleted file mode 100644 index 4ea2ed7cf0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ITreeView.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Interface ITreeView - - - - - - - - - - - - - - - - - -
                                                                                                                        -
                                                                                                                        - - - - -
                                                                                                                        -
                                                                                                                        - -
                                                                                                                        -
                                                                                                                        Search Results for
                                                                                                                        -
                                                                                                                        -

                                                                                                                        -
                                                                                                                        -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          - - - -
                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Key.html b/docs/api/Terminal.Gui/Terminal.Gui.Key.html deleted file mode 100644 index 37a77bddde..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Key.html +++ /dev/null @@ -1,762 +0,0 @@ - - - - - - - - Enum Key - - - - - - - - - - - - - - - - - -
                                                                                                                          -
                                                                                                                          - - - - -
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          -
                                                                                                                          Search Results for
                                                                                                                          -
                                                                                                                          -

                                                                                                                          -
                                                                                                                          -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            - - - -
                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.KeyEvent.html b/docs/api/Terminal.Gui/Terminal.Gui.KeyEvent.html deleted file mode 100644 index 83ac5b43f2..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.KeyEvent.html +++ /dev/null @@ -1,520 +0,0 @@ - - - - - - - - Class KeyEvent - - - - - - - - - - - - - - - - - -
                                                                                                                            -
                                                                                                                            - - - - -
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            -
                                                                                                                            Search Results for
                                                                                                                            -
                                                                                                                            -

                                                                                                                            -
                                                                                                                            -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              - - - -
                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.KeyModifiers.html b/docs/api/Terminal.Gui/Terminal.Gui.KeyModifiers.html deleted file mode 100644 index ea27ee6f58..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.KeyModifiers.html +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - Class KeyModifiers - - - - - - - - - - - - - - - - - -
                                                                                                                              -
                                                                                                                              - - - - -
                                                                                                                              -
                                                                                                                              - -
                                                                                                                              -
                                                                                                                              Search Results for
                                                                                                                              -
                                                                                                                              -

                                                                                                                              -
                                                                                                                              -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                - - - -
                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Label.html b/docs/api/Terminal.Gui/Terminal.Gui.Label.html deleted file mode 100644 index 475b5cedb6..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Label.html +++ /dev/null @@ -1,1023 +0,0 @@ - - - - - - - - Class Label - - - - - - - - - - - - - - - - - -
                                                                                                                                -
                                                                                                                                - - - - -
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                -
                                                                                                                                Search Results for
                                                                                                                                -
                                                                                                                                -

                                                                                                                                -
                                                                                                                                -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  - - - -
                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.LayoutStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.LayoutStyle.html deleted file mode 100644 index 60d5a3ba3d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.LayoutStyle.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - Enum LayoutStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                  -
                                                                                                                                  - - - - -
                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  -
                                                                                                                                  Search Results for
                                                                                                                                  -
                                                                                                                                  -

                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    - - - -
                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.LineView.html b/docs/api/Terminal.Gui/Terminal.Gui.LineView.html deleted file mode 100644 index d88783585d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.LineView.html +++ /dev/null @@ -1,824 +0,0 @@ - - - - - - - - Class LineView - - - - - - - - - - - - - - - - - -
                                                                                                                                    -
                                                                                                                                    - - - - -
                                                                                                                                    -
                                                                                                                                    - -
                                                                                                                                    -
                                                                                                                                    Search Results for
                                                                                                                                    -
                                                                                                                                    -

                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      - - - -
                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ListView.html b/docs/api/Terminal.Gui/Terminal.Gui.ListView.html deleted file mode 100644 index 66bf19a991..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ListView.html +++ /dev/null @@ -1,1986 +0,0 @@ - - - - - - - - Class ListView - - - - - - - - - - - - - - - - - -
                                                                                                                                      -
                                                                                                                                      - - - - -
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      -
                                                                                                                                      Search Results for
                                                                                                                                      -
                                                                                                                                      -

                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        - - - -
                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html deleted file mode 100644 index d5a5a1985a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - - - Class ListViewItemEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                        -
                                                                                                                                        - - - - -
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        Search Results for
                                                                                                                                        -
                                                                                                                                        -

                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          - - - -
                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html deleted file mode 100644 index a926f95659..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class ListViewRowEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                          -
                                                                                                                                          - - - - -
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          -
                                                                                                                                          Search Results for
                                                                                                                                          -
                                                                                                                                          -

                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            - - - -
                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ListWrapper.html b/docs/api/Terminal.Gui/Terminal.Gui.ListWrapper.html deleted file mode 100644 index 8df14d149c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ListWrapper.html +++ /dev/null @@ -1,471 +0,0 @@ - - - - - - - - Class ListWrapper - - - - - - - - - - - - - - - - - -
                                                                                                                                            -
                                                                                                                                            - - - - -
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            -
                                                                                                                                            Search Results for
                                                                                                                                            -
                                                                                                                                            -

                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              - - - -
                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html b/docs/api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html deleted file mode 100644 index 5b9f3b2678..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - - Class MainLoop.Timeout - - - - - - - - - - - - - - - - - -
                                                                                                                                              -
                                                                                                                                              - - - - -
                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              -
                                                                                                                                              Search Results for
                                                                                                                                              -
                                                                                                                                              -

                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                - - - -
                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MainLoop.html b/docs/api/Terminal.Gui/Terminal.Gui.MainLoop.html deleted file mode 100644 index f6d9d7cf6d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MainLoop.html +++ /dev/null @@ -1,681 +0,0 @@ - - - - - - - - Class MainLoop - - - - - - - - - - - - - - - - - -
                                                                                                                                                -
                                                                                                                                                - - - - -
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                -
                                                                                                                                                Search Results for
                                                                                                                                                -
                                                                                                                                                -

                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  - - - -
                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MenuBar.html b/docs/api/Terminal.Gui/Terminal.Gui.MenuBar.html deleted file mode 100644 index ac249776a6..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MenuBar.html +++ /dev/null @@ -1,1637 +0,0 @@ - - - - - - - - Class MenuBar - - - - - - - - - - - - - - - - - -
                                                                                                                                                  -
                                                                                                                                                  - - - - -
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  -
                                                                                                                                                  Search Results for
                                                                                                                                                  -
                                                                                                                                                  -

                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - - -
                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MenuBarItem.html b/docs/api/Terminal.Gui/Terminal.Gui.MenuBarItem.html deleted file mode 100644 index 27efb0b92d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MenuBarItem.html +++ /dev/null @@ -1,589 +0,0 @@ - - - - - - - - Class MenuBarItem - - - - - - - - - - - - - - - - - -
                                                                                                                                                    -
                                                                                                                                                    - - - - -
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    -
                                                                                                                                                    Search Results for
                                                                                                                                                    -
                                                                                                                                                    -

                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - - -
                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html deleted file mode 100644 index 19e3bc8140..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Class MenuClosingEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                      -
                                                                                                                                                      - - - - -
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      -
                                                                                                                                                      Search Results for
                                                                                                                                                      -
                                                                                                                                                      -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - - - -
                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MenuItem.html b/docs/api/Terminal.Gui/Terminal.Gui.MenuItem.html deleted file mode 100644 index 87e8d1900d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MenuItem.html +++ /dev/null @@ -1,719 +0,0 @@ - - - - - - - - Class MenuItem - - - - - - - - - - - - - - - - - -
                                                                                                                                                        -
                                                                                                                                                        - - - - -
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        -
                                                                                                                                                        Search Results for
                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - - - -
                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html deleted file mode 100644 index 8d77f8889c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum MenuItemCheckStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                                          -
                                                                                                                                                          - - - - -
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          -
                                                                                                                                                          Search Results for
                                                                                                                                                          -
                                                                                                                                                          -

                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - - - -
                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html deleted file mode 100644 index f8f8280c62..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - Class MenuOpeningEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                            -
                                                                                                                                                            - - - - -
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            -
                                                                                                                                                            Search Results for
                                                                                                                                                            -
                                                                                                                                                            -

                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - - -
                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MessageBox.html b/docs/api/Terminal.Gui/Terminal.Gui.MessageBox.html deleted file mode 100644 index 5e0d9d6a0d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MessageBox.html +++ /dev/null @@ -1,1041 +0,0 @@ - - - - - - - - Class MessageBox - - - - - - - - - - - - - - - - - -
                                                                                                                                                              -
                                                                                                                                                              - - - - -
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              -
                                                                                                                                                              Search Results for
                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                - - - -
                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MouseEvent.html b/docs/api/Terminal.Gui/Terminal.Gui.MouseEvent.html deleted file mode 100644 index d612a6a2cc..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MouseEvent.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - - Struct MouseEvent - - - - - - - - - - - - - - - - - -
                                                                                                                                                                -
                                                                                                                                                                - - - - -
                                                                                                                                                                -
                                                                                                                                                                - -
                                                                                                                                                                -
                                                                                                                                                                Search Results for
                                                                                                                                                                -
                                                                                                                                                                -

                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - - -
                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.MouseFlags.html b/docs/api/Terminal.Gui/Terminal.Gui.MouseFlags.html deleted file mode 100644 index eed05470d8..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.MouseFlags.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - Enum MouseFlags - - - - - - - - - - - - - - - - - -
                                                                                                                                                                  -
                                                                                                                                                                  - - - - -
                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  -
                                                                                                                                                                  Search Results for
                                                                                                                                                                  -
                                                                                                                                                                  -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - - -
                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html b/docs/api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html deleted file mode 100644 index ff8c14faa0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum OpenDialog.OpenMode - - - - - - - - - - - - - - - - - -
                                                                                                                                                                    -
                                                                                                                                                                    - - - - -
                                                                                                                                                                    -
                                                                                                                                                                    - -
                                                                                                                                                                    -
                                                                                                                                                                    Search Results for
                                                                                                                                                                    -
                                                                                                                                                                    -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - - -
                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.OpenDialog.html b/docs/api/Terminal.Gui/Terminal.Gui.OpenDialog.html deleted file mode 100644 index 7db829dcba..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.OpenDialog.html +++ /dev/null @@ -1,977 +0,0 @@ - - - - - - - - Class OpenDialog - - - - - - - - - - - - - - - - - -
                                                                                                                                                                      -
                                                                                                                                                                      - - - - -
                                                                                                                                                                      -
                                                                                                                                                                      - -
                                                                                                                                                                      -
                                                                                                                                                                      Search Results for
                                                                                                                                                                      -
                                                                                                                                                                      -

                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - - -
                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.PanelView.html b/docs/api/Terminal.Gui/Terminal.Gui.PanelView.html deleted file mode 100644 index 107accd2b4..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.PanelView.html +++ /dev/null @@ -1,862 +0,0 @@ - - - - - - - - Class PanelView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                        -
                                                                                                                                                                        - - - - -
                                                                                                                                                                        -
                                                                                                                                                                        - -
                                                                                                                                                                        -
                                                                                                                                                                        Search Results for
                                                                                                                                                                        -
                                                                                                                                                                        -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - - -
                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Point.html b/docs/api/Terminal.Gui/Terminal.Gui.Point.html deleted file mode 100644 index b075868d75..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Point.html +++ /dev/null @@ -1,924 +0,0 @@ - - - - - - - - Struct Point - - - - - - - - - - - - - - - - - -
                                                                                                                                                                          -
                                                                                                                                                                          - - - - -
                                                                                                                                                                          -
                                                                                                                                                                          - -
                                                                                                                                                                          -
                                                                                                                                                                          Search Results for
                                                                                                                                                                          -
                                                                                                                                                                          -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - - -
                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.PointF.html b/docs/api/Terminal.Gui/Terminal.Gui.PointF.html deleted file mode 100644 index 6aa23970c0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.PointF.html +++ /dev/null @@ -1,1052 +0,0 @@ - - - - - - - - Struct PointF - - - - - - - - - - - - - - - - - -
                                                                                                                                                                            -
                                                                                                                                                                            - - - - -
                                                                                                                                                                            -
                                                                                                                                                                            - -
                                                                                                                                                                            -
                                                                                                                                                                            Search Results for
                                                                                                                                                                            -
                                                                                                                                                                            -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - - -
                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Pos.html b/docs/api/Terminal.Gui/Terminal.Gui.Pos.html deleted file mode 100644 index 6e1b7a9a27..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Pos.html +++ /dev/null @@ -1,949 +0,0 @@ - - - - - - - - Class Pos - - - - - - - - - - - - - - - - - -
                                                                                                                                                                              -
                                                                                                                                                                              - - - - -
                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              -
                                                                                                                                                                              Search Results for
                                                                                                                                                                              -
                                                                                                                                                                              -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - - -
                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ProgressBar.html b/docs/api/Terminal.Gui/Terminal.Gui.ProgressBar.html deleted file mode 100644 index 3d5a3adfac..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ProgressBar.html +++ /dev/null @@ -1,956 +0,0 @@ - - - - - - - - Class ProgressBar - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                -
                                                                                                                                                                                - - - - -
                                                                                                                                                                                -
                                                                                                                                                                                - -
                                                                                                                                                                                -
                                                                                                                                                                                Search Results for
                                                                                                                                                                                -
                                                                                                                                                                                -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  - - - -
                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html b/docs/api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html deleted file mode 100644 index 995a7fcf1d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum ProgressBarFormat - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - - - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - -
                                                                                                                                                                                  -
                                                                                                                                                                                  Search Results for
                                                                                                                                                                                  -
                                                                                                                                                                                  -

                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    - - - -
                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html deleted file mode 100644 index 763a7c54b4..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum ProgressBarStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - - - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - -
                                                                                                                                                                                    -
                                                                                                                                                                                    Search Results for
                                                                                                                                                                                    -
                                                                                                                                                                                    -

                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      - - - -
                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html b/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html deleted file mode 100644 index a96e60b675..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html +++ /dev/null @@ -1,1205 +0,0 @@ - - - - - - - - Class RadioGroup - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - -
                                                                                                                                                                                      -
                                                                                                                                                                                      Search Results for
                                                                                                                                                                                      -
                                                                                                                                                                                      -

                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        - - - -
                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Rect.html b/docs/api/Terminal.Gui/Terminal.Gui.Rect.html deleted file mode 100644 index b443fcda57..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Rect.html +++ /dev/null @@ -1,1469 +0,0 @@ - - - - - - - - Struct Rect - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - - - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - -
                                                                                                                                                                                        -
                                                                                                                                                                                        Search Results for
                                                                                                                                                                                        -
                                                                                                                                                                                        -

                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          - - - -
                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.RectangleF.html b/docs/api/Terminal.Gui/Terminal.Gui.RectangleF.html deleted file mode 100644 index 3b8d76bc56..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.RectangleF.html +++ /dev/null @@ -1,1600 +0,0 @@ - - - - - - - - Struct RectangleF - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - - - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - -
                                                                                                                                                                                          -
                                                                                                                                                                                          Search Results for
                                                                                                                                                                                          -
                                                                                                                                                                                          -

                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            - - - -
                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Responder.html b/docs/api/Terminal.Gui/Terminal.Gui.Responder.html deleted file mode 100644 index eafc43f4ae..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Responder.html +++ /dev/null @@ -1,907 +0,0 @@ - - - - - - - - Class Responder - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - - - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - -
                                                                                                                                                                                            -
                                                                                                                                                                                            Search Results for
                                                                                                                                                                                            -
                                                                                                                                                                                            -

                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              - - - -
                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.SaveDialog.html b/docs/api/Terminal.Gui/Terminal.Gui.SaveDialog.html deleted file mode 100644 index dbd3e5bc3c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.SaveDialog.html +++ /dev/null @@ -1,871 +0,0 @@ - - - - - - - - Class SaveDialog - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - - - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - -
                                                                                                                                                                                              -
                                                                                                                                                                                              Search Results for
                                                                                                                                                                                              -
                                                                                                                                                                                              -

                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - - -
                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ScrollBarView.html b/docs/api/Terminal.Gui/Terminal.Gui.ScrollBarView.html deleted file mode 100644 index c3768efb6e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ScrollBarView.html +++ /dev/null @@ -1,1254 +0,0 @@ - - - - - - - - Class ScrollBarView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - -
                                                                                                                                                                                                -
                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                -
                                                                                                                                                                                                -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ScrollView.html b/docs/api/Terminal.Gui/Terminal.Gui.ScrollView.html deleted file mode 100644 index e863d477f3..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ScrollView.html +++ /dev/null @@ -1,1322 +0,0 @@ - - - - - - - - Class ScrollView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -

                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html deleted file mode 100644 index 2e8f71d8af..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - - - Class SelectedItemChangedArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -

                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html b/docs/api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html deleted file mode 100644 index 383167b056..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html +++ /dev/null @@ -1,690 +0,0 @@ - - - - - - - - Class ShortcutHelper - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Size.html b/docs/api/Terminal.Gui/Terminal.Gui.Size.html deleted file mode 100644 index 58a2e2678e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Size.html +++ /dev/null @@ -1,853 +0,0 @@ - - - - - - - - Struct Size - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -

                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.SizeF.html b/docs/api/Terminal.Gui/Terminal.Gui.SizeF.html deleted file mode 100644 index 070b320373..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.SizeF.html +++ /dev/null @@ -1,1110 +0,0 @@ - - - - - - - - Struct SizeF - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.StackExtensions.html b/docs/api/Terminal.Gui/Terminal.Gui.StackExtensions.html deleted file mode 100644 index d368c34d3d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.StackExtensions.html +++ /dev/null @@ -1,603 +0,0 @@ - - - - - - - - Class StackExtensions - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.StatusBar.html b/docs/api/Terminal.Gui/Terminal.Gui.StatusBar.html deleted file mode 100644 index 46c60fbe9a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.StatusBar.html +++ /dev/null @@ -1,1016 +0,0 @@ - - - - - - - - Class StatusBar - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -

                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.StatusItem.html b/docs/api/Terminal.Gui/Terminal.Gui.StatusItem.html deleted file mode 100644 index 27973e0541..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.StatusItem.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - Class StatusItem - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -

                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TabView.Tab.html b/docs/api/Terminal.Gui/Terminal.Gui.TabView.Tab.html deleted file mode 100644 index 7df3c6990e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TabView.Tab.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - Class TabView.Tab - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html deleted file mode 100644 index fdcb4c7d80..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - - - Class TabView.TabChangedEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html deleted file mode 100644 index a85e7e2000..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - Class TabView.TabStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TabView.html b/docs/api/Terminal.Gui/Terminal.Gui.TabView.html deleted file mode 100644 index 21560f9a00..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TabView.html +++ /dev/null @@ -1,1168 +0,0 @@ - - - - - - - - Class TabView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html deleted file mode 100644 index 25cebb282f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - Class TableView.CellActivatedEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html deleted file mode 100644 index faf216c79c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - - Class TableView.CellColorGetterArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html deleted file mode 100644 index b7bf447f40..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Delegate TableView.CellColorGetterDelegate - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html deleted file mode 100644 index 2409a6e5e4..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html +++ /dev/null @@ -1,538 +0,0 @@ - - - - - - - - Class TableView.ColumnStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html deleted file mode 100644 index aad7578f72..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Class TableView.RowColorGetterArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html deleted file mode 100644 index 5296fc21db..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Delegate TableView.RowColorGetterDelegate - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html deleted file mode 100644 index 327fc7192a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - - Class TableView.SelectedCellChangedEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html deleted file mode 100644 index 423979024d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class TableView.TableSelection - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html deleted file mode 100644 index 507fb8260a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html +++ /dev/null @@ -1,644 +0,0 @@ - - - - - - - - Class TableView.TableStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TableView.html b/docs/api/Terminal.Gui/Terminal.Gui.TableView.html deleted file mode 100644 index 7aab758b2b..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TableView.html +++ /dev/null @@ -1,2032 +0,0 @@ - - - - - - - - Class TableView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextAlignment.html b/docs/api/Terminal.Gui/Terminal.Gui.TextAlignment.html deleted file mode 100644 index da0073f8d2..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextAlignment.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum TextAlignment - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html deleted file mode 100644 index 21bd0e60ba..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class TextChangingEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextDirection.html b/docs/api/Terminal.Gui/Terminal.Gui.TextDirection.html deleted file mode 100644 index 8695e82f9e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextDirection.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Enum TextDirection - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextField.html b/docs/api/Terminal.Gui/Terminal.Gui.TextField.html deleted file mode 100644 index 6b76ac59e0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextField.html +++ /dev/null @@ -1,1874 +0,0 @@ - - - - - - - - Class TextField - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html b/docs/api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html deleted file mode 100644 index 6678f00843..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Class TextFieldAutocomplete - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextFormatter.html b/docs/api/Terminal.Gui/Terminal.Gui.TextFormatter.html deleted file mode 100644 index 54bf724977..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextFormatter.html +++ /dev/null @@ -1,2175 +0,0 @@ - - - - - - - - Class TextFormatter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateField.html b/docs/api/Terminal.Gui/Terminal.Gui.TextValidateField.html deleted file mode 100644 index d634093183..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateField.html +++ /dev/null @@ -1,890 +0,0 @@ - - - - - - - - Class TextValidateField - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html b/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html deleted file mode 100644 index 35515c59ed..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html +++ /dev/null @@ -1,587 +0,0 @@ - - - - - - - - Interface ITextValidateProvider - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html b/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html deleted file mode 100644 index 333d2d6fe0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html +++ /dev/null @@ -1,671 +0,0 @@ - - - - - - - - Class NetMaskedTextProvider - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html b/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html deleted file mode 100644 index 214ec91f79..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html +++ /dev/null @@ -1,700 +0,0 @@ - - - - - - - - Class TextRegexProvider - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html b/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html deleted file mode 100644 index 09c3b8385d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - Namespace Terminal.Gui.TextValidateProviders - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextView.html b/docs/api/Terminal.Gui/Terminal.Gui.TextView.html deleted file mode 100644 index 9656667ffb..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextView.html +++ /dev/null @@ -1,2851 +0,0 @@ - - - - - - - - Class TextView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html b/docs/api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html deleted file mode 100644 index fcbf8a508c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Class TextViewAutocomplete - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Thickness.html b/docs/api/Terminal.Gui/Terminal.Gui.Thickness.html deleted file mode 100644 index 12bf8b758e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Thickness.html +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - - - Struct Thickness - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TimeField.html b/docs/api/Terminal.Gui/Terminal.Gui.TimeField.html deleted file mode 100644 index 5e2a87028c..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TimeField.html +++ /dev/null @@ -1,1095 +0,0 @@ - - - - - - - - Class TimeField - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html b/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html deleted file mode 100644 index 6320719517..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html +++ /dev/null @@ -1,2142 +0,0 @@ - - - - - - - - Class Toplevel - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html deleted file mode 100644 index b20c12f88d..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class ToplevelClosingEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html b/docs/api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html deleted file mode 100644 index 0a2599b85f..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - Class ToplevelComparer - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html b/docs/api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html deleted file mode 100644 index d013a12e0b..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - Class ToplevelEqualityComparer - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TreeView-1.html b/docs/api/Terminal.Gui/Terminal.Gui.TreeView-1.html deleted file mode 100644 index 87635b98a6..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TreeView-1.html +++ /dev/null @@ -1,2863 +0,0 @@ - - - - - - - - Class TreeView<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.TreeView.html b/docs/api/Terminal.Gui/Terminal.Gui.TreeView.html deleted file mode 100644 index 6fbca27d77..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.TreeView.html +++ /dev/null @@ -1,811 +0,0 @@ - - - - - - - - Class TreeView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html deleted file mode 100644 index 22c2df34bb..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - Delegate AspectGetterDelegate<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html deleted file mode 100644 index e886311fb9..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - - Class DelegateTreeBuilder<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html deleted file mode 100644 index b844378228..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Interface ITreeBuilder<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html deleted file mode 100644 index e03f313866..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Interface ITreeNode - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html deleted file mode 100644 index d2338eed18..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - Class ObjectActivatedEventArgs<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html deleted file mode 100644 index 7c062089d3..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - - Class SelectionChangedEventArgs<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html deleted file mode 100644 index 3eb8d9c233..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class TreeBuilder<T> - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html deleted file mode 100644 index 0072efcdaf..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - - - Class TreeNode - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html deleted file mode 100644 index bfc2e8e7c0..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class TreeNodeBuilder - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html deleted file mode 100644 index 0dbf6de714..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html +++ /dev/null @@ -1,367 +0,0 @@ - - - - - - - - Class TreeStyle - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Trees.html b/docs/api/Terminal.Gui/Terminal.Gui.Trees.html deleted file mode 100644 index 77bf5f0efd..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Trees.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - Namespace Terminal.Gui.Trees - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html b/docs/api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html deleted file mode 100644 index de9c172b97..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum VerticalTextAlignment - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html deleted file mode 100644 index 853974ac46..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class View.FocusEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html deleted file mode 100644 index df514dbf05..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class View.KeyEventEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html deleted file mode 100644 index d56922f8a9..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Class View.LayoutEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html deleted file mode 100644 index 662025276e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class View.MouseEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.html b/docs/api/Terminal.Gui/Terminal.Gui.View.html deleted file mode 100644 index f9501589bd..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.html +++ /dev/null @@ -1,5114 +0,0 @@ - - - - - - - - Class View - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html deleted file mode 100644 index bce9c8b78a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - Class Window.TitleEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Window.html b/docs/api/Terminal.Gui/Terminal.Gui.Window.html deleted file mode 100644 index a99718292e..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Window.html +++ /dev/null @@ -1,1305 +0,0 @@ - - - - - - - - Class Window - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html deleted file mode 100644 index 13df25cefd..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - Class Wizard.StepChangeEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html deleted file mode 100644 index a7f62622c3..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - Class Wizard.WizardButtonEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html b/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html deleted file mode 100644 index 3c66c158d5..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - Class Wizard.WizardStep.TitleEventArgs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html b/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html deleted file mode 100644 index adbdc6280a..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html +++ /dev/null @@ -1,1030 +0,0 @@ - - - - - - - - Class Wizard.WizardStep - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.html b/docs/api/Terminal.Gui/Terminal.Gui.Wizard.html deleted file mode 100644 index a458841af7..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.Wizard.html +++ /dev/null @@ -1,1610 +0,0 @@ - - - - - - - - Class Wizard - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/Terminal.Gui/Terminal.Gui.html b/docs/api/Terminal.Gui/Terminal.Gui.html deleted file mode 100644 index 4e90674ef2..0000000000 --- a/docs/api/Terminal.Gui/Terminal.Gui.html +++ /dev/null @@ -1,718 +0,0 @@ - - - - - - - - Namespace Terminal.Gui - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/Terminal.Gui/Unix.Terminal.Curses.Event.html b/docs/api/Terminal.Gui/Unix.Terminal.Curses.Event.html deleted file mode 100644 index 0f10cc2225..0000000000 --- a/docs/api/Terminal.Gui/Unix.Terminal.Curses.Event.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Enum Curses.Event - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html b/docs/api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html deleted file mode 100644 index 2f0a308145..0000000000 --- a/docs/api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Struct Curses.MouseEvent - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/Terminal.Gui/Unix.Terminal.Curses.Window.html b/docs/api/Terminal.Gui/Unix.Terminal.Curses.Window.html deleted file mode 100644 index 33c339b224..0000000000 --- a/docs/api/Terminal.Gui/Unix.Terminal.Curses.Window.html +++ /dev/null @@ -1,1019 +0,0 @@ - - - - - - - - Class Curses.Window - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/Terminal.Gui/Unix.Terminal.Curses.html b/docs/api/Terminal.Gui/Unix.Terminal.Curses.html deleted file mode 100644 index 407f386549..0000000000 --- a/docs/api/Terminal.Gui/Unix.Terminal.Curses.html +++ /dev/null @@ -1,7130 +0,0 @@ - - - - - - - - Class Curses - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/Terminal.Gui/Unix.Terminal.html b/docs/api/Terminal.Gui/Unix.Terminal.html deleted file mode 100644 index 9d0b2e7f12..0000000000 --- a/docs/api/Terminal.Gui/Unix.Terminal.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - Namespace Unix.Terminal - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/Terminal.Gui/toc.html b/docs/api/Terminal.Gui/toc.html deleted file mode 100644 index 0d2a71f59e..0000000000 --- a/docs/api/Terminal.Gui/toc.html +++ /dev/null @@ -1,543 +0,0 @@ - -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    \ No newline at end of file diff --git a/docs/api/UICatalog/UICatalog.NumberToWords.html b/docs/api/UICatalog/UICatalog.NumberToWords.html deleted file mode 100644 index b3861807d3..0000000000 --- a/docs/api/UICatalog/UICatalog.NumberToWords.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Class NumberToWords - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenario.ScenarioCategory.html b/docs/api/UICatalog/UICatalog.Scenario.ScenarioCategory.html deleted file mode 100644 index c6e993f69b..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenario.ScenarioCategory.html +++ /dev/null @@ -1,441 +0,0 @@ - - - - - - - - Class Scenario.ScenarioCategory - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html b/docs/api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html deleted file mode 100644 index d654e76d13..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html +++ /dev/null @@ -1,475 +0,0 @@ - - - - - - - - Class Scenario.ScenarioMetadata - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenario.html b/docs/api/UICatalog/UICatalog.Scenario.html deleted file mode 100644 index f797cb4601..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenario.html +++ /dev/null @@ -1,635 +0,0 @@ - - - - - - - - Class Scenario - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.AllViewsTester.html b/docs/api/UICatalog/UICatalog.Scenarios.AllViewsTester.html deleted file mode 100644 index baf3c529ec..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.AllViewsTester.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - Class AllViewsTester - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html b/docs/api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html deleted file mode 100644 index 8ea529a50b..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class AutoSizeAndDirectionText - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html b/docs/api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html deleted file mode 100644 index bae9029bfa..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Class BackgroundWorkerCollection - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.BasicColors.html b/docs/api/UICatalog/UICatalog.Scenarios.BasicColors.html deleted file mode 100644 index 89cb7d51ea..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.BasicColors.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class BasicColors - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Borders.html b/docs/api/UICatalog/UICatalog.Scenarios.Borders.html deleted file mode 100644 index 710af803bb..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Borders.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class Borders - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.BordersComparisons.html b/docs/api/UICatalog/UICatalog.Scenarios.BordersComparisons.html deleted file mode 100644 index fdf998fa81..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.BordersComparisons.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - - Class BordersComparisons - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html b/docs/api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html deleted file mode 100644 index 14d97873fd..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class BordersOnFrameView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html b/docs/api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html deleted file mode 100644 index acfb8ba2cf..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class BordersOnToplevel - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html b/docs/api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html deleted file mode 100644 index 4db51d4d37..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class BordersOnWindow - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Buttons.html b/docs/api/UICatalog/UICatalog.Scenarios.Buttons.html deleted file mode 100644 index e3d4b34c82..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Buttons.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class Buttons - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.CharacterMap.html b/docs/api/UICatalog/UICatalog.Scenarios.CharacterMap.html deleted file mode 100644 index ec01871ba9..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.CharacterMap.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - - Class CharacterMap - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ClassExplorer.html b/docs/api/UICatalog/UICatalog.Scenarios.ClassExplorer.html deleted file mode 100644 index e4475b18bb..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ClassExplorer.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class ClassExplorer - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Clipping.html b/docs/api/UICatalog/UICatalog.Scenarios.Clipping.html deleted file mode 100644 index 30ba982b37..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Clipping.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - Class Clipping - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ColorPickers.html b/docs/api/UICatalog/UICatalog.Scenarios.ColorPickers.html deleted file mode 100644 index c9f1135ca4..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ColorPickers.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class ColorPickers - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html b/docs/api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html deleted file mode 100644 index 9a13822bd2..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class ComboBoxIteration - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ComputedLayout.html b/docs/api/UICatalog/UICatalog.Scenarios.ComputedLayout.html deleted file mode 100644 index 5b0efa053d..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ComputedLayout.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - Class ComputedLayout - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ContextMenus.html b/docs/api/UICatalog/UICatalog.Scenarios.ContextMenus.html deleted file mode 100644 index 9e671f112f..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ContextMenus.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class ContextMenus - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.CsvEditor.html b/docs/api/UICatalog/UICatalog.Scenarios.CsvEditor.html deleted file mode 100644 index ebe87d4ad5..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.CsvEditor.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Class CsvEditor - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Dialogs.html b/docs/api/UICatalog/UICatalog.Scenarios.Dialogs.html deleted file mode 100644 index 42014bf213..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Dialogs.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class Dialogs - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html deleted file mode 100644 index a212ec92ed..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - Class DynamicMenuBar.Binding - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html deleted file mode 100644 index 51aaf0391a..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html +++ /dev/null @@ -1,1058 +0,0 @@ - - - - - - - - Class DynamicMenuBar.DynamicMenuBarDetails - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html deleted file mode 100644 index ac7a235393..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - Class DynamicMenuBar.DynamicMenuBarSample - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html deleted file mode 100644 index 3f2882ec03..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html +++ /dev/null @@ -1,487 +0,0 @@ - - - - - - - - Class DynamicMenuBar.DynamicMenuItem - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html deleted file mode 100644 index 55b0b0cf9c..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - Class DynamicMenuBar.DynamicMenuItemList - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html deleted file mode 100644 index 83bd727145..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - - Class DynamicMenuBar.DynamicMenuItemModel - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html deleted file mode 100644 index c22e228cf2..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - Interface DynamicMenuBar.IValueConverter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html deleted file mode 100644 index 7e07b017dd..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class DynamicMenuBar.ListWrapperConverter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html deleted file mode 100644 index e2ad686286..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class DynamicMenuBar.UStringValueConverter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html deleted file mode 100644 index d795b860a7..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - Class DynamicMenuBar - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html deleted file mode 100644 index 62758adc0e..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - Class DynamicStatusBar.Binding - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html deleted file mode 100644 index 3903a7d0a8..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html +++ /dev/null @@ -1,900 +0,0 @@ - - - - - - - - Class DynamicStatusBar.DynamicStatusBarDetails - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html deleted file mode 100644 index 45b099d134..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html +++ /dev/null @@ -1,840 +0,0 @@ - - - - - - - - Class DynamicStatusBar.DynamicStatusBarSample - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html deleted file mode 100644 index 584bbe3c10..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - Class DynamicStatusBar.DynamicStatusItem - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html deleted file mode 100644 index 7d83bc18c6..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - Class DynamicStatusBar.DynamicStatusItemList - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html deleted file mode 100644 index 3c1798592a..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - Class DynamicStatusBar.DynamicStatusItemModel - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html deleted file mode 100644 index 27ec3101a5..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - Interface DynamicStatusBar.IValueConverter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html deleted file mode 100644 index d27686945f..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class DynamicStatusBar.ListWrapperConverter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html deleted file mode 100644 index f3d0a2b5bb..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class DynamicStatusBar.UStringValueConverter - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html b/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html deleted file mode 100644 index d3b782b976..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - - Class DynamicStatusBar - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Editor.html b/docs/api/UICatalog/UICatalog.Scenarios.Editor.html deleted file mode 100644 index f47b46f6aa..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Editor.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - Class Editor - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.GraphViewExample.html b/docs/api/UICatalog/UICatalog.Scenarios.GraphViewExample.html deleted file mode 100644 index 59a6f82bbc..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.GraphViewExample.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class GraphViewExample - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.HexEditor.html b/docs/api/UICatalog/UICatalog.Scenarios.HexEditor.html deleted file mode 100644 index 2dd273ee93..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.HexEditor.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - Class HexEditor - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.InteractiveTree.html b/docs/api/UICatalog/UICatalog.Scenarios.InteractiveTree.html deleted file mode 100644 index 5733f2ca4d..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.InteractiveTree.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class InteractiveTree - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.InvertColors.html b/docs/api/UICatalog/UICatalog.Scenarios.InvertColors.html deleted file mode 100644 index df0b457ea6..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.InvertColors.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class InvertColors - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Keys.html b/docs/api/UICatalog/UICatalog.Scenarios.Keys.html deleted file mode 100644 index df84386cd5..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Keys.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - Class Keys - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html b/docs/api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html deleted file mode 100644 index 677510318a..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class LabelsAsLabels - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.LineViewExample.html b/docs/api/UICatalog/UICatalog.Scenarios.LineViewExample.html deleted file mode 100644 index 62d79b32fc..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.LineViewExample.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class LineViewExample - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html b/docs/api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html deleted file mode 100644 index c039423fd0..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - - Class ListViewWithSelection - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html b/docs/api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html deleted file mode 100644 index ea6aede7b3..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class ListsAndCombos - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.MessageBoxes.html b/docs/api/UICatalog/UICatalog.Scenarios.MessageBoxes.html deleted file mode 100644 index 17acda9133..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.MessageBoxes.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class MessageBoxes - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Mouse.html b/docs/api/UICatalog/UICatalog.Scenarios.Mouse.html deleted file mode 100644 index 948b6e1b38..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Mouse.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class Mouse - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html b/docs/api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html deleted file mode 100644 index 8665a48b71..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class MultiColouredTable - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.MyScenario.html b/docs/api/UICatalog/UICatalog.Scenarios.MyScenario.html deleted file mode 100644 index fcadc6d250..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.MyScenario.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class MyScenario - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Notepad.html b/docs/api/UICatalog/UICatalog.Scenarios.Notepad.html deleted file mode 100644 index 1211ea3dbe..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Notepad.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class Notepad - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Progress.html b/docs/api/UICatalog/UICatalog.Scenarios.Progress.html deleted file mode 100644 index 82d6889a58..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Progress.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Class Progress - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html b/docs/api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html deleted file mode 100644 index 9c349df69d..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class ProgressBarStyles - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html b/docs/api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html deleted file mode 100644 index 5e73f274a5..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - Class RuneWidthGreaterThanOne - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Scrolling.html b/docs/api/UICatalog/UICatalog.Scenarios.Scrolling.html deleted file mode 100644 index e3fab10bda..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Scrolling.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class Scrolling - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.SendKeys.html b/docs/api/UICatalog/UICatalog.Scenarios.SendKeys.html deleted file mode 100644 index 7193847935..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.SendKeys.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class SendKeys - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html b/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html deleted file mode 100644 index 600ac63bd8..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html +++ /dev/null @@ -1,721 +0,0 @@ - - - - - - - - Class SingleBackgroundWorker.MainApp - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html b/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html deleted file mode 100644 index 95f52ce30b..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html +++ /dev/null @@ -1,776 +0,0 @@ - - - - - - - - Class SingleBackgroundWorker.StagingUIController - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html b/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html deleted file mode 100644 index c6ebf79cab..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class SingleBackgroundWorker - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html b/docs/api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html deleted file mode 100644 index 5ca937701e..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class SyntaxHighlighting - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TabViewExample.html b/docs/api/UICatalog/UICatalog.Scenarios.TabViewExample.html deleted file mode 100644 index a1160af3e8..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TabViewExample.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class TabViewExample - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TableEditor.html b/docs/api/UICatalog/UICatalog.Scenarios.TableEditor.html deleted file mode 100644 index 5128a51a04..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TableEditor.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - Class TableEditor - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Text.html b/docs/api/UICatalog/UICatalog.Scenarios.Text.html deleted file mode 100644 index e42fc869ef..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Text.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class Text - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TextAlignments.html b/docs/api/UICatalog/UICatalog.Scenarios.TextAlignments.html deleted file mode 100644 index 2d4455f4c3..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TextAlignments.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class TextAlignments - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html b/docs/api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html deleted file mode 100644 index 44de141dba..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class TextAlignmentsAndDirections - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html b/docs/api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html deleted file mode 100644 index 76ff45a5d2..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class TextFormatterDemo - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html b/docs/api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html deleted file mode 100644 index 2e0222147a..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class TextViewAutocompletePopup - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Threading.html b/docs/api/UICatalog/UICatalog.Scenarios.Threading.html deleted file mode 100644 index 0785e35185..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Threading.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Class Threading - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TimeAndDate.html b/docs/api/UICatalog/UICatalog.Scenarios.TimeAndDate.html deleted file mode 100644 index b3789d421e..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TimeAndDate.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class TimeAndDate - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TreeUseCases.html b/docs/api/UICatalog/UICatalog.Scenarios.TreeUseCases.html deleted file mode 100644 index 5b81083a74..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TreeUseCases.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class TreeUseCases - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html b/docs/api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html deleted file mode 100644 index 3e77c0d3d3..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class TreeViewFileSystem - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html b/docs/api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html deleted file mode 100644 index c3d15d8a71..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Class UnicodeInMenu - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html b/docs/api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html deleted file mode 100644 index 4bf1202955..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Class WindowsAndFrameViews - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.WizardAsView.html b/docs/api/UICatalog/UICatalog.Scenarios.WizardAsView.html deleted file mode 100644 index 02945850e0..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.WizardAsView.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - Class WizardAsView - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.Wizards.html b/docs/api/UICatalog/UICatalog.Scenarios.Wizards.html deleted file mode 100644 index 5f5abfd0c8..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.Wizards.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class Wizards - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/api/UICatalog/UICatalog.Scenarios.html b/docs/api/UICatalog/UICatalog.Scenarios.html deleted file mode 100644 index a8684d3ab2..0000000000 --- a/docs/api/UICatalog/UICatalog.Scenarios.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - Namespace UICatalog.Scenarios - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/api/UICatalog/UICatalog.UICatalogApp.html b/docs/api/UICatalog/UICatalog.UICatalogApp.html deleted file mode 100644 index 647e9aff44..0000000000 --- a/docs/api/UICatalog/UICatalog.UICatalogApp.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - Class UICatalogApp - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/api/UICatalog/UICatalog.html b/docs/api/UICatalog/UICatalog.html deleted file mode 100644 index 0f3b6cb3a7..0000000000 --- a/docs/api/UICatalog/UICatalog.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Namespace UICatalog - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/api/UICatalog/toc.html b/docs/api/UICatalog/toc.html deleted file mode 100644 index 7ad38b28a1..0000000000 --- a/docs/api/UICatalog/toc.html +++ /dev/null @@ -1,282 +0,0 @@ - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/docs/articles/drivers.html b/docs/articles/drivers.html deleted file mode 100644 index 10ee8b958e..0000000000 --- a/docs/articles/drivers.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Cross-Platform Driver Model - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/articles/index.html b/docs/articles/index.html deleted file mode 100644 index ecf9435b6b..0000000000 --- a/docs/articles/index.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Conceptual Documentation - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - - - diff --git a/docs/articles/keyboard.html b/docs/articles/keyboard.html deleted file mode 100644 index 583cf1b563..0000000000 --- a/docs/articles/keyboard.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Keyboard Event Processing - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - - - diff --git a/docs/articles/mainloop.html b/docs/articles/mainloop.html deleted file mode 100644 index 946b853674..0000000000 --- a/docs/articles/mainloop.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - Event Processing and the Application Main Loop - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - - - diff --git a/docs/articles/overview.html b/docs/articles/overview.html deleted file mode 100644 index 299d2da3b1..0000000000 --- a/docs/articles/overview.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - - - Terminal.Gui API Overview - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - - - diff --git a/docs/articles/tableview.html b/docs/articles/tableview.html deleted file mode 100644 index 1881a004ca..0000000000 --- a/docs/articles/tableview.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - Table View - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - - - diff --git a/docs/articles/treeview.html b/docs/articles/treeview.html deleted file mode 100644 index 62b13451f8..0000000000 --- a/docs/articles/treeview.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Tree View - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - - - diff --git a/docs/articles/views.html b/docs/articles/views.html deleted file mode 100644 index d658b73b48..0000000000 --- a/docs/articles/views.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - - - diff --git a/docs/favicon.ico b/docs/favicon.ico deleted file mode 100644 index 71570f61ef..0000000000 Binary files a/docs/favicon.ico and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.eot b/docs/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a4953ff..0000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.svg b/docs/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb5490a2..0000000000 --- a/docs/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/fonts/glyphicons-halflings-regular.ttf b/docs/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc609a..0000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.woff b/docs/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e612858f8..0000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.woff2 b/docs/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b54c3..0000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/docs/images/logo.png b/docs/images/logo.png deleted file mode 100644 index f09ef13742..0000000000 Binary files a/docs/images/logo.png and /dev/null differ diff --git a/docs/images/logo48.png b/docs/images/logo48.png deleted file mode 100644 index 54e693bc0b..0000000000 Binary files a/docs/images/logo48.png and /dev/null differ diff --git a/docs/images/sample.gif b/docs/images/sample.gif deleted file mode 100644 index 93dabf1057..0000000000 Binary files a/docs/images/sample.gif and /dev/null differ diff --git a/docs/images/sample.png b/docs/images/sample.png deleted file mode 100644 index 27cfe5c81f..0000000000 Binary files a/docs/images/sample.png and /dev/null differ diff --git a/docs/images/wizard.gif b/docs/images/wizard.gif deleted file mode 100644 index 53eb279cf5..0000000000 Binary files a/docs/images/wizard.gif and /dev/null differ diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 40c1a9e10c..0000000000 --- a/docs/index.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - Terminal.Gui - Cross Platform Terminal UI toolkit for .NET - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search Results for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - - - - diff --git a/docs/index.json b/docs/index.json deleted file mode 100644 index a96b59d125..0000000000 --- a/docs/index.json +++ /dev/null @@ -1,1317 +0,0 @@ -{ - "api/Terminal.Gui/Terminal.Gui.Application.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Application.html", - "title": "Class Application", - "keywords": "Class Application A static, singleton class providing the main application driver for Terminal.Gui apps. Inheritance System.Object Application Remarks Creates a instance of MainLoop to process input events, handle timers and other sources of data. It is accessible via the MainLoop property. You can hook up to the Iteration event to have your method invoked on each iteration of the MainLoop . When invoked sets the SynchronizationContext to one that is tied to the mainloop, allowing user code to use async/await. Examples // A simple Terminal.Gui app that creates a window with a frame and title with // 5 rows/columns of padding. Application.Init(); var win = new Window (\"Hello World - CTRL-Q to quit\") { X = 5, Y = 5, Width = Dim.Fill (5), Height = Dim.Fill (5) }; Application.Top.Add(win); Application.Run(); Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public static class Application Fields | Improve this Doc View Source Driver The current ConsoleDriver in use. Declaration public static ConsoleDriver Driver Field Value Type Description ConsoleDriver | Improve this Doc View Source Iteration This event is raised on each iteration of the MainLoop Declaration public static Action Iteration Field Value Type Description System.Action | Improve this Doc View Source Resized Invoked when the terminal was resized. The new size of the terminal is provided. Declaration public static Action Resized Field Value Type Description System.Action < Application.ResizedEventArgs > | Improve this Doc View Source RootKeyEvent Called for new KeyPress events before any processing is performed or views evaluate. Use for global key handling and/or debugging. Return true to suppress the KeyPress event Declaration public static Func RootKeyEvent Field Value Type Description System.Func < KeyEvent , System.Boolean > | Improve this Doc View Source RootMouseEvent Merely a debugging aid to see the raw mouse events Declaration public static Action RootMouseEvent Field Value Type Description System.Action < MouseEvent > | Improve this Doc View Source UseSystemConsole If set, it forces the use of the System.Console-based driver. Declaration public static bool UseSystemConsole Field Value Type Description System.Boolean Properties | Improve this Doc View Source AlternateBackwardKey Alternative key to navigate backwards through all views. Shift+Ctrl+Tab is always used. Declaration public static Key AlternateBackwardKey { get; set; } Property Value Type Description Key | Improve this Doc View Source AlternateForwardKey Alternative key to navigate forwards through all views. Ctrl+Tab is always used. Declaration public static Key AlternateForwardKey { get; set; } Property Value Type Description Key | Improve this Doc View Source Current The current Toplevel object. This is updated when Run(Func) enters and leaves to point to the current Toplevel . Declaration public static Toplevel Current { get; } Property Value Type Description Toplevel The current. | Improve this Doc View Source ExitRunLoopAfterFirstIteration Set to true to cause the RunLoop method to exit after the first iterations. Set to false (the default) to cause the RunLoop to continue running until Application.RequestStop() is called. Declaration public static bool ExitRunLoopAfterFirstIteration { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source HeightAsBuffer The current HeightAsBuffer used in the terminal. Declaration public static bool HeightAsBuffer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source IsMouseDisabled Disable or enable the mouse in this Application Declaration public static bool IsMouseDisabled { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source MainLoop The MainLoop driver for the application Declaration public static MainLoop MainLoop { get; } Property Value Type Description MainLoop The main loop. | Improve this Doc View Source MdiChildes Gets all the Mdi childes which represent all the not modal Toplevel from the MdiTop . Declaration public static List MdiChildes { get; } Property Value Type Description System.Collections.Generic.List < Toplevel > | Improve this Doc View Source MdiTop The Toplevel object used for the application on startup which IsMdiContainer is true. Declaration public static Toplevel MdiTop { get; } Property Value Type Description Toplevel | Improve this Doc View Source QuitKey Gets or sets the key to quit the application. Declaration public static Key QuitKey { get; set; } Property Value Type Description Key | Improve this Doc View Source SupportedCultures Gets all supported cultures by the application without the invariant language. Declaration public static List SupportedCultures { get; } Property Value Type Description System.Collections.Generic.List < System.Globalization.CultureInfo > | Improve this Doc View Source Top The Toplevel object used for the application on startup ( Top ) Declaration public static Toplevel Top { get; } Property Value Type Description Toplevel The top. | Improve this Doc View Source WantContinuousButtonPressedView The current View object that wants continuous mouse button pressed events. Declaration public static View WantContinuousButtonPressedView { get; } Property Value Type Description View Methods | Improve this Doc View Source Begin(Toplevel) Building block API: Prepares the provided Toplevel for execution. Declaration public static Application.RunState Begin(Toplevel toplevel) Parameters Type Name Description Toplevel toplevel Toplevel to prepare execution for. Returns Type Description Application.RunState The runstate handle that needs to be passed to the End(Application.RunState) method upon completion. | Improve this Doc View Source DoEvents() Wakes up the mainloop that might be waiting on input, must be thread safe. Declaration public static void DoEvents() | Improve this Doc View Source End(Application.RunState) Building block API: completes the execution of a Toplevel that was started with Begin(Toplevel) . Declaration public static void End(Application.RunState runState) Parameters Type Name Description Application.RunState runState The runstate returned by the Begin(Toplevel) method. | Improve this Doc View Source EnsuresTopOnFront() Ensures that the superview of the most focused view is on front. Declaration public static void EnsuresTopOnFront() | Improve this Doc View Source GrabMouse(View) Grabs the mouse, forcing all mouse events to be routed to the specified view until UngrabMouse is called. Declaration public static void GrabMouse(View view) Parameters Type Name Description View view View that will receive all mouse events until UngrabMouse is invoked. | Improve this Doc View Source Init(ConsoleDriver, IMainLoopDriver) Initializes a new instance of Terminal.Gui Application. Declaration public static void Init(ConsoleDriver driver = null, IMainLoopDriver mainLoopDriver = null) Parameters Type Name Description ConsoleDriver driver IMainLoopDriver mainLoopDriver | Improve this Doc View Source MakeCenteredRect(Size) Returns a rectangle that is centered in the screen for the provided size. Declaration public static Rect MakeCenteredRect(Size size) Parameters Type Name Description Size size Size for the rectangle. Returns Type Description Rect The centered rect. | Improve this Doc View Source MoveNext() Move to the next Mdi child from the MdiTop . Declaration public static void MoveNext() | Improve this Doc View Source MovePrevious() Move to the previous Mdi child from the MdiTop . Declaration public static void MovePrevious() | Improve this Doc View Source Refresh() Triggers a refresh of the entire display. Declaration public static void Refresh() | Improve this Doc View Source RequestStop(Toplevel) Stops running the most recent Toplevel or the top if provided. Declaration public static void RequestStop(Toplevel top = null) Parameters Type Name Description Toplevel top The toplevel to request stop. | Improve this Doc View Source Run(Func) Runs the application by calling Run(Toplevel, Func) with the value of Top Declaration public static void Run(Func errorHandler = null) Parameters Type Name Description System.Func < System.Exception , System.Boolean > errorHandler | Improve this Doc View Source Run(Toplevel, Func) Runs the main loop on the given Toplevel container. Declaration public static void Run(Toplevel view, Func errorHandler = null) Parameters Type Name Description Toplevel view The Toplevel to run modally. System.Func < System.Exception , System.Boolean > errorHandler Handler for any unhandled exceptions (resumes when returns true, rethrows when null). | Improve this Doc View Source Run(Func) Runs the application by calling Run(Toplevel, Func) with a new instance of the specified Toplevel -derived class Declaration public static void Run(Func errorHandler = null) where T : Toplevel, new() Parameters Type Name Description System.Func < System.Exception , System.Boolean > errorHandler Type Parameters Name Description T | Improve this Doc View Source RunLoop(Application.RunState, Boolean) Building block API: Runs the main loop for the created dialog Declaration public static void RunLoop(Application.RunState state, bool wait = true) Parameters Type Name Description Application.RunState state The state returned by the Begin method. System.Boolean wait By default this is true which will execute the runloop waiting for events, if you pass false, you can use this method to run a single iteration of the events. | Improve this Doc View Source RunMainLoopIteration(ref Application.RunState, Boolean, ref Boolean) Run one iteration of the MainLoop. Declaration public static void RunMainLoopIteration(ref Application.RunState state, bool wait, ref bool firstIteration) Parameters Type Name Description Application.RunState state The state returned by the Begin method. System.Boolean wait If will execute the runloop waiting for events. System.Boolean firstIteration If it's the first run loop iteration. | Improve this Doc View Source Shutdown() Shutdown an application initialized with Init(ConsoleDriver, IMainLoopDriver) Declaration public static void Shutdown() | Improve this Doc View Source UngrabMouse() Releases the mouse grab, so mouse events will be routed to the view on which the mouse is. Declaration public static void UngrabMouse() Events | Improve this Doc View Source NotifyNewRunState Notify that a new Application.RunState token was created, used if ExitRunLoopAfterFirstIteration is true. Declaration public static event Action NotifyNewRunState Event Type Type Description System.Action < Application.RunState > | Improve this Doc View Source NotifyStopRunState Notify that a existent Application.RunState token is stopping, used if ExitRunLoopAfterFirstIteration is true. Declaration public static event Action NotifyStopRunState Event Type Type Description System.Action < Toplevel >" - }, - "api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html", - "title": "Class Application.ResizedEventArgs", - "keywords": "Class Application.ResizedEventArgs Event arguments for the Resized event. Inheritance System.Object System.EventArgs Application.ResizedEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ResizedEventArgs : EventArgs Properties | Improve this Doc View Source Cols The number of columns in the resized terminal. Declaration public int Cols { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Rows The number of rows in the resized terminal. Declaration public int Rows { get; set; } Property Value Type Description System.Int32" - }, - "api/Terminal.Gui/Terminal.Gui.Application.RunState.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Application.RunState.html", - "title": "Class Application.RunState", - "keywords": "Class Application.RunState Captures the execution state for the provided Toplevel view. Inheritance System.Object Application.RunState Implements System.IDisposable Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class RunState : IDisposable Constructors | Improve this Doc View Source RunState(Toplevel) Initializes a new Application.RunState class. Declaration public RunState(Toplevel view) Parameters Type Name Description Toplevel view Properties | Improve this Doc View Source Toplevel The Toplevel belong to this Application.RunState . Declaration public Toplevel Toplevel { get; } Property Value Type Description Toplevel Methods | Improve this Doc View Source Dispose() Releases alTop = l resource used by the Application.RunState object. Declaration public void Dispose() | Improve this Doc View Source Dispose(Boolean) Dispose the specified disposing. Declaration protected virtual void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing If set to true disposing. Implements System.IDisposable" - }, - "api/Terminal.Gui/Terminal.Gui.Attribute.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Attribute.html", - "title": "Struct Attribute", - "keywords": "Struct Attribute Attributes are used as elements that contain both a foreground and a background or platform specific features Remarks Attribute s are needed to map colors to terminal capabilities that might lack colors, on color scenarios, they encode both the foreground and the background color and are used in the ColorScheme class to define color schemes that can be used in your application. Inherited Members System.ValueType.Equals(System.Object) System.ValueType.GetHashCode() System.ValueType.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct Attribute Constructors | Improve this Doc View Source Attribute(Int32) Initializes a new instance of the Attribute struct with only the value passed to and trying to get the colors if defined. Declaration public Attribute(int value) Parameters Type Name Description System.Int32 value Value. | Improve this Doc View Source Attribute(Int32, Color, Color) Initializes a new instance of the Attribute struct. Declaration public Attribute(int value, Color foreground, Color background) Parameters Type Name Description System.Int32 value Value. Color foreground Foreground Color background Background | Improve this Doc View Source Attribute(Color) Initializes a new instance of the Attribute struct with the same colors for the foreground and background. Declaration public Attribute(Color color) Parameters Type Name Description Color color The color. | Improve this Doc View Source Attribute(Color, Color) Initializes a new instance of the Attribute struct. Declaration public Attribute(Color foreground = Color.Black, Color background = Color.Black) Parameters Type Name Description Color foreground Foreground Color background Background Properties | Improve this Doc View Source Background The background color. Declaration public readonly Color Background { get; } Property Value Type Description Color | Improve this Doc View Source Foreground The foreground color. Declaration public readonly Color Foreground { get; } Property Value Type Description Color | Improve this Doc View Source Value The color attribute value. Declaration public readonly int Value { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source Get() Gets the current Attribute from the driver. Declaration public static Attribute Get() Returns Type Description Attribute The current attribute. | Improve this Doc View Source Make(Color, Color) Creates an Attribute from the specified foreground and background. Declaration public static Attribute Make(Color foreground, Color background) Parameters Type Name Description Color foreground Foreground color to use. Color background Background color to use. Returns Type Description Attribute The make. Operators | Improve this Doc View Source Implicit(Int32 to Attribute) Implicitly convert an integer value into an Attribute Declaration public static implicit operator Attribute(int v) Parameters Type Name Description System.Int32 v value Returns Type Description Attribute An attribute with the specified integer value. | Improve this Doc View Source Implicit(Attribute to Int32) Implicit conversion from an Attribute to the underlying Int32 representation Declaration public static implicit operator int (Attribute c) Parameters Type Name Description Attribute c The attribute to convert Returns Type Description System.Int32 The integer value stored in the attribute." - }, - "api/Terminal.Gui/Terminal.Gui.Autocomplete.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Autocomplete.html", - "title": "Class Autocomplete", - "keywords": "Class Autocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. Inheritance System.Object Autocomplete TextFieldAutocomplete TextViewAutocomplete Implements IAutocomplete Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public abstract class Autocomplete : IAutocomplete Properties | Improve this Doc View Source AllSuggestions The full set of all strings that can be suggested. Declaration public virtual List AllSuggestions { get; set; } Property Value Type Description System.Collections.Generic.List < System.String > | Improve this Doc View Source CloseKey The key that the user can press to close the currently popped autocomplete menu Declaration public virtual Key CloseKey { get; set; } Property Value Type Description Key | Improve this Doc View Source ColorScheme The colors to use to render the overlay. Accessing this property before the Application has been initialized will cause an error Declaration public virtual ColorScheme ColorScheme { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source HostControl The host control to handle. Declaration public virtual View HostControl { get; set; } Property Value Type Description View | Improve this Doc View Source MaxHeight The maximum number of visible rows in the autocomplete dropdown to render Declaration public virtual int MaxHeight { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source MaxWidth The maximum width of the autocomplete dropdown Declaration public virtual int MaxWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source PopupInsideContainer Gets or sets If the popup is displayed inside or outside the host limits. Declaration public bool PopupInsideContainer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Reopen The key that the user can press to reopen the currently popped autocomplete menu Declaration public virtual Key Reopen { get; set; } Property Value Type Description Key | Improve this Doc View Source ScrollOffset When more suggestions are available than can be rendered the user can scroll down the dropdown list. This indicates how far down they have gone Declaration public virtual int ScrollOffset { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedIdx The currently selected index into Suggestions that the user has highlighted Declaration public virtual int SelectedIdx { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectionKey The key that the user must press to accept the currently selected autocomplete suggestion Declaration public virtual Key SelectionKey { get; set; } Property Value Type Description Key | Improve this Doc View Source Suggestions The strings that form the current list of suggestions to render based on what the user has typed so far. Declaration public virtual ReadOnlyCollection Suggestions { get; set; } Property Value Type Description System.Collections.ObjectModel.ReadOnlyCollection < System.String > | Improve this Doc View Source Visible True if the autocomplete should be considered open and visible Declaration public virtual bool Visible { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source ClearSuggestions() Clears Suggestions Declaration public virtual void ClearSuggestions() | Improve this Doc View Source Close() Closes the Autocomplete context menu if it is showing and ClearSuggestions() Declaration protected void Close() | Improve this Doc View Source DeleteTextBackwards() Deletes the text backwards before insert the selected text in the HostControl . Declaration protected abstract void DeleteTextBackwards() | Improve this Doc View Source EnsureSelectedIdxIsValid() Updates SelectedIdx to be a valid index within Suggestions Declaration public virtual void EnsureSelectedIdxIsValid() | Improve this Doc View Source GenerateSuggestions() Populates Suggestions with all strings in AllSuggestions that match with the current cursor position/text in the HostControl Declaration public virtual void GenerateSuggestions() | Improve this Doc View Source GetCurrentWord() Returns the currently selected word from the HostControl . When overriding this method views can make use of IdxToWord(List, Int32) Declaration protected abstract string GetCurrentWord() Returns Type Description System.String | Improve this Doc View Source IdxToWord(List, Int32) Given a line of characters, returns the word which ends at idx or null. Also returns null if the idx is positioned in the middle of a word. Use this method to determine whether autocomplete should be shown when the cursor is at a given point in a line and to get the word from which suggestions should be generated. Declaration protected virtual string IdxToWord(List line, int idx) Parameters Type Name Description System.Collections.Generic.List < System.Rune > line System.Int32 idx Returns Type Description System.String | Improve this Doc View Source InsertSelection(String) Called when the user confirms a selection at the current cursor location in the HostControl . The accepted string is the full autocomplete word to be inserted. Typically a host will have to remove some characters such that the accepted string completes the word instead of simply being appended. Declaration protected virtual bool InsertSelection(string accepted) Parameters Type Name Description System.String accepted Returns Type Description System.Boolean True if the insertion was possible otherwise false | Improve this Doc View Source InsertText(String) Inser the selected text in the HostControl . Declaration protected abstract void InsertText(string accepted) Parameters Type Name Description System.String accepted | Improve this Doc View Source IsWordChar(Rune) Return true if the given symbol should be considered part of a word and can be contained in matches. Base behavior is to use System.Char.IsLetterOrDigit(System.Char) Declaration public virtual bool IsWordChar(Rune rune) Parameters Type Name Description System.Rune rune Returns Type Description System.Boolean | Improve this Doc View Source MouseEvent(MouseEvent, Boolean) Handle mouse events before HostControl e.g. to make mouse events like report/click apply to the autocomplete control instead of changing the cursor position in the underlying text view. Declaration public virtual bool MouseEvent(MouseEvent me, bool fromHost = false) Parameters Type Name Description MouseEvent me The mouse event. System.Boolean fromHost If was called from the popup or from the host. Returns Type Description System.Boolean true if the mouse can be handled false otherwise. | Improve this Doc View Source MoveDown() Moves the selection in the Autocomplete context menu down one Declaration protected void MoveDown() | Improve this Doc View Source MoveUp() Moves the selection in the Autocomplete context menu up one Declaration protected void MoveUp() | Improve this Doc View Source ProcessKey(KeyEvent) Handle key events before HostControl e.g. to make key events like up/down apply to the autocomplete control instead of changing the cursor position in the underlying text view. Declaration public virtual bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb The key event. Returns Type Description System.Boolean true if the key can be handled false otherwise. | Improve this Doc View Source RenderOverlay(Point) Renders the autocomplete dialog inside or outside the given HostControl at the given point. Declaration public virtual void RenderOverlay(Point renderAt) Parameters Type Name Description Point renderAt | Improve this Doc View Source RenderSelectedIdxByMouse(MouseEvent) Render the current selection in the Autocomplete context menu by the mouse reporting. Declaration protected void RenderSelectedIdxByMouse(MouseEvent me) Parameters Type Name Description MouseEvent me | Improve this Doc View Source ReopenSuggestions() Reopen the popup after it has been closed. Declaration protected bool ReopenSuggestions() Returns Type Description System.Boolean | Improve this Doc View Source Select() Completes the autocomplete selection process. Called when user hits the SelectionKey . Declaration protected bool Select() Returns Type Description System.Boolean Implements IAutocomplete" - }, - "api/Terminal.Gui/Terminal.Gui.Border.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Border.html", - "title": "Class Border", - "keywords": "Class Border Draws a border, background, or both around another element. Inheritance System.Object Border Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Border Properties | Improve this Doc View Source ActualHeight Gets the rendered height of this element. Declaration public int ActualHeight { get; } Property Value Type Description System.Int32 | Improve this Doc View Source ActualWidth Gets the rendered width of this element. Declaration public int ActualWidth { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Background Gets or sets the Color that fills the area between the bounds of a Border . Declaration public Color Background { get; set; } Property Value Type Description Color | Improve this Doc View Source BorderBrush Gets or sets the Color that draws the outer border color. Declaration public Color BorderBrush { get; set; } Property Value Type Description Color | Improve this Doc View Source BorderStyle Specifies the BorderStyle for a view. Declaration public BorderStyle BorderStyle { get; set; } Property Value Type Description BorderStyle | Improve this Doc View Source BorderThickness Gets or sets the relative Thickness of a Border . Declaration public Thickness BorderThickness { get; set; } Property Value Type Description Thickness | Improve this Doc View Source Child Gets or sets the single child element of a View . Declaration public View Child { get; set; } Property Value Type Description View | Improve this Doc View Source ChildContainer Gets or private sets by the Border.ToplevelContainer Declaration public Border.ToplevelContainer ChildContainer { get; } Property Value Type Description Border.ToplevelContainer | Improve this Doc View Source DrawMarginFrame Gets or sets if a margin frame is drawn around the Child regardless the BorderStyle Declaration public bool DrawMarginFrame { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Effect3D Gets or sets the 3D effect around the Border . Declaration public bool Effect3D { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Effect3DBrush Gets or sets the color for the Border Declaration public Attribute? Effect3DBrush { get; set; } Property Value Type Description System.Nullable < Attribute > | Improve this Doc View Source Effect3DOffset Get or sets the offset start position for the Effect3D Declaration public Point Effect3DOffset { get; set; } Property Value Type Description Point | Improve this Doc View Source Padding Gets or sets a Thickness value that describes the amount of space between a Border and its child element. Declaration public Thickness Padding { get; set; } Property Value Type Description Thickness | Improve this Doc View Source Parent Gets the parent Child parent if any. Declaration public View Parent { get; } Property Value Type Description View | Improve this Doc View Source Title The title to be displayed for this view. Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source DrawContent(View, Boolean) Drawn the BorderThickness more the Padding more the BorderStyle and the Effect3D . Declaration public void DrawContent(View view = null, bool fill = true) Parameters Type Name Description View view The view to draw. System.Boolean fill If it will clear or not the content area. | Improve this Doc View Source DrawFullContent() Same as DrawContent(View, Boolean) but drawing full frames for all borders. Declaration public void DrawFullContent() | Improve this Doc View Source DrawTitle(View) Draws the view Title to the screen. Declaration public void DrawTitle(View view) Parameters Type Name Description View view The view. | Improve this Doc View Source DrawTitle(View, Rect) Draws the Text to the screen. Declaration public void DrawTitle(View view, Rect rect) Parameters Type Name Description View view The view. Rect rect The frame. | Improve this Doc View Source GetSumThickness() Calculate the sum of the Padding and the BorderThickness Declaration public Thickness GetSumThickness() Returns Type Description Thickness The total of the Border Thickness | Improve this Doc View Source OnBorderChanged() Invoke the BorderChanged event. Declaration public virtual void OnBorderChanged() Events | Improve this Doc View Source BorderChanged Invoked when any property of Border changes (except Child ). Declaration public event Action BorderChanged Event Type Type Description System.Action < Border >" - }, - "api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html", - "title": "Class Border.ToplevelContainer", - "keywords": "Class Border.ToplevelContainer A sealed Toplevel derived class to implement Border feature. This is only a wrapper to get borders on a toplevel and is recommended using another derived, like Window where is possible to have borders with or without border line or spacing around. Inheritance System.Object Responder View Toplevel Border.ToplevelContainer Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessKey(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public sealed class ToplevelContainer : Toplevel, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ToplevelContainer() Initializes with default null values. Declaration public ToplevelContainer() | Improve this Doc View Source ToplevelContainer(Border, String) Initializes a Border.ToplevelContainer with a Computed Declaration public ToplevelContainer(Border border, string title = null) Parameters Type Name Description Border border The border. System.String title The title. | Improve this Doc View Source ToplevelContainer(Rect, Border, String) Initializes a Border.ToplevelContainer with a Absolute Declaration public ToplevelContainer(Rect frame, Border border, string title = null) Parameters Type Name Description Rect frame The frame. Border border The border. System.String title The title. Properties | Improve this Doc View Source Border Declaration public override Border Border { get; set; } Property Value Type Description Border Overrides View.Border Methods | Improve this Doc View Source Add(View) Declaration public override void Add(View view) Parameters Type Name Description View view Overrides Toplevel.Add(View) | Improve this Doc View Source OnCanFocusChanged() Declaration public override void OnCanFocusChanged() Overrides View.OnCanFocusChanged() | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides Toplevel.Redraw(Rect) | Improve this Doc View Source Remove(View) Declaration public override void Remove(View view) Parameters Type Name Description View view Overrides Toplevel.Remove(View) | Improve this Doc View Source RemoveAll() Declaration public override void RemoveAll() Overrides Toplevel.RemoveAll() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.BorderStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.BorderStyle.html", - "title": "Enum BorderStyle", - "keywords": "Enum BorderStyle Specifies the border style for a View and to be used by the Border class. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum BorderStyle Fields Name Description Double The border is drawn with a double line limits. None No border is drawn. Rounded The border is drawn with a single line and rounded corners limits. Single The border is drawn with a single line limits." - }, - "api/Terminal.Gui/Terminal.Gui.Button.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Button.html", - "title": "Class Button", - "keywords": "Class Button Button is a View that provides an item that invokes an System.Action when activated by the user. Inheritance System.Object Responder View Button Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks Provides a button showing text invokes an System.Action when clicked on with a mouse or when the user presses SPACE, ENTER, or hotkey. The hotkey is the first letter or digit following the first underscore ('_') in the button text. Use HotKeySpecifier to change the hotkey specifier from the default of ('_'). If no hotkey specifier is found, the first uppercase letter encountered will be used as the hotkey. When the button is configured as the default ( IsDefault ) and the user presses the ENTER key, if no other View processes the KeyEvent , the Button 's System.Action will be invoked. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.Redraw(Rect) View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Button : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source Button() Initializes a new instance of Button using Computed layout. Declaration public Button() | Improve this Doc View Source Button(ustring, Boolean) Initializes a new instance of Button using Computed layout. Declaration public Button(ustring text, bool is_default = false) Parameters Type Name Description NStack.ustring text The button's text System.Boolean is_default If true , a special decoration is used, and the user pressing the enter key in a Dialog will implicitly activate this button. | Improve this Doc View Source Button(Int32, Int32, ustring) Initializes a new instance of Button using Absolute layout, based on the given text Declaration public Button(int x, int y, ustring text) Parameters Type Name Description System.Int32 x X position where the button will be shown. System.Int32 y Y position where the button will be shown. NStack.ustring text The button's text | Improve this Doc View Source Button(Int32, Int32, ustring, Boolean) Initializes a new instance of Button using Absolute layout, based on the given text. Declaration public Button(int x, int y, ustring text, bool is_default) Parameters Type Name Description System.Int32 x X position where the button will be shown. System.Int32 y Y position where the button will be shown. NStack.ustring text The button's text System.Boolean is_default If true , a special decoration is used, and the user pressing the enter key in a Dialog will implicitly activate this button. Properties | Improve this Doc View Source HotKey Declaration public override Key HotKey { get; set; } Property Value Type Description Key Overrides View.HotKey | Improve this Doc View Source IsDefault Gets or sets whether the Button is the default action to activate in a dialog. Declaration public bool IsDefault { get; set; } Property Value Type Description System.Boolean true if is default; otherwise, false . Methods | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnClicked() Virtual method to invoke the Clicked event. Declaration public virtual void OnClicked() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessColdKey(KeyEvent) Declaration public override bool ProcessColdKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessColdKey(KeyEvent) | Improve this Doc View Source ProcessHotKey(KeyEvent) Declaration public override bool ProcessHotKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessHotKey(KeyEvent) | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source UpdateTextFormatterText() Declaration protected override void UpdateTextFormatterText() Overrides View.UpdateTextFormatterText() Events | Improve this Doc View Source Clicked Clicked System.Action , raised when the user clicks the primary mouse button within the Bounds of this View or if the user presses the action key while this view is focused. (TODO: IsDefault) Declaration public event Action Clicked Event Type Type Description System.Action Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.CheckBox.html": { - "href": "api/Terminal.Gui/Terminal.Gui.CheckBox.html", - "title": "Class CheckBox", - "keywords": "Class CheckBox The CheckBox View shows an on/off toggle that the user can set Inheritance System.Object Responder View CheckBox Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.Redraw(Rect) View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class CheckBox : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source CheckBox() Initializes a new instance of CheckBox based on the given text, using Computed layout. Declaration public CheckBox() | Improve this Doc View Source CheckBox(ustring, Boolean) Initializes a new instance of CheckBox based on the given text, using Computed layout. Declaration public CheckBox(ustring s, bool is_checked = false) Parameters Type Name Description NStack.ustring s S. System.Boolean is_checked If set to true is checked. | Improve this Doc View Source CheckBox(Int32, Int32, ustring) Initializes a new instance of CheckBox using Absolute layout. Declaration public CheckBox(int x, int y, ustring s) Parameters Type Name Description System.Int32 x System.Int32 y NStack.ustring s | Improve this Doc View Source CheckBox(Int32, Int32, ustring, Boolean) Initializes a new instance of CheckBox using Absolute layout. Declaration public CheckBox(int x, int y, ustring s, bool is_checked) Parameters Type Name Description System.Int32 x System.Int32 y NStack.ustring s System.Boolean is_checked Properties | Improve this Doc View Source Checked The state of the CheckBox Declaration public bool Checked { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnToggled(Boolean) Called when the Checked property changes. Invokes the Toggled event. Declaration public virtual void OnToggled(bool previousChecked) Parameters Type Name Description System.Boolean previousChecked | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessHotKey(KeyEvent) Declaration public override bool ProcessHotKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessHotKey(KeyEvent) | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source UpdateTextFormatterText() Declaration protected override void UpdateTextFormatterText() Overrides View.UpdateTextFormatterText() Events | Improve this Doc View Source Toggled Toggled event, raised when the CheckBox is toggled. Declaration public event Action Toggled Event Type Type Description System.Action < System.Boolean > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Clipboard.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Clipboard.html", - "title": "Class Clipboard", - "keywords": "Class Clipboard Provides cut, copy, and paste support for the clipboard with OS interaction. Inheritance System.Object Clipboard Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public static class Clipboard Properties | Improve this Doc View Source Contents Get or sets the operation system clipboard, otherwise the contents field. Declaration public static ustring Contents { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source IsSupported Returns true if the environmental dependencies are in place to interact with the OS clipboard. Declaration public static bool IsSupported { get; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source TryGetClipboardData(out String) Gets the operation system clipboard if possible. Declaration public static bool TryGetClipboardData(out string result) Parameters Type Name Description System.String result Clipboard contents read Returns Type Description System.Boolean true if it was possible to read the OS clipboard. | Improve this Doc View Source TrySetClipboardData(String) Sets the operation system clipboard if possible. Declaration public static bool TrySetClipboardData(string text) Parameters Type Name Description System.String text Returns Type Description System.Boolean True if the clipboard content was set successfully." - }, - "api/Terminal.Gui/Terminal.Gui.ClipboardBase.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ClipboardBase.html", - "title": "Class ClipboardBase", - "keywords": "Class ClipboardBase Shared abstract class to enforce rules from the implementation of the IClipboard interface. Inheritance System.Object ClipboardBase Implements IClipboard Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public abstract class ClipboardBase : IClipboard Properties | Improve this Doc View Source IsSupported Returns true if the environmental dependencies are in place to interact with the OS clipboard Declaration public abstract bool IsSupported { get; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source GetClipboardData() Get the operation system clipboard. Declaration public string GetClipboardData() Returns Type Description System.String Exceptions Type Condition System.NotSupportedException Thrown if it was not possible to read the clipboard contents | Improve this Doc View Source GetClipboardDataImpl() Get the operation system clipboard. Declaration protected abstract string GetClipboardDataImpl() Returns Type Description System.String | Improve this Doc View Source SetClipboardData(String) Sets the operation system clipboard. Declaration public void SetClipboardData(string text) Parameters Type Name Description System.String text Exceptions Type Condition System.NotSupportedException Thrown if it was not possible to set the clipboard contents | Improve this Doc View Source SetClipboardDataImpl(String) Sets the operation system clipboard. Declaration protected abstract void SetClipboardDataImpl(string text) Parameters Type Name Description System.String text | Improve this Doc View Source TryGetClipboardData(out String) Gets the operation system clipboard if possible. Declaration public bool TryGetClipboardData(out string result) Parameters Type Name Description System.String result Clipboard contents read Returns Type Description System.Boolean true if it was possible to read the OS clipboard. | Improve this Doc View Source TrySetClipboardData(String) Sets the operation system clipboard if possible. Declaration public bool TrySetClipboardData(string text) Parameters Type Name Description System.String text Returns Type Description System.Boolean True if the clipboard content was set successfully Implements IClipboard" - }, - "api/Terminal.Gui/Terminal.Gui.Color.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Color.html", - "title": "Enum Color", - "keywords": "Enum Color Basic colors that can be used to set the foreground and background colors in console applications. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum Color Fields Name Description Black The black color. Blue The blue color. BrightBlue The bright bBlue color. BrightCyan The bright cyan color. BrightGreen The bright green color. BrightMagenta The bright magenta color. BrightRed The bright red color. BrightYellow The bright yellow color. Brown The brown color. Cyan The cyan color. DarkGray The dark gray color. Gray The gray color. Green The green color. Magenta The magenta color. Red The red color. White The White color." - }, - "api/Terminal.Gui/Terminal.Gui.ColorPicker.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ColorPicker.html", - "title": "Class ColorPicker", - "keywords": "Class ColorPicker The ColorPicker View Color picker. Inheritance System.Object Responder View ColorPicker Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ColorPicker : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ColorPicker() Initializes a new instance of ColorPicker . Declaration public ColorPicker() | Improve this Doc View Source ColorPicker(ustring) Initializes a new instance of ColorPicker . Declaration public ColorPicker(ustring title) Parameters Type Name Description NStack.ustring title Title. | Improve this Doc View Source ColorPicker(Int32, Int32, ustring) Initializes a new instance of ColorPicker . Declaration public ColorPicker(int x, int y, ustring title) Parameters Type Name Description System.Int32 x X location. System.Int32 y Y location. NStack.ustring title Title | Improve this Doc View Source ColorPicker(Point, ustring) Initializes a new instance of ColorPicker . Declaration public ColorPicker(Point point, ustring title) Parameters Type Name Description Point point Location point. NStack.ustring title Title. Properties | Improve this Doc View Source Cursor Cursor for the selected color. Declaration public Point Cursor { get; set; } Property Value Type Description Point | Improve this Doc View Source SelectedColor Selected color. Declaration public Color SelectedColor { get; set; } Property Value Type Description Color Methods | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source MoveDown() Moves the selected item index to the next row. Declaration public virtual bool MoveDown() Returns Type Description System.Boolean | Improve this Doc View Source MoveLeft() Moves the selected item index to the previous column. Declaration public virtual bool MoveLeft() Returns Type Description System.Boolean | Improve this Doc View Source MoveRight() Moves the selected item index to the next column. Declaration public virtual bool MoveRight() Returns Type Description System.Boolean | Improve this Doc View Source MoveUp() Moves the selected item index to the previous row. Declaration public virtual bool MoveUp() Returns Type Description System.Boolean | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) Events | Improve this Doc View Source ColorChanged Fired when a color is picked. Declaration public event Action ColorChanged Event Type Type Description System.Action Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Colors.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Colors.html", - "title": "Class Colors", - "keywords": "Class Colors The default ColorScheme s for the application. Inheritance System.Object Colors Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public static class Colors Properties | Improve this Doc View Source Base The base color scheme, for the default toplevel views. Declaration public static ColorScheme Base { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source ColorSchemes Provides the defined ColorScheme s. Declaration public static Dictionary ColorSchemes { get; } Property Value Type Description System.Collections.Generic.Dictionary < System.String , ColorScheme > | Improve this Doc View Source Dialog The dialog color scheme, for standard popup dialog boxes Declaration public static ColorScheme Dialog { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source Error The color scheme for showing errors. Declaration public static ColorScheme Error { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source Menu The menu bar color Declaration public static ColorScheme Menu { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source TopLevel The application toplevel color scheme, for the default toplevel views. Declaration public static ColorScheme TopLevel { get; set; } Property Value Type Description ColorScheme" - }, - "api/Terminal.Gui/Terminal.Gui.ColorScheme.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ColorScheme.html", - "title": "Class ColorScheme", - "keywords": "Class ColorScheme Color scheme definitions, they cover some common scenarios and are used typically in containers such as Window and FrameView to set the scheme that is used by all the views contained inside. Inheritance System.Object ColorScheme Implements System.IEquatable < ColorScheme > Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ColorScheme : IEquatable Properties | Improve this Doc View Source Disabled The default color for text, when the view is disabled. Declaration public Attribute Disabled { get; set; } Property Value Type Description Attribute | Improve this Doc View Source Focus The color for text when the view has the focus. Declaration public Attribute Focus { get; set; } Property Value Type Description Attribute | Improve this Doc View Source HotFocus The color for the hotkey when the view is focused. Declaration public Attribute HotFocus { get; set; } Property Value Type Description Attribute | Improve this Doc View Source HotNormal The color for the hotkey when a view is not focused Declaration public Attribute HotNormal { get; set; } Property Value Type Description Attribute | Improve this Doc View Source Normal The default color for text, when the view is not focused. Declaration public Attribute Normal { get; set; } Property Value Type Description Attribute Methods | Improve this Doc View Source Equals(Object) Compares two ColorScheme objects for equality. Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean true if the two objects are equal Overrides System.Object.Equals(System.Object) | Improve this Doc View Source Equals(ColorScheme) Compares two ColorScheme objects for equality. Declaration public bool Equals(ColorScheme other) Parameters Type Name Description ColorScheme other Returns Type Description System.Boolean true if the two objects are equal | Improve this Doc View Source GetHashCode() Returns a hashcode for this instance. Declaration public override int GetHashCode() Returns Type Description System.Int32 hashcode for this instance Overrides System.Object.GetHashCode() Operators | Improve this Doc View Source Equality(ColorScheme, ColorScheme) Compares two ColorScheme objects for equality. Declaration public static bool operator ==(ColorScheme left, ColorScheme right) Parameters Type Name Description ColorScheme left ColorScheme right Returns Type Description System.Boolean true if the two objects are equivalent | Improve this Doc View Source Inequality(ColorScheme, ColorScheme) Compares two ColorScheme objects for inequality. Declaration public static bool operator !=(ColorScheme left, ColorScheme right) Parameters Type Name Description ColorScheme left ColorScheme right Returns Type Description System.Boolean true if the two objects are not equivalent Implements System.IEquatable" - }, - "api/Terminal.Gui/Terminal.Gui.ComboBox.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ComboBox.html", - "title": "Class ComboBox", - "keywords": "Class ComboBox Provides a drop-down list of items the user can select from. Inheritance System.Object Responder View ComboBox Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ComboBox : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ComboBox() Public constructor Declaration public ComboBox() | Improve this Doc View Source ComboBox(ustring) Public constructor Declaration public ComboBox(ustring text) Parameters Type Name Description NStack.ustring text | Improve this Doc View Source ComboBox(IList) Initialize with the source. Declaration public ComboBox(IList source) Parameters Type Name Description System.Collections.IList source The source. | Improve this Doc View Source ComboBox(Rect, IList) Public constructor Declaration public ComboBox(Rect rect, IList source) Parameters Type Name Description Rect rect System.Collections.IList source Properties | Improve this Doc View Source ColorScheme Declaration public ColorScheme ColorScheme { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source HideDropdownListOnClick Gets or sets if the drop-down list can be hide with a button click event. Declaration public bool HideDropdownListOnClick { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source IsShow Gets the drop down list state, expanded or collapsed. Declaration public bool IsShow { get; } Property Value Type Description System.Boolean | Improve this Doc View Source ReadOnly If set to true its not allow any changes in the text. Declaration public bool ReadOnly { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source SelectedItem Gets the index of the currently selected item in the Source Declaration public int SelectedItem { get; set; } Property Value Type Description System.Int32 The selected item or -1 none selected. | Improve this Doc View Source Source Gets or sets the IListDataSource backing this ComboBox , enabling custom rendering. Declaration public IListDataSource Source { get; set; } Property Value Type Description IListDataSource The source. | Improve this Doc View Source Text The currently selected list item Declaration public ustring Text { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source Collapse() Collapses the drop down list. Returns true if the state chagned or false if it was already collapsed and no action was taken Declaration public virtual bool Collapse() Returns Type Description System.Boolean | Improve this Doc View Source Expand() Expands the drop down list. Returns true if the state chagned or false if it was already expanded and no action was taken Declaration public virtual bool Expand() Returns Type Description System.Boolean | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnCollapsed() Virtual method which invokes the Collapsed event. Declaration public virtual void OnCollapsed() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnExpanded() Virtual method which invokes the Expanded event. Declaration public virtual void OnExpanded() | Improve this Doc View Source OnLeave(View) Declaration public override bool OnLeave(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnLeave(View) | Improve this Doc View Source OnOpenSelectedItem() Invokes the OnOpenSelectedItem event if it is defined. Declaration public virtual bool OnOpenSelectedItem() Returns Type Description System.Boolean | Improve this Doc View Source OnSelectedChanged() Invokes the SelectedChanged event if it is defined. Declaration public virtual bool OnSelectedChanged() Returns Type Description System.Boolean | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent e) Parameters Type Name Description KeyEvent e Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source SetSource(IList) Sets the source of the ComboBox to an System.Collections.IList . Declaration public void SetSource(IList source) Parameters Type Name Description System.Collections.IList source Events | Improve this Doc View Source Collapsed This event is raised when the drop-down list is collapsed. Declaration public event Action Collapsed Event Type Type Description System.Action | Improve this Doc View Source Expanded This event is raised when the drop-down list is expanded. Declaration public event Action Expanded Event Type Type Description System.Action | Improve this Doc View Source OpenSelectedItem This event is raised when the user Double Clicks on an item or presses ENTER to open the selected item. Declaration public event Action OpenSelectedItem Event Type Type Description System.Action < ListViewItemEventArgs > | Improve this Doc View Source SelectedItemChanged This event is raised when the selected item in the ComboBox has changed. Declaration public event Action SelectedItemChanged Event Type Type Description System.Action < ListViewItemEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Command.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Command.html", - "title": "Enum Command", - "keywords": "Enum Command Actions which can be performed by the application or bound to keys in a View control. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum Command Fields Name Description Accept Accepts the current state (e.g. selection, button press etc) BackTab Inserts a shift tab. BottomEnd Moves to bottom end. BottomEndExtend Extends the selection to the bottom end. Cancel Cancels any current temporary states on the control e.g. expanding a combo list Collapse Collapses a list or item (with subitems) CollapseAll Recursively collapses a list items of their children (if any) Copy Copies the current selection. Cut Cuts the current selection. CutToEndLine Deletes and copies to the clipboard the characters from the current position to the end of the line. CutToStartLine Deletes and copies to the clipboard the characters from the current position to the start of the line. DeleteAll Deletes all objects in the control. DeleteCharLeft Deletes the character on the left. DeleteCharRight Deletes the character on the right. DisableOverwrite Disables overwrite mode ( EnableOverwrite ) EnableOverwrite Enables overwrite mode such that newly typed text overwrites the text that is already there (typically associated with the Insert key). EndOfLine Moves the cursor to the end of line. EndOfLineExtend Extends the selection to the end of line. EndOfPage Moves the cursor to the bottom of page. Expand Expands a list or item (with subitems) ExpandAll Recursively Expands all child items and their child items (if any) KillWordBackwards Deletes the characters backwards. KillWordForwards Deletes the characters forwards. Left Moves the selection left one by the minimum increment supported by the view e.g. single character, cell, item etc. LeftExtend Extends the selection left one by the minimum increment supported by the view e.g. single character, cell, item etc. LeftHome Moves to the left begin. LeftHomeExtend Extends the selection to the left begin. LineDown Moves the caret down one line. LineDownExtend Extends the selection down one line. LineDownToLastBranch Moves the caret down to the last child node of the branch that holds the current selection LineUp Moves the caret up one line. LineUpExtend Extends the selection up one line. LineUpToFirstBranch Moves the caret up to the first child node of the branch that holds the current selection NewLine Inserts a new line. NextView Moves focus to the next view. NextViewOrTop Moves focus to the next view or toplevel (case of Mdi). OpenSelectedItem Open selected item. PageDown Move the page down. PageDownExtend Move the page down increase selection area to cover revealed objects/characters. PageLeft Moves to the left page. PageRight Moves to the right page. PageUp Move the page up. PageUpExtend Move the page up increase selection area to cover revealed objects/characters. Paste Pastes the current selection. PreviousView Moves focuss to the previous view. PreviousViewOrTop Moves focus to the next previous or toplevel (case of Mdi). QuitToplevel Quit a toplevel. Redo Redo changes. Refresh Refresh the application. Right Moves the selection right one by the minimum increment supported by the view e.g. single character, cell, item etc. RightEnd Moves to the right end. RightEndExtend Extends the selection to the right end. RightExtend Extends the selection right one by the minimum increment supported by the view e.g. single character, cell, item etc. ScrollDown Scrolls down one line (without changing the selection). ScrollLeft Scrolls one character to the left ScrollRight Scrolls one character to the right. ScrollUp Scrolls up one line (without changing the selection). SelectAll Selects all objects in the control. StartOfLine Moves the cursor to the start of line. StartOfLineExtend Extends the selection to the start of line. StartOfPage Moves the cursor to the top of page. Suspend Suspend a application (used on Linux). Tab Inserts a tab. ToggleChecked Toggle the checked state. ToggleExpandCollapse Toggles the Expanded or collapsed state of a a list or item (with subitems) ToggleExtend Toggles the extended selection. ToggleOverwrite Toggles overwrite mode such that newly typed text overwrites the text that is already there (typically associated with the Insert key). TopHome Moves to top begin. TopHomeExtend Extends the selection to the top begin. Undo Undo changes. UnixEmulation Unix emulation WordLeft Moves the caret to the start of the previous word. WordLeftExtend Extends the selection to the start of the previous word. WordRight Moves the caret to the start of the next word. WordRightExtend Extends the selection to the start of the next word." - }, - "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html", - "title": "Enum ConsoleDriver.DiagnosticFlags", - "keywords": "Enum ConsoleDriver.DiagnosticFlags Enables diagnostic functions Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax [Flags] public enum DiagnosticFlags : uint Fields Name Description FramePadding When Enabled, DrawWindowFrame(Rect, Int32, Int32, Int32, Int32, Boolean, Boolean, Border) will use 'L', 'R', 'T', and 'B' for padding instead of ' '. FrameRuler When enabled, DrawWindowFrame(Rect, Int32, Int32, Int32, Int32, Boolean, Boolean, Border) will draw a ruler in the frame for any side with a padding value greater than 0. Off All diagnostics off" - }, - "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html", - "title": "Class ConsoleDriver", - "keywords": "Class ConsoleDriver ConsoleDriver is an abstract class that defines the requirements for a console driver. There are currently three implementations: Terminal.Gui.CursesDriver (for Unix and Mac), Terminal.Gui.WindowsDriver , and Terminal.Gui.NetDriver that uses the .NET Console API. Inheritance System.Object ConsoleDriver FakeDriver Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public abstract class ConsoleDriver Fields | Improve this Doc View Source BlocksMeterSegment Blocks Segment indicator for meter views (e.g. ProgressBar . Declaration public Rune BlocksMeterSegment Field Value Type Description System.Rune | Improve this Doc View Source BottomTee The bottom tee. Declaration public Rune BottomTee Field Value Type Description System.Rune | Improve this Doc View Source Checked Checkmark. Declaration public Rune Checked Field Value Type Description System.Rune | Improve this Doc View Source ContinuousMeterSegment Continuous Segment indicator for meter views (e.g. ProgressBar . Declaration public Rune ContinuousMeterSegment Field Value Type Description System.Rune | Improve this Doc View Source Diamond Diamond character Declaration public Rune Diamond Field Value Type Description System.Rune | Improve this Doc View Source DownArrow Down Arrow. Declaration public Rune DownArrow Field Value Type Description System.Rune | Improve this Doc View Source HDLine Horizontal double line character. Declaration public Rune HDLine Field Value Type Description System.Rune | Improve this Doc View Source HLine Horizontal line character. Declaration public Rune HLine Field Value Type Description System.Rune | Improve this Doc View Source HRLine Horizontal line character for rounded corners. Declaration public Rune HRLine Field Value Type Description System.Rune | Improve this Doc View Source LeftArrow Left Arrow. Declaration public Rune LeftArrow Field Value Type Description System.Rune | Improve this Doc View Source LeftBracket Left frame/bracket (e.g. '[' for Button ). Declaration public Rune LeftBracket Field Value Type Description System.Rune | Improve this Doc View Source LeftDefaultIndicator Left indicator for default action (e.g. for Button ). Declaration public Rune LeftDefaultIndicator Field Value Type Description System.Rune | Improve this Doc View Source LeftTee Left tee Declaration public Rune LeftTee Field Value Type Description System.Rune | Improve this Doc View Source LLCorner Lower left corner Declaration public Rune LLCorner Field Value Type Description System.Rune | Improve this Doc View Source LLDCorner Lower left double corner Declaration public Rune LLDCorner Field Value Type Description System.Rune | Improve this Doc View Source LLRCorner Lower left rounded corner Declaration public Rune LLRCorner Field Value Type Description System.Rune | Improve this Doc View Source LRCorner Lower right corner Declaration public Rune LRCorner Field Value Type Description System.Rune | Improve this Doc View Source LRDCorner Lower right double corner Declaration public Rune LRDCorner Field Value Type Description System.Rune | Improve this Doc View Source LRRCorner Lower right rounded corner Declaration public Rune LRRCorner Field Value Type Description System.Rune | Improve this Doc View Source RightArrow Right Arrow. Declaration public Rune RightArrow Field Value Type Description System.Rune | Improve this Doc View Source RightBracket Right frame/bracket (e.g. ']' for Button ). Declaration public Rune RightBracket Field Value Type Description System.Rune | Improve this Doc View Source RightDefaultIndicator Right indicator for default action (e.g. for Button ). Declaration public Rune RightDefaultIndicator Field Value Type Description System.Rune | Improve this Doc View Source RightTee Right tee Declaration public Rune RightTee Field Value Type Description System.Rune | Improve this Doc View Source Selected Selected mark. Declaration public Rune Selected Field Value Type Description System.Rune | Improve this Doc View Source Stipple Stipple pattern Declaration public Rune Stipple Field Value Type Description System.Rune | Improve this Doc View Source TerminalResized The handler fired when the terminal is resized. Declaration protected Action TerminalResized Field Value Type Description System.Action | Improve this Doc View Source TopTee Top tee Declaration public Rune TopTee Field Value Type Description System.Rune | Improve this Doc View Source ULCorner Upper left corner Declaration public Rune ULCorner Field Value Type Description System.Rune | Improve this Doc View Source ULDCorner Upper left double corner Declaration public Rune ULDCorner Field Value Type Description System.Rune | Improve this Doc View Source ULRCorner Upper left rounded corner Declaration public Rune ULRCorner Field Value Type Description System.Rune | Improve this Doc View Source UnChecked Un-checked checkmark. Declaration public Rune UnChecked Field Value Type Description System.Rune | Improve this Doc View Source UnSelected Un-selected selected mark. Declaration public Rune UnSelected Field Value Type Description System.Rune | Improve this Doc View Source UpArrow Up Arrow. Declaration public Rune UpArrow Field Value Type Description System.Rune | Improve this Doc View Source URCorner Upper right corner Declaration public Rune URCorner Field Value Type Description System.Rune | Improve this Doc View Source URDCorner Upper right double corner Declaration public Rune URDCorner Field Value Type Description System.Rune | Improve this Doc View Source URRCorner Upper right rounded corner Declaration public Rune URRCorner Field Value Type Description System.Rune | Improve this Doc View Source VDLine Vertical double line character. Declaration public Rune VDLine Field Value Type Description System.Rune | Improve this Doc View Source VLine Vertical line character. Declaration public Rune VLine Field Value Type Description System.Rune | Improve this Doc View Source VRLine Vertical line character for rounded corners. Declaration public Rune VRLine Field Value Type Description System.Rune Properties | Improve this Doc View Source Clip Controls the current clipping region that AddRune/AddStr is subject to. Declaration public Rect Clip { get; set; } Property Value Type Description Rect The clip. | Improve this Doc View Source Clipboard Get the operation system clipboard. Declaration public abstract IClipboard Clipboard { get; } Property Value Type Description IClipboard | Improve this Doc View Source Cols The current number of columns in the terminal. Declaration public abstract int Cols { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Contents The format is rows, columns and 3 values on the last column: Rune, Attribute and Dirty Flag Declaration public virtual int[,, ] Contents { get; } Property Value Type Description System.Int32 [,,] | Improve this Doc View Source Diagnostics Set flags to enable/disable ConsoleDriver diagnostics. Declaration public static ConsoleDriver.DiagnosticFlags Diagnostics { get; set; } Property Value Type Description ConsoleDriver.DiagnosticFlags | Improve this Doc View Source HeightAsBuffer If false height is measured by the window height and thus no scrolling. If true then height is measured by the buffer height, enabling scrolling. Declaration public abstract bool HeightAsBuffer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Left The current left in the terminal. Declaration public abstract int Left { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Rows The current number of rows in the terminal. Declaration public abstract int Rows { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Top The current top in the terminal. Declaration public abstract int Top { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source AddRune(Rune) Adds the specified rune to the display at the current cursor position Declaration public abstract void AddRune(Rune rune) Parameters Type Name Description System.Rune rune Rune to add. | Improve this Doc View Source AddStr(ustring) Adds the specified Declaration public abstract void AddStr(ustring str) Parameters Type Name Description NStack.ustring str String. | Improve this Doc View Source CookMouse() Enables the cooked event processing from the mouse driver Declaration public abstract void CookMouse() | Improve this Doc View Source CreateColors(Boolean) Create all Colors with the ColorScheme for the console driver. Declaration public void CreateColors(bool hasColors = true) Parameters Type Name Description System.Boolean hasColors Flag indicating if colors are supported. | Improve this Doc View Source DrawFrame(Rect, Int32, Boolean) Draws a frame on the specified region with the specified padding around the frame. Declaration public virtual void DrawFrame(Rect region, int padding, bool fill) Parameters Type Name Description Rect region Screen relative region where the frame will be drawn. System.Int32 padding Padding to add on the sides. System.Boolean fill If set to true it will clear the contents with the current color, otherwise the contents will be left untouched. | Improve this Doc View Source DrawWindowFrame(Rect, Int32, Int32, Int32, Int32, Boolean, Boolean, Border) Draws a frame for a window with padding and an optional visible border inside the padding. Declaration public virtual void DrawWindowFrame(Rect region, int paddingLeft = 0, int paddingTop = 0, int paddingRight = 0, int paddingBottom = 0, bool border = true, bool fill = false, Border borderContent = null) Parameters Type Name Description Rect region Screen relative region where the frame will be drawn. System.Int32 paddingLeft Number of columns to pad on the left (if 0 the border will not appear on the left). System.Int32 paddingTop Number of rows to pad on the top (if 0 the border and title will not appear on the top). System.Int32 paddingRight Number of columns to pad on the right (if 0 the border will not appear on the right). System.Int32 paddingBottom Number of rows to pad on the bottom (if 0 the border will not appear on the bottom). System.Boolean border If set to true and any padding dimension is > 0 the border will be drawn. System.Boolean fill If set to true it will clear the content area (the area inside the padding) with the current color, otherwise the content area will be left untouched. Border borderContent The Border to be used if defined. | Improve this Doc View Source DrawWindowTitle(Rect, ustring, Int32, Int32, Int32, Int32, TextAlignment) Draws the title for a Window-style view incorporating padding. Declaration public virtual void DrawWindowTitle(Rect region, ustring title, int paddingLeft, int paddingTop, int paddingRight, int paddingBottom, TextAlignment textAlignment = TextAlignment.Left) Parameters Type Name Description Rect region Screen relative region where the frame will be drawn. NStack.ustring title The title for the window. The title will only be drawn if title is not null or empty and paddingTop is greater than 0. System.Int32 paddingLeft Number of columns to pad on the left (if 0 the border will not appear on the left). System.Int32 paddingTop Number of rows to pad on the top (if 0 the border and title will not appear on the top). System.Int32 paddingRight Number of columns to pad on the right (if 0 the border will not appear on the right). System.Int32 paddingBottom Number of rows to pad on the bottom (if 0 the border will not appear on the bottom). TextAlignment textAlignment Not yet implemented. | Improve this Doc View Source End() Ends the execution of the console driver. Declaration public abstract void End() | Improve this Doc View Source EnsureCursorVisibility() Ensure the cursor visibility Declaration public abstract bool EnsureCursorVisibility() Returns Type Description System.Boolean true upon success | Improve this Doc View Source GetAttribute() Gets the current Attribute . Declaration public abstract Attribute GetAttribute() Returns Type Description Attribute The current attribute. | Improve this Doc View Source GetColors(Int32, out Color, out Color) Gets the foreground and background colors based on the value. Declaration public abstract bool GetColors(int value, out Color foreground, out Color background) Parameters Type Name Description System.Int32 value The value. Color foreground The foreground. Color background The background. Returns Type Description System.Boolean | Improve this Doc View Source GetCursorVisibility(out CursorVisibility) Retreive the cursor caret visibility Declaration public abstract bool GetCursorVisibility(out CursorVisibility visibility) Parameters Type Name Description CursorVisibility visibility The current CursorVisibility Returns Type Description System.Boolean true upon success | Improve this Doc View Source Init(Action) Initializes the driver Declaration public abstract void Init(Action terminalResized) Parameters Type Name Description System.Action terminalResized Method to invoke when the terminal is resized. | Improve this Doc View Source IsValidContent(Int32, Int32, Rect) Ensures that the column and line are in a valid range from the size of the driver. Declaration public bool IsValidContent(int col, int row, Rect clip) Parameters Type Name Description System.Int32 col The column. System.Int32 row The row. Rect clip The clip. Returns Type Description System.Boolean true if it's a valid range, false otherwise. | Improve this Doc View Source MakeAttribute(Color, Color) Make the attribute for the foreground and background colors. Declaration public abstract Attribute MakeAttribute(Color fore, Color back) Parameters Type Name Description Color fore Foreground. Color back Background. Returns Type Description Attribute | Improve this Doc View Source MakeColor(Color, Color) Make the Colors for the ColorScheme . Declaration public abstract Attribute MakeColor(Color foreground, Color background) Parameters Type Name Description Color foreground The foreground color. Color background The background color. Returns Type Description Attribute The attribute for the foreground and background colors. | Improve this Doc View Source MakePrintable(Rune) Ensures a Rune is not a control character and can be displayed by translating characters below 0x20 to equivalent, printable, Unicode chars. Declaration public static Rune MakePrintable(Rune c) Parameters Type Name Description System.Rune c Rune to translate Returns Type Description System.Rune | Improve this Doc View Source Move(Int32, Int32) Moves the cursor to the specified column and row. Declaration public abstract void Move(int col, int row) Parameters Type Name Description System.Int32 col Column to move the cursor to. System.Int32 row Row to move the cursor to. | Improve this Doc View Source PrepareToRun(MainLoop, Action, Action, Action, Action) Prepare the driver and set the key and mouse events handlers. Declaration public abstract void PrepareToRun(MainLoop mainLoop, Action keyHandler, Action keyDownHandler, Action keyUpHandler, Action mouseHandler) Parameters Type Name Description MainLoop mainLoop The main loop. System.Action < KeyEvent > keyHandler The handler for ProcessKey System.Action < KeyEvent > keyDownHandler The handler for key down events System.Action < KeyEvent > keyUpHandler The handler for key up events System.Action < MouseEvent > mouseHandler The handler for mouse events | Improve this Doc View Source Refresh() Updates the screen to reflect all the changes that have been done to the display buffer Declaration public abstract void Refresh() | Improve this Doc View Source ResizeScreen() Resizes the clip area when the screen is resized. Declaration public abstract void ResizeScreen() | Improve this Doc View Source SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) Allows sending keys without typing on a keyboard. Declaration public abstract void SendKeys(char keyChar, ConsoleKey key, bool shift, bool alt, bool control) Parameters Type Name Description System.Char keyChar The character key. System.ConsoleKey key The key. System.Boolean shift If shift key is sending. System.Boolean alt If alt key is sending. System.Boolean control If control key is sending. | Improve this Doc View Source SetAttribute(Attribute) Selects the specified attribute as the attribute to use for future calls to AddRune, AddString. Declaration public abstract void SetAttribute(Attribute c) Parameters Type Name Description Attribute c C. | Improve this Doc View Source SetColors(ConsoleColor, ConsoleColor) Set Colors from limit sets of colors. Declaration public abstract void SetColors(ConsoleColor foreground, ConsoleColor background) Parameters Type Name Description System.ConsoleColor foreground Foreground. System.ConsoleColor background Background. | Improve this Doc View Source SetColors(Int16, Int16) Advanced uses - set colors to any pre-set pairs, you would need to init_color that independently with the R, G, B values. Declaration public abstract void SetColors(short foregroundColorId, short backgroundColorId) Parameters Type Name Description System.Int16 foregroundColorId Foreground color identifier. System.Int16 backgroundColorId Background color identifier. | Improve this Doc View Source SetCursorVisibility(CursorVisibility) Change the cursor caret visibility Declaration public abstract bool SetCursorVisibility(CursorVisibility visibility) Parameters Type Name Description CursorVisibility visibility The wished CursorVisibility Returns Type Description System.Boolean true upon success | Improve this Doc View Source SetTerminalResized(Action) Set the handler when the terminal is resized. Declaration public void SetTerminalResized(Action terminalResized) Parameters Type Name Description System.Action terminalResized | Improve this Doc View Source StartReportingMouseMoves() Start of mouse moves. Declaration public abstract void StartReportingMouseMoves() | Improve this Doc View Source StopReportingMouseMoves() Stop reporting mouses moves. Declaration public abstract void StopReportingMouseMoves() | Improve this Doc View Source Suspend() Suspend the application, typically needs to save the state, suspend the app and upon return, reset the console driver. Declaration public abstract void Suspend() | Improve this Doc View Source UncookMouse() Disables the cooked event processing from the mouse driver. At startup, it is assumed mouse events are cooked. Declaration public abstract void UncookMouse() | Improve this Doc View Source UpdateCursor() Updates the location of the cursor position Declaration public abstract void UpdateCursor() | Improve this Doc View Source UpdateOffScreen() Reset and recreate the contents and the driver buffer. Declaration public abstract void UpdateOffScreen() | Improve this Doc View Source UpdateScreen() Redraws the physical screen with the contents that have been queued up via any of the printing commands. Declaration public abstract void UpdateScreen()" - }, - "api/Terminal.Gui/Terminal.Gui.ContextMenu.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ContextMenu.html", - "title": "Class ContextMenu", - "keywords": "Class ContextMenu A context menu window derived from MenuBar containing menu items which can be opened in any position. Inheritance System.Object ContextMenu Implements System.IDisposable Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public sealed class ContextMenu : IDisposable Constructors | Improve this Doc View Source ContextMenu() Initialize a context menu with empty menu items. Declaration public ContextMenu() | Improve this Doc View Source ContextMenu(Int32, Int32, MenuBarItem) Initialize a context menu with menu items. Declaration public ContextMenu(int x, int y, MenuBarItem menuItems) Parameters Type Name Description System.Int32 x The left position. System.Int32 y The top position. MenuBarItem menuItems The menu items. | Improve this Doc View Source ContextMenu(View, MenuBarItem) Initialize a context menu with menu items from a host View . Declaration public ContextMenu(View host, MenuBarItem menuItems) Parameters Type Name Description View host The host view. MenuBarItem menuItems The menu items. Properties | Improve this Doc View Source ForceMinimumPosToZero Gets or sets whether forces the minimum position to zero if the left or right position are negative. Declaration public bool ForceMinimumPosToZero { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Host The host View which position will be used, otherwise if it's null the container will be used. Declaration public View Host { get; set; } Property Value Type Description View | Improve this Doc View Source IsShow Gets information whether menu is showing or not. Declaration public static bool IsShow { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Key The Key used to activate the context menu by keyboard. Declaration public Key Key { get; set; } Property Value Type Description Key | Improve this Doc View Source MenuBar Gets the MenuBar that is hosting this context menu. Declaration public MenuBar MenuBar { get; } Property Value Type Description MenuBar | Improve this Doc View Source MenuItems Gets or sets the menu items for this context menu. Declaration public MenuBarItem MenuItems { get; set; } Property Value Type Description MenuBarItem | Improve this Doc View Source MouseFlags The MouseFlags used to activate the context menu by mouse. Declaration public MouseFlags MouseFlags { get; set; } Property Value Type Description MouseFlags | Improve this Doc View Source Position Gets or set the menu position. Declaration public Point Position { get; set; } Property Value Type Description Point | Improve this Doc View Source UseSubMenusSingleFrame Gets or sets if the sub-menus must be displayed in a single or multiple frames. Declaration public bool UseSubMenusSingleFrame { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source Dispose() Disposes the all the context menu objects instances. Declaration public void Dispose() | Improve this Doc View Source Hide() Close the MenuItems menu items. Declaration public void Hide() | Improve this Doc View Source Show() Open the MenuItems menu items. Declaration public void Show() Events | Improve this Doc View Source KeyChanged Event invoked when the Key is changed. Declaration public event Action KeyChanged Event Type Type Description System.Action < Key > | Improve this Doc View Source MouseFlagsChanged Event invoked when the MouseFlags is changed. Declaration public event Action MouseFlagsChanged Event Type Type Description System.Action < MouseFlags > Implements System.IDisposable" - }, - "api/Terminal.Gui/Terminal.Gui.CursorVisibility.html": { - "href": "api/Terminal.Gui/Terminal.Gui.CursorVisibility.html", - "title": "Enum CursorVisibility", - "keywords": "Enum CursorVisibility Cursors Visibility that are displayed Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum CursorVisibility Fields Name Description Box Cursor caret is displayed as a blinking block ▉ BoxFix Cursor caret is displayed a block ▉ Default Cursor caret has default Invisible Cursor caret is hidden Underline Cursor caret is normally shown as a blinking underline bar _ UnderlineFix Cursor caret is normally shown as a underline bar _ Vertical Cursor caret is displayed a blinking vertical bar | VerticalFix Cursor caret is displayed a blinking vertical bar |" - }, - "api/Terminal.Gui/Terminal.Gui.DateField.html": { - "href": "api/Terminal.Gui/Terminal.Gui.DateField.html", - "title": "Class DateField", - "keywords": "Class DateField Simple Date editing View Inheritance System.Object Responder View TextField DateField Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The DateField View provides date editing functionality with mouse support. Inherited Members TextField.Used TextField.ReadOnly TextField.TextChanging TextField.TextChanged TextField.OnLeave(View) TextField.Autocomplete TextField.Frame TextField.Text TextField.Secret TextField.ScrollOffset TextField.IsDirty TextField.HasHistoryChanges TextField.ContextMenu TextField.PositionCursor() TextField.Redraw(Rect) TextField.GetNormalColor() TextField.CanFocus TextField.KillWordBackwards() TextField.KillWordForwards() TextField.SelectAll() TextField.DeleteAll() TextField.SelectedStart TextField.SelectedLength TextField.SelectedText TextField.ClearAllSelection() TextField.Copy() TextField.Cut() TextField.Paste() TextField.OnTextChanging(ustring) TextField.DesiredCursorVisibility TextField.OnEnter(View) TextField.InsertText(String, Boolean) TextField.ClearHistoryChanges() View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class DateField : TextField, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source DateField() Initializes a new instance of DateField using Computed layout. Declaration public DateField() | Improve this Doc View Source DateField(DateTime) Initializes a new instance of DateField using Computed layout. Declaration public DateField(DateTime date) Parameters Type Name Description System.DateTime date | Improve this Doc View Source DateField(Int32, Int32, DateTime, Boolean) Initializes a new instance of DateField using Absolute layout. Declaration public DateField(int x, int y, DateTime date, bool isShort = false) Parameters Type Name Description System.Int32 x The x coordinate. System.Int32 y The y coordinate. System.DateTime date Initial date contents. System.Boolean isShort If true, shows only two digits for the year. Properties | Improve this Doc View Source CursorPosition Declaration public override int CursorPosition { get; set; } Property Value Type Description System.Int32 Overrides TextField.CursorPosition | Improve this Doc View Source Date Gets or sets the date of the DateField . Declaration public DateTime Date { get; set; } Property Value Type Description System.DateTime | Improve this Doc View Source IsShortFormat Get or set the date format for the widget. Declaration public bool IsShortFormat { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source DeleteCharLeft(Boolean) Declaration public override void DeleteCharLeft(bool useOldCursorPos = true) Parameters Type Name Description System.Boolean useOldCursorPos Overrides TextField.DeleteCharLeft(Boolean) | Improve this Doc View Source DeleteCharRight() Declaration public override void DeleteCharRight() Overrides TextField.DeleteCharRight() | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent ev) Parameters Type Name Description MouseEvent ev Returns Type Description System.Boolean Overrides TextField.MouseEvent(MouseEvent) | Improve this Doc View Source OnDateChanged(DateTimeEventArgs) Event firing method for the DateChanged event. Declaration public virtual void OnDateChanged(DateTimeEventArgs args) Parameters Type Name Description DateTimeEventArgs < System.DateTime > args Event arguments | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides TextField.ProcessKey(KeyEvent) Events | Improve this Doc View Source DateChanged DateChanged event, raised when the Date property has changed. Declaration public event Action> DateChanged Event Type Type Description System.Action < DateTimeEventArgs < System.DateTime >> Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html", - "title": "Class DateTimeEventArgs", - "keywords": "Class DateTimeEventArgs Defines the event arguments for DateChanged and TimeChanged events. Inheritance System.Object System.EventArgs DateTimeEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class DateTimeEventArgs : EventArgs Type Parameters Name Description T Constructors | Improve this Doc View Source DateTimeEventArgs(T, T, String) Initializes a new instance of DateTimeEventArgs Declaration public DateTimeEventArgs(T oldValue, T newValue, string format) Parameters Type Name Description T oldValue The old DateField or TimeField value. T newValue The new DateField or TimeField value. System.String format The DateField or TimeField format string. Properties | Improve this Doc View Source Format The DateField or TimeField format. Declaration public string Format { get; } Property Value Type Description System.String | Improve this Doc View Source NewValue The new DateField or TimeField value. Declaration public T NewValue { get; } Property Value Type Description T | Improve this Doc View Source OldValue The old DateField or TimeField value. Declaration public T OldValue { get; } Property Value Type Description T" - }, - "api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html", - "title": "Enum Dialog.ButtonAlignments", - "keywords": "Enum Dialog.ButtonAlignments Determines the horizontal alignment of the Dialog buttons. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum ButtonAlignments Fields Name Description Center Center-aligns the buttons (the default). Justify Justifies the buttons Left Left-aligns the buttons Right Right-aligns the buttons" - }, - "api/Terminal.Gui/Terminal.Gui.Dialog.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Dialog.html", - "title": "Class Dialog", - "keywords": "Class Dialog The Dialog View is a Window that by default is centered and contains one or more Button s. It defaults to the Dialog color scheme and has a 1 cell padding around the edges. Inheritance System.Object Responder View Toplevel Window Dialog FileDialog Wizard Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks To run the Dialog modally, create the Dialog , and pass it to Run(Func) . This will execute the dialog until it terminates via the [ESC] or [CTRL-Q] key, or when one of the views or buttons added to the dialog calls RequestStop(Toplevel) . Inherited Members Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Dialog : Window, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source Dialog() Initializes a new instance of the Dialog class using Computed . Declaration public Dialog() | Improve this Doc View Source Dialog(ustring, Int32, Int32, Button[]) Initializes a new instance of the Dialog class using Computed positioning and an optional set of Button s to display Declaration public Dialog(ustring title, int width, int height, params Button[] buttons) Parameters Type Name Description NStack.ustring title Title for the dialog. System.Int32 width Width for the dialog. System.Int32 height Height for the dialog. Button [] buttons Optional buttons to lay out at the bottom of the dialog. | Improve this Doc View Source Dialog(ustring, Button[]) Initializes a new instance of the Dialog class using Computed positioning and with an optional set of Button s to display Declaration public Dialog(ustring title, params Button[] buttons) Parameters Type Name Description NStack.ustring title Title for the dialog. Button [] buttons Optional buttons to lay out at the bottom of the dialog. Properties | Improve this Doc View Source ButtonAlignment Determines how the Dialog Button s are aligned along the bottom of the dialog. Declaration public Dialog.ButtonAlignments ButtonAlignment { get; set; } Property Value Type Description Dialog.ButtonAlignments Methods | Improve this Doc View Source AddButton(Button) Adds a Button to the Dialog , its layout will be controlled by the Dialog Declaration public void AddButton(Button button) Parameters Type Name Description Button button Button to add. | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides Toplevel.ProcessKey(KeyEvent) Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Dim.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Dim.html", - "title": "Class Dim", - "keywords": "Class Dim Dim properties of a View to control the position. Inheritance System.Object Dim Remarks Use the Dim objects on the Width or Height properties of a View to control the position. These can be used to set the absolute position, when merely assigning an integer value (via the implicit integer to Pos conversion), and they can be combined to produce more useful layouts, like: Pos.Center - 3, which would shift the position of the View 3 characters to the left after centering for example. Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Dim Methods | Improve this Doc View Source Equals(Object) Determines whether the specified object is equal to the current object. Declaration public override bool Equals(object other) Parameters Type Name Description System.Object other The object to compare with the current object. Returns Type Description System.Boolean true if the specified object is equal to the current object; otherwise, false . Overrides System.Object.Equals(System.Object) | Improve this Doc View Source Fill(Int32) Initializes a new instance of the Dim class that fills the dimension, but leaves the specified number of colums for a margin. Declaration public static Dim Fill(int margin = 0) Parameters Type Name Description System.Int32 margin Margin to use. Returns Type Description Dim The Fill dimension. | Improve this Doc View Source Function(Func) Creates a \"DimFunc\" from the specified function. Declaration public static Dim Function(Func function) Parameters Type Name Description System.Func < System.Int32 > function The function to be executed. Returns Type Description Dim The Dim returned from the function. | Improve this Doc View Source GetHashCode() Serves as the default hash function. Declaration public override int GetHashCode() Returns Type Description System.Int32 A hash code for the current object. Overrides System.Object.GetHashCode() | Improve this Doc View Source Height(View) Returns a Dim object tracks the Height of the specified View . Declaration public static Dim Height(View view) Parameters Type Name Description View view The view that will be tracked. Returns Type Description Dim The Dim of the other View . | Improve this Doc View Source Percent(Single, Boolean) Creates a percentage Dim object Declaration public static Dim Percent(float n, bool r = false) Parameters Type Name Description System.Single n A value between 0 and 100 representing the percentage. System.Boolean r If true the Percent is computed based on the remaining space after the X/Y anchor positions. If false is computed based on the whole original space. Returns Type Description Dim The percent Dim object. | Improve this Doc View Source Sized(Int32) Creates an Absolute Dim from the specified integer value. Declaration public static Dim Sized(int n) Parameters Type Name Description System.Int32 n The value to convert to the Dim . Returns Type Description Dim The Absolute Dim . | Improve this Doc View Source Width(View) Returns a Dim object tracks the Width of the specified View . Declaration public static Dim Width(View view) Parameters Type Name Description View view The view that will be tracked. Returns Type Description Dim The Dim of the other View . Operators | Improve this Doc View Source Addition(Dim, Dim) Adds a Dim to a Dim , yielding a new Dim . Declaration public static Dim operator +(Dim left, Dim right) Parameters Type Name Description Dim left The first Dim to add. Dim right The second Dim to add. Returns Type Description Dim The Dim that is the sum of the values of left and right . | Improve this Doc View Source Implicit(Int32 to Dim) Creates an Absolute Dim from the specified integer value. Declaration public static implicit operator Dim(int n) Parameters Type Name Description System.Int32 n The value to convert to the pos. Returns Type Description Dim The Absolute Dim . | Improve this Doc View Source Subtraction(Dim, Dim) Subtracts a Dim from a Dim , yielding a new Dim . Declaration public static Dim operator -(Dim left, Dim right) Parameters Type Name Description Dim left The Dim to subtract from (the minuend). Dim right The Dim to subtract (the subtrahend). Returns Type Description Dim The Dim that is the left minus right ." - }, - "api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html": { - "href": "api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html", - "title": "Enum DisplayModeLayout", - "keywords": "Enum DisplayModeLayout Used for choose the display mode of this RadioGroup Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum DisplayModeLayout Fields Name Description Horizontal Horizontal mode display. Vertical Vertical mode display. It's the default." - }, - "api/Terminal.Gui/Terminal.Gui.FakeConsole.html": { - "href": "api/Terminal.Gui/Terminal.Gui.FakeConsole.html", - "title": "Class FakeConsole", - "keywords": "Class FakeConsole Inheritance System.Object FakeConsole Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public static class FakeConsole Fields | Improve this Doc View Source HEIGHT Specifies the initial console height. Declaration public const int HEIGHT = 25 Field Value Type Description System.Int32 | Improve this Doc View Source MockKeyPresses Declaration public static Stack MockKeyPresses Field Value Type Description System.Collections.Generic.Stack < System.ConsoleKeyInfo > | Improve this Doc View Source WIDTH Specifies the initial console width. Declaration public const int WIDTH = 80 Field Value Type Description System.Int32 Properties | Improve this Doc View Source BackgroundColor Declaration public static ConsoleColor BackgroundColor { get; set; } Property Value Type Description System.ConsoleColor | Improve this Doc View Source BufferHeight Declaration public static int BufferHeight { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source BufferWidth Declaration public static int BufferWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source CapsLock Declaration public static bool CapsLock { get; } Property Value Type Description System.Boolean | Improve this Doc View Source CursorLeft Declaration public static int CursorLeft { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source CursorSize Declaration public static int CursorSize { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source CursorTop Declaration public static int CursorTop { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source CursorVisible Declaration public static bool CursorVisible { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Error Declaration public static TextWriter Error { get; } Property Value Type Description System.IO.TextWriter | Improve this Doc View Source ForegroundColor Declaration public static ConsoleColor ForegroundColor { get; set; } Property Value Type Description System.ConsoleColor | Improve this Doc View Source In Declaration public static TextReader In { get; } Property Value Type Description System.IO.TextReader | Improve this Doc View Source InputEncoding Declaration public static Encoding InputEncoding { get; set; } Property Value Type Description System.Text.Encoding | Improve this Doc View Source IsErrorRedirected Declaration public static bool IsErrorRedirected { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsInputRedirected Declaration public static bool IsInputRedirected { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsOutputRedirected Declaration public static bool IsOutputRedirected { get; } Property Value Type Description System.Boolean | Improve this Doc View Source KeyAvailable Declaration public static bool KeyAvailable { get; } Property Value Type Description System.Boolean | Improve this Doc View Source LargestWindowHeight Declaration public static int LargestWindowHeight { get; } Property Value Type Description System.Int32 | Improve this Doc View Source LargestWindowWidth Declaration public static int LargestWindowWidth { get; } Property Value Type Description System.Int32 | Improve this Doc View Source NumberLock Declaration public static bool NumberLock { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Out Declaration public static TextWriter Out { get; } Property Value Type Description System.IO.TextWriter | Improve this Doc View Source OutputEncoding Declaration public static Encoding OutputEncoding { get; set; } Property Value Type Description System.Text.Encoding | Improve this Doc View Source Title Declaration public static string Title { get; set; } Property Value Type Description System.String | Improve this Doc View Source TreatControlCAsInput Declaration public static bool TreatControlCAsInput { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source WindowHeight Declaration public static int WindowHeight { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source WindowLeft Declaration public static int WindowLeft { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source WindowTop Declaration public static int WindowTop { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source WindowWidth Declaration public static int WindowWidth { get; set; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source Beep() Declaration public static void Beep() | Improve this Doc View Source Beep(Int32, Int32) Declaration public static void Beep(int frequency, int duration) Parameters Type Name Description System.Int32 frequency System.Int32 duration | Improve this Doc View Source Clear() Declaration public static void Clear() | Improve this Doc View Source MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32) Declaration public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop) Parameters Type Name Description System.Int32 sourceLeft System.Int32 sourceTop System.Int32 sourceWidth System.Int32 sourceHeight System.Int32 targetLeft System.Int32 targetTop | Improve this Doc View Source MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32, Char, ConsoleColor, ConsoleColor) Declaration public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop, char sourceChar, ConsoleColor sourceForeColor, ConsoleColor sourceBackColor) Parameters Type Name Description System.Int32 sourceLeft System.Int32 sourceTop System.Int32 sourceWidth System.Int32 sourceHeight System.Int32 targetLeft System.Int32 targetTop System.Char sourceChar System.ConsoleColor sourceForeColor System.ConsoleColor sourceBackColor | Improve this Doc View Source OpenStandardError() Declaration public static Stream OpenStandardError() Returns Type Description System.IO.Stream | Improve this Doc View Source OpenStandardError(Int32) Declaration public static Stream OpenStandardError(int bufferSize) Parameters Type Name Description System.Int32 bufferSize Returns Type Description System.IO.Stream | Improve this Doc View Source OpenStandardInput() Declaration public static Stream OpenStandardInput() Returns Type Description System.IO.Stream | Improve this Doc View Source OpenStandardInput(Int32) Declaration public static Stream OpenStandardInput(int bufferSize) Parameters Type Name Description System.Int32 bufferSize Returns Type Description System.IO.Stream | Improve this Doc View Source OpenStandardOutput() Declaration public static Stream OpenStandardOutput() Returns Type Description System.IO.Stream | Improve this Doc View Source OpenStandardOutput(Int32) Declaration public static Stream OpenStandardOutput(int bufferSize) Parameters Type Name Description System.Int32 bufferSize Returns Type Description System.IO.Stream | Improve this Doc View Source Read() Declaration public static int Read() Returns Type Description System.Int32 | Improve this Doc View Source ReadKey() Declaration public static ConsoleKeyInfo ReadKey() Returns Type Description System.ConsoleKeyInfo | Improve this Doc View Source ReadKey(Boolean) Declaration public static ConsoleKeyInfo ReadKey(bool intercept) Parameters Type Name Description System.Boolean intercept Returns Type Description System.ConsoleKeyInfo | Improve this Doc View Source ReadLine() Declaration public static string ReadLine() Returns Type Description System.String | Improve this Doc View Source ResetColor() Declaration public static void ResetColor() | Improve this Doc View Source SetBufferSize(Int32, Int32) Declaration public static void SetBufferSize(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height | Improve this Doc View Source SetCursorPosition(Int32, Int32) Declaration public static void SetCursorPosition(int left, int top) Parameters Type Name Description System.Int32 left System.Int32 top | Improve this Doc View Source SetError(TextWriter) Declaration public static void SetError(TextWriter newError) Parameters Type Name Description System.IO.TextWriter newError | Improve this Doc View Source SetIn(TextReader) Declaration public static void SetIn(TextReader newIn) Parameters Type Name Description System.IO.TextReader newIn | Improve this Doc View Source SetOut(TextWriter) Declaration public static void SetOut(TextWriter newOut) Parameters Type Name Description System.IO.TextWriter newOut | Improve this Doc View Source SetWindowPosition(Int32, Int32) Declaration public static void SetWindowPosition(int left, int top) Parameters Type Name Description System.Int32 left System.Int32 top | Improve this Doc View Source SetWindowSize(Int32, Int32) Declaration public static void SetWindowSize(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height | Improve this Doc View Source Write(Boolean) Declaration public static void Write(bool value) Parameters Type Name Description System.Boolean value | Improve this Doc View Source Write(Char) Declaration public static void Write(char value) Parameters Type Name Description System.Char value | Improve this Doc View Source Write(Char[]) Declaration public static void Write(char[] buffer) Parameters Type Name Description System.Char [] buffer | Improve this Doc View Source Write(Char[], Int32, Int32) Declaration public static void Write(char[] buffer, int index, int count) Parameters Type Name Description System.Char [] buffer System.Int32 index System.Int32 count | Improve this Doc View Source Write(Decimal) Declaration public static void Write(decimal value) Parameters Type Name Description System.Decimal value | Improve this Doc View Source Write(Double) Declaration public static void Write(double value) Parameters Type Name Description System.Double value | Improve this Doc View Source Write(Int32) Declaration public static void Write(int value) Parameters Type Name Description System.Int32 value | Improve this Doc View Source Write(Int64) Declaration public static void Write(long value) Parameters Type Name Description System.Int64 value | Improve this Doc View Source Write(Object) Declaration public static void Write(object value) Parameters Type Name Description System.Object value | Improve this Doc View Source Write(Single) Declaration public static void Write(float value) Parameters Type Name Description System.Single value | Improve this Doc View Source Write(String) Declaration public static void Write(string value) Parameters Type Name Description System.String value | Improve this Doc View Source Write(String, Object) Declaration public static void Write(string format, object arg0) Parameters Type Name Description System.String format System.Object arg0 | Improve this Doc View Source Write(String, Object, Object) Declaration public static void Write(string format, object arg0, object arg1) Parameters Type Name Description System.String format System.Object arg0 System.Object arg1 | Improve this Doc View Source Write(String, Object, Object, Object) Declaration public static void Write(string format, object arg0, object arg1, object arg2) Parameters Type Name Description System.String format System.Object arg0 System.Object arg1 System.Object arg2 | Improve this Doc View Source Write(String, Object, Object, Object, Object) Declaration public static void Write(string format, object arg0, object arg1, object arg2, object arg3) Parameters Type Name Description System.String format System.Object arg0 System.Object arg1 System.Object arg2 System.Object arg3 | Improve this Doc View Source Write(String, Object[]) Declaration public static void Write(string format, params object[] arg) Parameters Type Name Description System.String format System.Object [] arg | Improve this Doc View Source Write(UInt32) Declaration public static void Write(uint value) Parameters Type Name Description System.UInt32 value | Improve this Doc View Source Write(UInt64) Declaration public static void Write(ulong value) Parameters Type Name Description System.UInt64 value | Improve this Doc View Source WriteLine() Declaration public static void WriteLine() | Improve this Doc View Source WriteLine(Boolean) Declaration public static void WriteLine(bool value) Parameters Type Name Description System.Boolean value | Improve this Doc View Source WriteLine(Char) Declaration public static void WriteLine(char value) Parameters Type Name Description System.Char value | Improve this Doc View Source WriteLine(Char[]) Declaration public static void WriteLine(char[] buffer) Parameters Type Name Description System.Char [] buffer | Improve this Doc View Source WriteLine(Char[], Int32, Int32) Declaration public static void WriteLine(char[] buffer, int index, int count) Parameters Type Name Description System.Char [] buffer System.Int32 index System.Int32 count | Improve this Doc View Source WriteLine(Decimal) Declaration public static void WriteLine(decimal value) Parameters Type Name Description System.Decimal value | Improve this Doc View Source WriteLine(Double) Declaration public static void WriteLine(double value) Parameters Type Name Description System.Double value | Improve this Doc View Source WriteLine(Int32) Declaration public static void WriteLine(int value) Parameters Type Name Description System.Int32 value | Improve this Doc View Source WriteLine(Int64) Declaration public static void WriteLine(long value) Parameters Type Name Description System.Int64 value | Improve this Doc View Source WriteLine(Object) Declaration public static void WriteLine(object value) Parameters Type Name Description System.Object value | Improve this Doc View Source WriteLine(Single) Declaration public static void WriteLine(float value) Parameters Type Name Description System.Single value | Improve this Doc View Source WriteLine(String) Declaration public static void WriteLine(string value) Parameters Type Name Description System.String value | Improve this Doc View Source WriteLine(String, Object) Declaration public static void WriteLine(string format, object arg0) Parameters Type Name Description System.String format System.Object arg0 | Improve this Doc View Source WriteLine(String, Object, Object) Declaration public static void WriteLine(string format, object arg0, object arg1) Parameters Type Name Description System.String format System.Object arg0 System.Object arg1 | Improve this Doc View Source WriteLine(String, Object, Object, Object) Declaration public static void WriteLine(string format, object arg0, object arg1, object arg2) Parameters Type Name Description System.String format System.Object arg0 System.Object arg1 System.Object arg2 | Improve this Doc View Source WriteLine(String, Object, Object, Object, Object) Declaration public static void WriteLine(string format, object arg0, object arg1, object arg2, object arg3) Parameters Type Name Description System.String format System.Object arg0 System.Object arg1 System.Object arg2 System.Object arg3 | Improve this Doc View Source WriteLine(String, Object[]) Declaration public static void WriteLine(string format, params object[] arg) Parameters Type Name Description System.String format System.Object [] arg | Improve this Doc View Source WriteLine(UInt32) Declaration public static void WriteLine(uint value) Parameters Type Name Description System.UInt32 value | Improve this Doc View Source WriteLine(UInt64) Declaration public static void WriteLine(ulong value) Parameters Type Name Description System.UInt64 value" - }, - "api/Terminal.Gui/Terminal.Gui.FakeDriver.html": { - "href": "api/Terminal.Gui/Terminal.Gui.FakeDriver.html", - "title": "Class FakeDriver", - "keywords": "Class FakeDriver Implements a mock ConsoleDriver for unit testing Inheritance System.Object ConsoleDriver FakeDriver Inherited Members ConsoleDriver.TerminalResized ConsoleDriver.MakePrintable(Rune) ConsoleDriver.IsValidContent(Int32, Int32, Rect) ConsoleDriver.SetTerminalResized(Action) ConsoleDriver.DrawWindowTitle(Rect, ustring, Int32, Int32, Int32, Int32, TextAlignment) ConsoleDriver.Diagnostics ConsoleDriver.DrawWindowFrame(Rect, Int32, Int32, Int32, Int32, Boolean, Boolean, Border) ConsoleDriver.DrawFrame(Rect, Int32, Boolean) ConsoleDriver.Clip ConsoleDriver.HLine ConsoleDriver.VLine ConsoleDriver.Stipple ConsoleDriver.Diamond ConsoleDriver.ULCorner ConsoleDriver.LLCorner ConsoleDriver.URCorner ConsoleDriver.LRCorner ConsoleDriver.LeftTee ConsoleDriver.RightTee ConsoleDriver.TopTee ConsoleDriver.BottomTee ConsoleDriver.Checked ConsoleDriver.UnChecked ConsoleDriver.Selected ConsoleDriver.UnSelected ConsoleDriver.RightArrow ConsoleDriver.LeftArrow ConsoleDriver.DownArrow ConsoleDriver.UpArrow ConsoleDriver.LeftDefaultIndicator ConsoleDriver.RightDefaultIndicator ConsoleDriver.LeftBracket ConsoleDriver.RightBracket ConsoleDriver.BlocksMeterSegment ConsoleDriver.ContinuousMeterSegment ConsoleDriver.HDLine ConsoleDriver.VDLine ConsoleDriver.ULDCorner ConsoleDriver.LLDCorner ConsoleDriver.URDCorner ConsoleDriver.LRDCorner ConsoleDriver.HRLine ConsoleDriver.VRLine ConsoleDriver.ULRCorner ConsoleDriver.LLRCorner ConsoleDriver.URRCorner ConsoleDriver.LRRCorner ConsoleDriver.CreateColors(Boolean) System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class FakeDriver : ConsoleDriver Constructors | Improve this Doc View Source FakeDriver() Declaration public FakeDriver() Properties | Improve this Doc View Source Clipboard Declaration public override IClipboard Clipboard { get; } Property Value Type Description IClipboard Overrides ConsoleDriver.Clipboard | Improve this Doc View Source Cols Declaration public override int Cols { get; } Property Value Type Description System.Int32 Overrides ConsoleDriver.Cols | Improve this Doc View Source Contents Assists with testing, the format is rows, columns and 3 values on the last column: Rune, Attribute and Dirty Flag Declaration public override int[,, ] Contents { get; } Property Value Type Description System.Int32 [,,] Overrides ConsoleDriver.Contents | Improve this Doc View Source HeightAsBuffer Declaration public override bool HeightAsBuffer { get; set; } Property Value Type Description System.Boolean Overrides ConsoleDriver.HeightAsBuffer | Improve this Doc View Source Left Declaration public override int Left { get; } Property Value Type Description System.Int32 Overrides ConsoleDriver.Left | Improve this Doc View Source Rows Declaration public override int Rows { get; } Property Value Type Description System.Int32 Overrides ConsoleDriver.Rows | Improve this Doc View Source Top Declaration public override int Top { get; } Property Value Type Description System.Int32 Overrides ConsoleDriver.Top Methods | Improve this Doc View Source AddRune(Rune) Declaration public override void AddRune(Rune rune) Parameters Type Name Description System.Rune rune Overrides ConsoleDriver.AddRune(Rune) | Improve this Doc View Source AddStr(ustring) Declaration public override void AddStr(ustring str) Parameters Type Name Description NStack.ustring str Overrides ConsoleDriver.AddStr(ustring) | Improve this Doc View Source CookMouse() Declaration public override void CookMouse() Overrides ConsoleDriver.CookMouse() | Improve this Doc View Source End() Declaration public override void End() Overrides ConsoleDriver.End() | Improve this Doc View Source EnsureCursorVisibility() Declaration public override bool EnsureCursorVisibility() Returns Type Description System.Boolean Overrides ConsoleDriver.EnsureCursorVisibility() | Improve this Doc View Source GetAttribute() Declaration public override Attribute GetAttribute() Returns Type Description Attribute Overrides ConsoleDriver.GetAttribute() | Improve this Doc View Source GetColors(Int32, out Color, out Color) Declaration public override bool GetColors(int value, out Color foreground, out Color background) Parameters Type Name Description System.Int32 value Color foreground Color background Returns Type Description System.Boolean Overrides ConsoleDriver.GetColors(Int32, out Color, out Color) | Improve this Doc View Source GetCursorVisibility(out CursorVisibility) Declaration public override bool GetCursorVisibility(out CursorVisibility visibility) Parameters Type Name Description CursorVisibility visibility Returns Type Description System.Boolean Overrides ConsoleDriver.GetCursorVisibility(out CursorVisibility) | Improve this Doc View Source Init(Action) Declaration public override void Init(Action terminalResized) Parameters Type Name Description System.Action terminalResized Overrides ConsoleDriver.Init(Action) | Improve this Doc View Source MakeAttribute(Color, Color) Declaration public override Attribute MakeAttribute(Color fore, Color back) Parameters Type Name Description Color fore Color back Returns Type Description Attribute Overrides ConsoleDriver.MakeAttribute(Color, Color) | Improve this Doc View Source MakeColor(Color, Color) Declaration public override Attribute MakeColor(Color foreground, Color background) Parameters Type Name Description Color foreground Color background Returns Type Description Attribute Overrides ConsoleDriver.MakeColor(Color, Color) | Improve this Doc View Source Move(Int32, Int32) Declaration public override void Move(int col, int row) Parameters Type Name Description System.Int32 col System.Int32 row Overrides ConsoleDriver.Move(Int32, Int32) | Improve this Doc View Source PrepareToRun(MainLoop, Action, Action, Action, Action) Declaration public override void PrepareToRun(MainLoop mainLoop, Action keyHandler, Action keyDownHandler, Action keyUpHandler, Action mouseHandler) Parameters Type Name Description MainLoop mainLoop System.Action < KeyEvent > keyHandler System.Action < KeyEvent > keyDownHandler System.Action < KeyEvent > keyUpHandler System.Action < MouseEvent > mouseHandler Overrides ConsoleDriver.PrepareToRun(MainLoop, Action, Action, Action, Action) | Improve this Doc View Source Refresh() Declaration public override void Refresh() Overrides ConsoleDriver.Refresh() | Improve this Doc View Source ResizeScreen() Declaration public override void ResizeScreen() Overrides ConsoleDriver.ResizeScreen() | Improve this Doc View Source SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) Declaration public override void SendKeys(char keyChar, ConsoleKey key, bool shift, bool alt, bool control) Parameters Type Name Description System.Char keyChar System.ConsoleKey key System.Boolean shift System.Boolean alt System.Boolean control Overrides ConsoleDriver.SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) | Improve this Doc View Source SetAttribute(Attribute) Declaration public override void SetAttribute(Attribute c) Parameters Type Name Description Attribute c Overrides ConsoleDriver.SetAttribute(Attribute) | Improve this Doc View Source SetBufferSize(Int32, Int32) Declaration public void SetBufferSize(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height | Improve this Doc View Source SetColors(ConsoleColor, ConsoleColor) Declaration public override void SetColors(ConsoleColor foreground, ConsoleColor background) Parameters Type Name Description System.ConsoleColor foreground System.ConsoleColor background Overrides ConsoleDriver.SetColors(ConsoleColor, ConsoleColor) | Improve this Doc View Source SetColors(Int16, Int16) Declaration public override void SetColors(short foregroundColorId, short backgroundColorId) Parameters Type Name Description System.Int16 foregroundColorId System.Int16 backgroundColorId Overrides ConsoleDriver.SetColors(Int16, Int16) | Improve this Doc View Source SetCursorVisibility(CursorVisibility) Declaration public override bool SetCursorVisibility(CursorVisibility visibility) Parameters Type Name Description CursorVisibility visibility Returns Type Description System.Boolean Overrides ConsoleDriver.SetCursorVisibility(CursorVisibility) | Improve this Doc View Source SetWindowPosition(Int32, Int32) Declaration public void SetWindowPosition(int left, int top) Parameters Type Name Description System.Int32 left System.Int32 top | Improve this Doc View Source SetWindowSize(Int32, Int32) Declaration public void SetWindowSize(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height | Improve this Doc View Source StartReportingMouseMoves() Declaration public override void StartReportingMouseMoves() Overrides ConsoleDriver.StartReportingMouseMoves() | Improve this Doc View Source StopReportingMouseMoves() Declaration public override void StopReportingMouseMoves() Overrides ConsoleDriver.StopReportingMouseMoves() | Improve this Doc View Source Suspend() Declaration public override void Suspend() Overrides ConsoleDriver.Suspend() | Improve this Doc View Source UncookMouse() Declaration public override void UncookMouse() Overrides ConsoleDriver.UncookMouse() | Improve this Doc View Source UpdateCursor() Declaration public override void UpdateCursor() Overrides ConsoleDriver.UpdateCursor() | Improve this Doc View Source UpdateOffScreen() Declaration public override void UpdateOffScreen() Overrides ConsoleDriver.UpdateOffScreen() | Improve this Doc View Source UpdateScreen() Declaration public override void UpdateScreen() Overrides ConsoleDriver.UpdateScreen()" - }, - "api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html": { - "href": "api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html", - "title": "Class FakeMainLoop", - "keywords": "Class FakeMainLoop Mainloop intended to be used with the .NET System.Console API, and can be used on Windows and Unix, it is cross platform but lacks things like file descriptor monitoring. Inheritance System.Object FakeMainLoop Implements IMainLoopDriver Remarks This implementation is used for FakeDriver. Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class FakeMainLoop : IMainLoopDriver Constructors | Improve this Doc View Source FakeMainLoop(Func) Initializes the class. Declaration public FakeMainLoop(Func consoleKeyReaderFn = null) Parameters Type Name Description System.Func < System.ConsoleKeyInfo > consoleKeyReaderFn The method to be called to get a key from the console. Fields | Improve this Doc View Source KeyPressed Invoked when a Key is pressed. Declaration public Action KeyPressed Field Value Type Description System.Action < System.ConsoleKeyInfo > Explicit Interface Implementations | Improve this Doc View Source IMainLoopDriver.EventsPending(Boolean) Declaration bool IMainLoopDriver.EventsPending(bool wait) Parameters Type Name Description System.Boolean wait Returns Type Description System.Boolean | Improve this Doc View Source IMainLoopDriver.MainIteration() Declaration void IMainLoopDriver.MainIteration() | Improve this Doc View Source IMainLoopDriver.Setup(MainLoop) Declaration void IMainLoopDriver.Setup(MainLoop mainLoop) Parameters Type Name Description MainLoop mainLoop | Improve this Doc View Source IMainLoopDriver.Wakeup() Declaration void IMainLoopDriver.Wakeup() Implements IMainLoopDriver" - }, - "api/Terminal.Gui/Terminal.Gui.FileDialog.html": { - "href": "api/Terminal.Gui/Terminal.Gui.FileDialog.html", - "title": "Class FileDialog", - "keywords": "Class FileDialog Base class for the OpenDialog and the SaveDialog Inheritance System.Object Responder View Toplevel Window Dialog FileDialog OpenDialog SaveDialog Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members Dialog.AddButton(Button) Dialog.ButtonAlignment Dialog.ProcessKey(KeyEvent) Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class FileDialog : Dialog, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source FileDialog() Initializes a new FileDialog . Declaration public FileDialog() | Improve this Doc View Source FileDialog(ustring, ustring, ustring, ustring, ustring, List) Initializes a new instance of FileDialog Declaration public FileDialog(ustring title, ustring prompt, ustring nameDirLabel, ustring nameFieldLabel, ustring message, List allowedTypes = null) Parameters Type Name Description NStack.ustring title The title. NStack.ustring prompt The prompt. NStack.ustring nameDirLabel The name of the directory field label. NStack.ustring nameFieldLabel The name of the file field label.. NStack.ustring message The message. System.Collections.Generic.List < System.String > allowedTypes The allowed types. | Improve this Doc View Source FileDialog(ustring, ustring, ustring, ustring, List) Initializes a new instance of FileDialog Declaration public FileDialog(ustring title, ustring prompt, ustring nameFieldLabel, ustring message, List allowedTypes = null) Parameters Type Name Description NStack.ustring title The title. NStack.ustring prompt The prompt. NStack.ustring nameFieldLabel The name of the file field label.. NStack.ustring message The message. System.Collections.Generic.List < System.String > allowedTypes The allowed types. | Improve this Doc View Source FileDialog(ustring, ustring, ustring, List) Initializes a new instance of FileDialog Declaration public FileDialog(ustring title, ustring prompt, ustring message, List allowedTypes) Parameters Type Name Description NStack.ustring title The title. NStack.ustring prompt The prompt. NStack.ustring message The message. System.Collections.Generic.List < System.String > allowedTypes The allowed types. Properties | Improve this Doc View Source AllowedFileTypes The array of filename extensions allowed, or null if all file extensions are allowed. Declaration public string[] AllowedFileTypes { get; set; } Property Value Type Description System.String [] The allowed file types. | Improve this Doc View Source AllowsOtherFileTypes Gets or sets a value indicating whether this FileDialog allows the file to be saved with a different extension Declaration public bool AllowsOtherFileTypes { get; set; } Property Value Type Description System.Boolean true if allows other file types; otherwise, false . | Improve this Doc View Source Canceled Check if the dialog was or not canceled. Declaration public bool Canceled { get; } Property Value Type Description System.Boolean | Improve this Doc View Source CanCreateDirectories Gets or sets a value indicating whether this FileDialog can create directories. Declaration public bool CanCreateDirectories { get; set; } Property Value Type Description System.Boolean true if can create directories; otherwise, false . | Improve this Doc View Source DirectoryPath Gets or sets the directory path for this panel Declaration public ustring DirectoryPath { get; set; } Property Value Type Description NStack.ustring The directory path. | Improve this Doc View Source FilePath The File path that is currently shown on the panel Declaration public ustring FilePath { get; set; } Property Value Type Description NStack.ustring The absolute file path for the file path entered. | Improve this Doc View Source IsExtensionHidden Gets or sets a value indicating whether this FileDialog is extension hidden. Declaration public bool IsExtensionHidden { get; set; } Property Value Type Description System.Boolean true if is extension hidden; otherwise, false . | Improve this Doc View Source Message Gets or sets the message displayed to the user, defaults to nothing Declaration public ustring Message { get; set; } Property Value Type Description NStack.ustring The message. | Improve this Doc View Source NameDirLabel Gets or sets the name of the directory field label. Declaration public ustring NameDirLabel { get; set; } Property Value Type Description NStack.ustring The name of the directory field label. | Improve this Doc View Source NameFieldLabel Gets or sets the name field label. Declaration public ustring NameFieldLabel { get; set; } Property Value Type Description NStack.ustring The name field label. | Improve this Doc View Source Prompt Gets or sets the prompt label for the Button displayed to the user Declaration public ustring Prompt { get; set; } Property Value Type Description NStack.ustring The prompt. Methods | Improve this Doc View Source WillPresent() Declaration public override void WillPresent() Overrides Toplevel.WillPresent() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.FrameView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.FrameView.html", - "title": "Class FrameView", - "keywords": "Class FrameView The FrameView is a container frame that draws a frame around the contents. It is similar to a GroupBox in Windows. Inheritance System.Object Responder View FrameView Wizard.WizardStep Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class FrameView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source FrameView() Initializes a new instance of the FrameView class using Computed layout. Declaration public FrameView() | Improve this Doc View Source FrameView(ustring, Border) Initializes a new instance of the FrameView class using Computed layout. Declaration public FrameView(ustring title, Border border = null) Parameters Type Name Description NStack.ustring title Title. Border border The Border . | Improve this Doc View Source FrameView(Rect, ustring, View[], Border) Initializes a new instance of the FrameView class using Absolute layout. Declaration public FrameView(Rect frame, ustring title = null, View[] views = null, Border border = null) Parameters Type Name Description Rect frame Frame. NStack.ustring title Title. View [] views Views. Border border The Border . Properties | Improve this Doc View Source Border Declaration public override Border Border { get; set; } Property Value Type Description Border Overrides View.Border | Improve this Doc View Source Text The text displayed by the Label . Declaration public override ustring Text { get; set; } Property Value Type Description NStack.ustring Overrides View.Text | Improve this Doc View Source TextAlignment Controls the text-alignment property of the label, changing it will redisplay the Label . Declaration public override TextAlignment TextAlignment { get; set; } Property Value Type Description TextAlignment The text alignment. Overrides View.TextAlignment | Improve this Doc View Source Title The title to be displayed for this FrameView . Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring The title. Methods | Improve this Doc View Source Add(View) Add the specified View to this container. Declaration public override void Add(View view) Parameters Type Name Description View view View to add to this container Overrides View.Add(View) | Improve this Doc View Source OnCanFocusChanged() Declaration public override void OnCanFocusChanged() Overrides View.OnCanFocusChanged() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source Remove(View) Removes a View from this container. Declaration public override void Remove(View view) Parameters Type Name Description View view Overrides View.Remove(View) | Improve this Doc View Source RemoveAll() Removes all View s from this container. Declaration public override void RemoveAll() Overrides View.RemoveAll() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html", - "title": "Class Axis", - "keywords": "Class Axis Renders a continuous line with grid line ticks and labels Inheritance System.Object Axis HorizontalAxis VerticalAxis Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public abstract class Axis Constructors | Improve this Doc View Source Axis(Orientation) Populates base properties and sets the read only Orientation Declaration protected Axis(Orientation orientation) Parameters Type Name Description Orientation orientation Fields | Improve this Doc View Source LabelGetter Allows you to control what label text is rendered for a given Increment when ShowLabelsEvery is above 0 Declaration public LabelGetterDelegate LabelGetter Field Value Type Description LabelGetterDelegate Properties | Improve this Doc View Source Increment Number of units of graph space between ticks on axis. 0 for no ticks Declaration public float Increment { get; set; } Property Value Type Description System.Single | Improve this Doc View Source Minimum The minimum axis point to show. Defaults to null (no minimum) Declaration public float? Minimum { get; set; } Property Value Type Description System.Nullable < System.Single > | Improve this Doc View Source Orientation Direction of the axis Declaration public Orientation Orientation { get; } Property Value Type Description Orientation | Improve this Doc View Source ShowLabelsEvery The number of Increment before an label is added. 0 = never show labels Declaration public uint ShowLabelsEvery { get; set; } Property Value Type Description System.UInt32 | Improve this Doc View Source Text Displayed below/to left of labels (see Orientation ). If text is not visible, check MarginBottom / MarginLeft Declaration public string Text { get; set; } Property Value Type Description System.String | Improve this Doc View Source Visible True to render axis. Defaults to true Declaration public bool Visible { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source DrawAxisLabel(GraphView, Int32, String) Draws a custom label text at screenPosition units along the axis (X or Y depending on Orientation ) Declaration public abstract void DrawAxisLabel(GraphView graph, int screenPosition, string text) Parameters Type Name Description GraphView graph System.Int32 screenPosition System.String text | Improve this Doc View Source DrawAxisLabels(GraphView) Draws labels and axis Increment ticks Declaration public abstract void DrawAxisLabels(GraphView graph) Parameters Type Name Description GraphView graph | Improve this Doc View Source DrawAxisLine(GraphView) Draws the solid line of the axis Declaration public abstract void DrawAxisLine(GraphView graph) Parameters Type Name Description GraphView graph | Improve this Doc View Source DrawAxisLine(GraphView, Int32, Int32) Draws a single cell of the solid line of the axis Declaration protected abstract void DrawAxisLine(GraphView graph, int x, int y) Parameters Type Name Description GraphView graph System.Int32 x System.Int32 y | Improve this Doc View Source Reset() Resets all configurable properties of the axis to default values Declaration public virtual void Reset()" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html", - "title": "Class AxisIncrementToRender", - "keywords": "Class AxisIncrementToRender A location on an axis of a GraphView that may or may not have a label associated with it Inheritance System.Object AxisIncrementToRender Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class AxisIncrementToRender Constructors | Improve this Doc View Source AxisIncrementToRender(Orientation, Int32, Single) Describe a new section of an axis that requires an axis increment symbol and/or label Declaration public AxisIncrementToRender(Orientation orientation, int screen, float value) Parameters Type Name Description Orientation orientation System.Int32 screen System.Single value Properties | Improve this Doc View Source Orientation Direction of the parent axis Declaration public Orientation Orientation { get; } Property Value Type Description Orientation | Improve this Doc View Source ScreenLocation The screen location (X or Y depending on Orientation ) that the increment will be rendered at Declaration public int ScreenLocation { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Value The value at this position on the axis in graph space Declaration public float Value { get; } Property Value Type Description System.Single" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html", - "title": "Class BarSeries.Bar", - "keywords": "Class BarSeries.Bar A single bar in a BarSeries Inheritance System.Object BarSeries.Bar Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class Bar Constructors | Improve this Doc View Source Bar(String, GraphCellToRender, Single) Creates a new instance of a single bar rendered in the given fill that extends out value graph space units in the default Orientation Declaration public Bar(string text, GraphCellToRender fill, float value) Parameters Type Name Description System.String text GraphCellToRender fill System.Single value Properties | Improve this Doc View Source Fill The color and character that will be rendered in the console when the bar extends over it Declaration public GraphCellToRender Fill { get; set; } Property Value Type Description GraphCellToRender | Improve this Doc View Source Text Optional text that describes the bar. This will be rendered on the corresponding Axis unless DrawLabels is false Declaration public string Text { get; set; } Property Value Type Description System.String | Improve this Doc View Source Value The value in graph space X/Y (depending on Orientation ) to which the bar extends. Declaration public float Value { get; } Property Value Type Description System.Single" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html", - "title": "Class BarSeries", - "keywords": "Class BarSeries Series of bars positioned at regular intervals Inheritance System.Object BarSeries Implements ISeries Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class BarSeries : ISeries Properties | Improve this Doc View Source BarEvery Determines the spacing of bars along the axis. Defaults to 1 i.e. every 1 unit of graph space a bar is rendered. Note that you should also consider CellSize when changing this. Declaration public float BarEvery { get; set; } Property Value Type Description System.Single | Improve this Doc View Source Bars Ordered collection of graph bars to position along axis Declaration public List Bars { get; set; } Property Value Type Description System.Collections.Generic.List < BarSeries.Bar > | Improve this Doc View Source DrawLabels True to draw Text along the axis under the bar. Defaults to true. Declaration public bool DrawLabels { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Offset The number of units of graph space along the axis before rendering the first bar (and subsequent bars - see BarEvery ). Defaults to 0 Declaration public float Offset { get; set; } Property Value Type Description System.Single | Improve this Doc View Source Orientation Direction bars protrude from the corresponding axis. Defaults to vertical Declaration public Orientation Orientation { get; set; } Property Value Type Description Orientation | Improve this Doc View Source OverrideBarColor Overrides the Fill with a fixed color Declaration public Attribute? OverrideBarColor { get; set; } Property Value Type Description System.Nullable < Attribute > Methods | Improve this Doc View Source AdjustColor(GraphCellToRender) Applies any color overriding Declaration protected virtual GraphCellToRender AdjustColor(GraphCellToRender graphCellToRender) Parameters Type Name Description GraphCellToRender graphCellToRender Returns Type Description GraphCellToRender | Improve this Doc View Source DrawBarLine(GraphView, Point, Point, BarSeries.Bar) Override to do custom drawing of the bar e.g. to apply varying color or changing the fill symbol mid bar. Declaration protected virtual void DrawBarLine(GraphView graph, Point start, Point end, BarSeries.Bar beingDrawn) Parameters Type Name Description GraphView graph Point start Screen position of the start of the bar Point end Screen position of the end of the bar BarSeries.Bar beingDrawn The Bar that occupies this space and is being drawn | Improve this Doc View Source DrawSeries(GraphView, Rect, RectangleF) Draws bars that are currently in the drawBounds Declaration public virtual void DrawSeries(GraphView graph, Rect drawBounds, RectangleF graphBounds) Parameters Type Name Description GraphView graph Rect drawBounds Screen area of the graph excluding margins RectangleF graphBounds Graph space area that should be drawn into drawBounds Implements ISeries" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html", - "title": "Class GraphCellToRender", - "keywords": "Class GraphCellToRender Describes how to render a single row/column of a GraphView based on the value(s) in ISeries at that location Inheritance System.Object GraphCellToRender Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class GraphCellToRender Constructors | Improve this Doc View Source GraphCellToRender(Rune) Creates instance and sets Rune with default graph coloring Declaration public GraphCellToRender(Rune rune) Parameters Type Name Description System.Rune rune | Improve this Doc View Source GraphCellToRender(Rune, Nullable) Creates instance and sets Rune and Color (or default if null) Declaration public GraphCellToRender(Rune rune, Attribute? color) Parameters Type Name Description System.Rune rune System.Nullable < Attribute > color | Improve this Doc View Source GraphCellToRender(Rune, Attribute) Creates instance and sets Rune with custom graph coloring Declaration public GraphCellToRender(Rune rune, Attribute color) Parameters Type Name Description System.Rune rune Attribute color Properties | Improve this Doc View Source Color Optional color to render the Rune with Declaration public Attribute? Color { get; set; } Property Value Type Description System.Nullable < Attribute > | Improve this Doc View Source Rune The character to render in the console Declaration public Rune Rune { get; set; } Property Value Type Description System.Rune" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html", - "title": "Class HorizontalAxis", - "keywords": "Class HorizontalAxis The horizontal (x axis) of a GraphView Inheritance System.Object Axis HorizontalAxis Inherited Members Axis.Orientation Axis.Increment Axis.ShowLabelsEvery Axis.Visible Axis.LabelGetter Axis.Text Axis.Minimum Axis.Reset() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class HorizontalAxis : Axis Constructors | Improve this Doc View Source HorizontalAxis() Creates a new instance of axis with an Orientation of Horizontal Declaration public HorizontalAxis() Methods | Improve this Doc View Source DrawAxisLabel(GraphView, Int32, String) Draws the given text on the axis at x screenPosition . For the screen y position use GetAxisYPosition(GraphView) Declaration public override void DrawAxisLabel(GraphView graph, int screenPosition, string text) Parameters Type Name Description GraphView graph Graph being drawn onto System.Int32 screenPosition Number of screen columns along the axis to take before rendering System.String text Text to render under the axis tick Overrides Axis.DrawAxisLabel(GraphView, Int32, String) | Improve this Doc View Source DrawAxisLabels(GraphView) Draws the horizontal x axis labels and Increment ticks Declaration public override void DrawAxisLabels(GraphView graph) Parameters Type Name Description GraphView graph Overrides Axis.DrawAxisLabels(GraphView) | Improve this Doc View Source DrawAxisLine(GraphView) Draws the horizontal axis line Declaration public override void DrawAxisLine(GraphView graph) Parameters Type Name Description GraphView graph Overrides Axis.DrawAxisLine(GraphView) | Improve this Doc View Source DrawAxisLine(GraphView, Int32, Int32) Draws a horizontal axis line at the given x , y screen coordinates Declaration protected override void DrawAxisLine(GraphView graph, int x, int y) Parameters Type Name Description GraphView graph System.Int32 x System.Int32 y Overrides Axis.DrawAxisLine(GraphView, Int32, Int32) | Improve this Doc View Source GetAxisYPosition(GraphView) Returns the Y screen position of the origin (typically 0,0) of graph space. Return value is bounded by the screen i.e. the axis is always rendered even if the origin is offscreen. Declaration public int GetAxisYPosition(GraphView graph) Parameters Type Name Description GraphView graph Returns Type Description System.Int32" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.html", - "title": "Namespace Terminal.Gui.Graphs", - "keywords": "Namespace Terminal.Gui.Graphs Classes Axis Renders a continuous line with grid line ticks and labels AxisIncrementToRender A location on an axis of a GraphView that may or may not have a label associated with it BarSeries Series of bars positioned at regular intervals BarSeries.Bar A single bar in a BarSeries GraphCellToRender Describes how to render a single row/column of a GraphView based on the value(s) in ISeries at that location HorizontalAxis The horizontal (x axis) of a GraphView LegendAnnotation A box containing symbol definitions e.g. meanings for colors in a graph. The 'Key' to the graph MultiBarSeries Collection of BarSeries in which bars are clustered by category PathAnnotation Sequence of lines to connect points e.g. of a ScatterSeries PathAnnotation.LineF Describes two points in graph space and a line between them ScatterSeries Series composed of any number of discrete data points TextAnnotation Displays text at a given position (in screen space or graph space) VerticalAxis The vertical (i.e. Y axis) of a GraphView Interfaces IAnnotation Describes an overlay element that is rendered either before or after a series. Annotations can be positioned either in screen space (e.g. a legend) or in graph space (e.g. a line showing high point) Unlike ISeries , annotations are allowed to draw into graph margins ISeries Describes a series of data that can be rendered into a GraphView > Enums Orientation Direction of an element (horizontal or vertical) Delegates LabelGetterDelegate Delegate for custom formatting of axis labels. Determines what should be displayed at a given label" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html", - "title": "Interface IAnnotation", - "keywords": "Interface IAnnotation Describes an overlay element that is rendered either before or after a series. Annotations can be positioned either in screen space (e.g. a legend) or in graph space (e.g. a line showing high point) Unlike ISeries , annotations are allowed to draw into graph margins Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public interface IAnnotation Properties | Improve this Doc View Source BeforeSeries True if annotation should be drawn before ISeries . This allowes Series and later annotations to potentially draw over the top of this annotation. Declaration bool BeforeSeries { get; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source Render(GraphView) Called once after series have been rendered (or before if BeforeSeries is true). Use Driver to draw and Bounds to avoid drawing outside of graph Declaration void Render(GraphView graph) Parameters Type Name Description GraphView graph" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html", - "title": "Interface ISeries", - "keywords": "Interface ISeries Describes a series of data that can be rendered into a GraphView > Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public interface ISeries Methods | Improve this Doc View Source DrawSeries(GraphView, Rect, RectangleF) Draws the graphBounds section of a series into the graph view drawBounds Declaration void DrawSeries(GraphView graph, Rect drawBounds, RectangleF graphBounds) Parameters Type Name Description GraphView graph Graph series is to be drawn onto Rect drawBounds Visible area of the graph in Console Screen units (excluding margins) RectangleF graphBounds Visible area of the graph in Graph space units" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html", - "title": "Delegate LabelGetterDelegate", - "keywords": "Delegate LabelGetterDelegate Delegate for custom formatting of axis labels. Determines what should be displayed at a given label Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public delegate string LabelGetterDelegate(AxisIncrementToRender toRender); Parameters Type Name Description AxisIncrementToRender toRender The axis increment to which the label is attached Returns Type Description System.String" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html", - "title": "Class LegendAnnotation", - "keywords": "Class LegendAnnotation A box containing symbol definitions e.g. meanings for colors in a graph. The 'Key' to the graph Inheritance System.Object LegendAnnotation Implements IAnnotation Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class LegendAnnotation : IAnnotation Constructors | Improve this Doc View Source LegendAnnotation(Rect) Creates a new empty legend at the given screen coordinates Declaration public LegendAnnotation(Rect legendBounds) Parameters Type Name Description Rect legendBounds Defines the area available for the legend to render in (within the graph). This is in screen units (i.e. not graph space) Properties | Improve this Doc View Source BeforeSeries Returns false i.e. Lengends render after series Declaration public bool BeforeSeries { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Border True to draw a solid border around the legend. Defaults to true. This border will be within the Bounds and so reduces the width/height available for text by 2 Declaration public bool Border { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Bounds Defines the screen area available for the legend to render in Declaration public Rect Bounds { get; set; } Property Value Type Description Rect Methods | Improve this Doc View Source AddEntry(GraphCellToRender, String) Adds an entry into the legend. Duplicate entries are permissable Declaration public void AddEntry(GraphCellToRender graphCellToRender, string text) Parameters Type Name Description GraphCellToRender graphCellToRender The symbol appearing on the graph that should appear in the legend System.String text Text to render on this line of the legend. Will be truncated if outside of Legend Bounds | Improve this Doc View Source Render(GraphView) Draws the Legend and all entries into the area within Bounds Declaration public void Render(GraphView graph) Parameters Type Name Description GraphView graph Implements IAnnotation" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html", - "title": "Class MultiBarSeries", - "keywords": "Class MultiBarSeries Collection of BarSeries in which bars are clustered by category Inheritance System.Object MultiBarSeries Implements ISeries Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class MultiBarSeries : ISeries Constructors | Improve this Doc View Source MultiBarSeries(Int32, Single, Single, Attribute[]) Creates a new series of clustered bars. Declaration public MultiBarSeries(int numberOfBarsPerCategory, float barsEvery, float spacing, Attribute[] colors = null) Parameters Type Name Description System.Int32 numberOfBarsPerCategory Each category has this many bars System.Single barsEvery How far appart to put each category (in graph space) System.Single spacing How much spacing between bars in a category (should be less than barsEvery / numberOfBarsPerCategory ) Attribute [] colors Array of colors that define bar color in each category. Length must match numberOfBarsPerCategory Properties | Improve this Doc View Source Spacing The number of units of graph space between bars. Should be less than BarEvery Declaration public float Spacing { get; } Property Value Type Description System.Single | Improve this Doc View Source SubSeries Sub collections. Each series contains the bars for a different category. Thus SubSeries[0].Bars[0] is the first bar on the axis and SubSeries[1].Bars[0] is the second etc Declaration public IReadOnlyCollection SubSeries { get; } Property Value Type Description System.Collections.Generic.IReadOnlyCollection < BarSeries > Methods | Improve this Doc View Source AddBars(String, Rune, Single[]) Adds a new cluster of bars Declaration public void AddBars(string label, Rune fill, params float[] values) Parameters Type Name Description System.String label System.Rune fill System.Single [] values Values for each bar in category, must match the number of bars per category | Improve this Doc View Source DrawSeries(GraphView, Rect, RectangleF) Draws all SubSeries Declaration public void DrawSeries(GraphView graph, Rect drawBounds, RectangleF graphBounds) Parameters Type Name Description GraphView graph Rect drawBounds RectangleF graphBounds Implements ISeries" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html", - "title": "Enum Orientation", - "keywords": "Enum Orientation Direction of an element (horizontal or vertical) Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public enum Orientation Fields Name Description Horizontal Left to right Vertical Bottom to top" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html", - "title": "Class PathAnnotation", - "keywords": "Class PathAnnotation Sequence of lines to connect points e.g. of a ScatterSeries Inheritance System.Object PathAnnotation Implements IAnnotation Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class PathAnnotation : IAnnotation Properties | Improve this Doc View Source BeforeSeries True to add line before plotting series. Defaults to false Declaration public bool BeforeSeries { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source LineColor Color for the line that connects points Declaration public Attribute? LineColor { get; set; } Property Value Type Description System.Nullable < Attribute > | Improve this Doc View Source LineRune The symbol that gets drawn along the line, defaults to '.' Declaration public Rune LineRune { get; set; } Property Value Type Description System.Rune | Improve this Doc View Source Points Points that should be connected. Lines will be drawn between points in the order they appear in the list Declaration public List Points { get; set; } Property Value Type Description System.Collections.Generic.List < PointF > Methods | Improve this Doc View Source Render(GraphView) Draws lines connecting each of the Points Declaration public void Render(GraphView graph) Parameters Type Name Description GraphView graph Implements IAnnotation" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html", - "title": "Class PathAnnotation.LineF", - "keywords": "Class PathAnnotation.LineF Describes two points in graph space and a line between them Inheritance System.Object PathAnnotation.LineF Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class LineF Constructors | Improve this Doc View Source LineF(PointF, PointF) Creates a new line between the points Declaration public LineF(PointF start, PointF end) Parameters Type Name Description PointF start PointF end Properties | Improve this Doc View Source End The end point of the line Declaration public PointF End { get; } Property Value Type Description PointF | Improve this Doc View Source Start The start of the line Declaration public PointF Start { get; } Property Value Type Description PointF" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html", - "title": "Class ScatterSeries", - "keywords": "Class ScatterSeries Series composed of any number of discrete data points Inheritance System.Object ScatterSeries Implements ISeries Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class ScatterSeries : ISeries Properties | Improve this Doc View Source Fill The color and character that will be rendered in the console when there are point(s) in the corresponding graph space. Defaults to uncolored 'x' Declaration public GraphCellToRender Fill { get; set; } Property Value Type Description GraphCellToRender | Improve this Doc View Source Points Collection of each discrete point in the series Declaration public List Points { get; set; } Property Value Type Description System.Collections.Generic.List < PointF > Methods | Improve this Doc View Source DrawSeries(GraphView, Rect, RectangleF) Draws all points directly onto the graph Declaration public void DrawSeries(GraphView graph, Rect drawBounds, RectangleF graphBounds) Parameters Type Name Description GraphView graph Rect drawBounds RectangleF graphBounds Implements ISeries" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html", - "title": "Class TextAnnotation", - "keywords": "Class TextAnnotation Displays text at a given position (in screen space or graph space) Inheritance System.Object TextAnnotation Implements IAnnotation Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class TextAnnotation : IAnnotation Properties | Improve this Doc View Source BeforeSeries True to add text before plotting series. Defaults to false Declaration public bool BeforeSeries { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source GraphPosition The location in graph space to draw the Text . This annotation will only show if the point is in the current viewable area of the graph presented in the GraphView Declaration public PointF GraphPosition { get; set; } Property Value Type Description PointF | Improve this Doc View Source ScreenPosition The location on screen to draw the Text regardless of scroll/zoom settings. This overrides GraphPosition if specified. Declaration public Point? ScreenPosition { get; set; } Property Value Type Description System.Nullable < Point > | Improve this Doc View Source Text Text to display on the graph Declaration public string Text { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source DrawText(GraphView, Int32, Int32) Draws the Text at the given coordinates with truncation to avoid spilling over of the graph Declaration protected void DrawText(GraphView graph, int x, int y) Parameters Type Name Description GraphView graph System.Int32 x Screen x position to start drawing string System.Int32 y Screen y position to start drawing string | Improve this Doc View Source Render(GraphView) Draws the annotation Declaration public void Render(GraphView graph) Parameters Type Name Description GraphView graph Implements IAnnotation" - }, - "api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html", - "title": "Class VerticalAxis", - "keywords": "Class VerticalAxis The vertical (i.e. Y axis) of a GraphView Inheritance System.Object Axis VerticalAxis Inherited Members Axis.Orientation Axis.Increment Axis.ShowLabelsEvery Axis.Visible Axis.LabelGetter Axis.Text Axis.Minimum Axis.Reset() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Graphs Assembly : Terminal.Gui.dll Syntax public class VerticalAxis : Axis Constructors | Improve this Doc View Source VerticalAxis() Creates a new Vertical axis Declaration public VerticalAxis() Methods | Improve this Doc View Source DrawAxisLabel(GraphView, Int32, String) Draws the given text on the axis at y screenPosition . For the screen x position use GetAxisXPosition(GraphView) Declaration public override void DrawAxisLabel(GraphView graph, int screenPosition, string text) Parameters Type Name Description GraphView graph Graph being drawn onto System.Int32 screenPosition Number of rows from the top of the screen (i.e. down the axis) before rendering System.String text Text to render to the left of the axis tick. Ensure to set MarginLeft or ScrollOffset sufficient that it is visible Overrides Axis.DrawAxisLabel(GraphView, Int32, String) | Improve this Doc View Source DrawAxisLabels(GraphView) Draws axis Increment markers and labels Declaration public override void DrawAxisLabels(GraphView graph) Parameters Type Name Description GraphView graph Overrides Axis.DrawAxisLabels(GraphView) | Improve this Doc View Source DrawAxisLine(GraphView) Draws the vertical axis line Declaration public override void DrawAxisLine(GraphView graph) Parameters Type Name Description GraphView graph Overrides Axis.DrawAxisLine(GraphView) | Improve this Doc View Source DrawAxisLine(GraphView, Int32, Int32) Draws a vertical axis line at the given x , y screen coordinates Declaration protected override void DrawAxisLine(GraphView graph, int x, int y) Parameters Type Name Description GraphView graph System.Int32 x System.Int32 y Overrides Axis.DrawAxisLine(GraphView, Int32, Int32) | Improve this Doc View Source GetAxisXPosition(GraphView) Returns the X screen position of the origin (typically 0,0) of graph space. Return value is bounded by the screen i.e. the axis is always rendered even if the origin is offscreen. Declaration public int GetAxisXPosition(GraphView graph) Parameters Type Name Description GraphView graph Returns Type Description System.Int32" - }, - "api/Terminal.Gui/Terminal.Gui.GraphView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.GraphView.html", - "title": "Class GraphView", - "keywords": "Class GraphView Control for rendering graphs (bar, scatter etc) Inheritance System.Object Responder View GraphView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class GraphView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source GraphView() Creates a new graph with a 1 to 1 graph space with absolute layout Declaration public GraphView() Properties | Improve this Doc View Source Annotations Elements drawn into graph after series have been drawn e.g. Legends etc Declaration public List Annotations { get; } Property Value Type Description System.Collections.Generic.List < IAnnotation > | Improve this Doc View Source AxisX Horizontal axis Declaration public HorizontalAxis AxisX { get; set; } Property Value Type Description HorizontalAxis | Improve this Doc View Source AxisY Vertical axis Declaration public VerticalAxis AxisY { get; set; } Property Value Type Description VerticalAxis | Improve this Doc View Source CellSize Translates console width/height into graph space. Defaults to 1 row/col of console space being 1 unit of graph space. Declaration public PointF CellSize { get; set; } Property Value Type Description PointF | Improve this Doc View Source GraphColor The color of the background of the graph and axis/labels Declaration public Attribute? GraphColor { get; set; } Property Value Type Description System.Nullable < Attribute > | Improve this Doc View Source MarginBottom Amount of space to leave on bottom of control. Graph content ( Series ) will not be rendered in margins but axis labels may be Declaration public uint MarginBottom { get; set; } Property Value Type Description System.UInt32 | Improve this Doc View Source MarginLeft Amount of space to leave on left of control. Graph content ( Series ) will not be rendered in margins but axis labels may be Declaration public uint MarginLeft { get; set; } Property Value Type Description System.UInt32 | Improve this Doc View Source ScrollOffset The graph space position of the bottom left of the control. Changing this scrolls the viewport around in the graph Declaration public PointF ScrollOffset { get; set; } Property Value Type Description PointF | Improve this Doc View Source Series Collection of data series that are rendered in the graph Declaration public List Series { get; } Property Value Type Description System.Collections.Generic.List < ISeries > Methods | Improve this Doc View Source DrawLine(Point, Point, Rune) Draws a line between two points in screen space. Can be diagonals. Declaration public void DrawLine(Point start, Point end, Rune symbol) Parameters Type Name Description Point start Point end System.Rune symbol The symbol to use for the line | Improve this Doc View Source GraphSpaceToScreen(PointF) Calculates the screen location for a given point in graph space. Bear in mind these be off screen Declaration public Point GraphSpaceToScreen(PointF location) Parameters Type Name Description PointF location Point in graph space that may or may not be represented in the visible area of graph currently presented. E.g. 0,0 for origin Returns Type Description Point Screen position (Column/Row) which would be used to render the graph location . Note that this can be outside the current client area of the control | Improve this Doc View Source PageDown() Scrolls the graph down 1 page Declaration public void PageDown() | Improve this Doc View Source PageUp() Scrolls the graph up 1 page Declaration public void PageUp() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source Reset() Clears all settings configured on the graph and resets all properties to default values ( CellSize , ScrollOffset etc) Declaration public void Reset() | Improve this Doc View Source ScreenToGraphSpace(Int32, Int32) Returns the section of the graph that is represented by the given screen position Declaration public RectangleF ScreenToGraphSpace(int col, int row) Parameters Type Name Description System.Int32 col System.Int32 row Returns Type Description RectangleF | Improve this Doc View Source ScreenToGraphSpace(Rect) Returns the section of the graph that is represented by the screen area Declaration public RectangleF ScreenToGraphSpace(Rect screenArea) Parameters Type Name Description Rect screenArea Returns Type Description RectangleF | Improve this Doc View Source Scroll(Single, Single) Scrolls the view by a given number of units in graph space. See CellSize to translate this into rows/cols Declaration public void Scroll(float offsetX, float offsetY) Parameters Type Name Description System.Single offsetX System.Single offsetY | Improve this Doc View Source SetDriverColorToGraphColor() Sets the color attribute of Driver to the GraphColor (if defined) or ColorScheme otherwise. Declaration public void SetDriverColorToGraphColor() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html", - "title": "Class HexView.HexViewEventArgs", - "keywords": "Class HexView.HexViewEventArgs Defines the event arguments for PositionChanged event. Inheritance System.Object System.EventArgs HexView.HexViewEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class HexViewEventArgs : EventArgs Constructors | Improve this Doc View Source HexViewEventArgs(Int64, Point, Int32) Initializes a new instance of HexView.HexViewEventArgs Declaration public HexViewEventArgs(long pos, Point cursor, int lineLength) Parameters Type Name Description System.Int64 pos The character position. Point cursor The cursor position. System.Int32 lineLength Line bytes length. Properties | Improve this Doc View Source BytesPerLine The bytes length per line. Declaration public int BytesPerLine { get; } Property Value Type Description System.Int32 | Improve this Doc View Source CursorPosition Gets the current cursor position starting at one for both, line and column. Declaration public Point CursorPosition { get; } Property Value Type Description Point | Improve this Doc View Source Position Gets the current character position starting at one, related to the System.IO.Stream . Declaration public long Position { get; } Property Value Type Description System.Int64" - }, - "api/Terminal.Gui/Terminal.Gui.HexView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.HexView.html", - "title": "Class HexView", - "keywords": "Class HexView An hex viewer and editor View over a System.IO.Stream Inheritance System.Object Responder View HexView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks HexView provides a hex editor on top of a seekable System.IO.Stream with the left side showing an hex dump of the values in the System.IO.Stream and the right side showing the contents (filtered to non-control sequence ASCII characters). Users can switch from one side to the other by using the tab key. To enable editing, set AllowEdits to true. When AllowEdits is true the user can make changes to the hexadecimal values of the System.IO.Stream . Any changes are tracked in the Edits property (a System.Collections.Generic.SortedDictionary`2 ) indicating the position where the changes were made and the new values. A convenience method, ApplyEdits(Stream) will apply the edits to the System.IO.Stream . Control the first byte shown by setting the DisplayStart property to an offset in the stream. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class HexView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source HexView() Initializes a HexView class using Computed layout. Declaration public HexView() | Improve this Doc View Source HexView(Stream) Initializes a HexView class using Computed layout. Declaration public HexView(Stream source) Parameters Type Name Description System.IO.Stream source The System.IO.Stream to view and edit as hex, this System.IO.Stream must support seeking, or an exception will be thrown. Properties | Improve this Doc View Source AllowEdits Gets or sets whether this HexView allow editing of the System.IO.Stream of the underlying System.IO.Stream . Declaration public bool AllowEdits { get; set; } Property Value Type Description System.Boolean true if allow edits; otherwise, false . | Improve this Doc View Source BytesPerLine The bytes length per line. Declaration public int BytesPerLine { get; } Property Value Type Description System.Int32 | Improve this Doc View Source CursorPosition Gets the current cursor position starting at one for both, line and column. Declaration public Point CursorPosition { get; } Property Value Type Description Point | Improve this Doc View Source DesiredCursorVisibility Get / Set the wished cursor when the field is focused Declaration public CursorVisibility DesiredCursorVisibility { get; set; } Property Value Type Description CursorVisibility | Improve this Doc View Source DisplayStart Sets or gets the offset into the System.IO.Stream that will displayed at the top of the HexView Declaration public long DisplayStart { get; set; } Property Value Type Description System.Int64 The display start. | Improve this Doc View Source Edits Gets a System.Collections.Generic.SortedDictionary`2 describing the edits done to the HexView . Each Key indicates an offset where an edit was made and the Value is the changed byte. Declaration public IReadOnlyDictionary Edits { get; } Property Value Type Description System.Collections.Generic.IReadOnlyDictionary < System.Int64 , System.Byte > The edits. | Improve this Doc View Source Frame Declaration public override Rect Frame { get; set; } Property Value Type Description Rect Overrides View.Frame | Improve this Doc View Source Position Gets the current character position starting at one, related to the System.IO.Stream . Declaration public long Position { get; } Property Value Type Description System.Int64 | Improve this Doc View Source Source Sets or gets the System.IO.Stream the HexView is operating on; the stream must support seeking ( System.IO.Stream.CanSeek == true). Declaration public Stream Source { get; set; } Property Value Type Description System.IO.Stream The source. Methods | Improve this Doc View Source ApplyEdits(Stream) This method applies and edits made to the System.IO.Stream and resets the contents of the Edits property. Declaration public void ApplyEdits(Stream stream = null) Parameters Type Name Description System.IO.Stream stream If provided also applies the changes to the passed System.IO.Stream | Improve this Doc View Source DiscardEdits() This method discards the edits made to the System.IO.Stream by resetting the contents of the Edits property. Declaration public void DiscardEdits() | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEdited(KeyValuePair) Method used to invoke the Edited event passing the System.Collections.Generic.KeyValuePair . Declaration public virtual void OnEdited(KeyValuePair keyValuePair) Parameters Type Name Description System.Collections.Generic.KeyValuePair < System.Int64 , System.Byte > keyValuePair The key value pair. | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnPositionChanged() Method used to invoke the PositionChanged event passing the HexView.HexViewEventArgs arguments. Declaration public virtual void OnPositionChanged() | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) Events | Improve this Doc View Source Edited Event to be invoked when an edit is made on the System.IO.Stream . Declaration public event Action> Edited Event Type Type Description System.Action < System.Collections.Generic.KeyValuePair < System.Int64 , System.Byte >> | Improve this Doc View Source PositionChanged Event to be invoked when the position and cursor position changes. Declaration public event Action PositionChanged Event Type Type Description System.Action < HexView.HexViewEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.html": { - "href": "api/Terminal.Gui/Terminal.Gui.html", - "title": "Namespace Terminal.Gui", - "keywords": "Namespace Terminal.Gui Classes Application A static, singleton class providing the main application driver for Terminal.Gui apps. Application.ResizedEventArgs Event arguments for the Resized event. Application.RunState Captures the execution state for the provided Toplevel view. Autocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. Border Draws a border, background, or both around another element. Border.ToplevelContainer A sealed Toplevel derived class to implement Border feature. This is only a wrapper to get borders on a toplevel and is recommended using another derived, like Window where is possible to have borders with or without border line or spacing around. Button Button is a View that provides an item that invokes an System.Action when activated by the user. CheckBox The CheckBox View shows an on/off toggle that the user can set Clipboard Provides cut, copy, and paste support for the clipboard with OS interaction. ClipboardBase Shared abstract class to enforce rules from the implementation of the IClipboard interface. ColorPicker The ColorPicker View Color picker. Colors The default ColorScheme s for the application. ColorScheme Color scheme definitions, they cover some common scenarios and are used typically in containers such as Window and FrameView to set the scheme that is used by all the views contained inside. ComboBox Provides a drop-down list of items the user can select from. ConsoleDriver ConsoleDriver is an abstract class that defines the requirements for a console driver. There are currently three implementations: Terminal.Gui.CursesDriver (for Unix and Mac), Terminal.Gui.WindowsDriver , and Terminal.Gui.NetDriver that uses the .NET Console API. ContextMenu A context menu window derived from MenuBar containing menu items which can be opened in any position. DateField Simple Date editing View DateTimeEventArgs Defines the event arguments for DateChanged and TimeChanged events. Dialog The Dialog View is a Window that by default is centered and contains one or more Button s. It defaults to the Dialog color scheme and has a 1 cell padding around the edges. Dim Dim properties of a View to control the position. FakeConsole FakeDriver Implements a mock ConsoleDriver for unit testing FakeMainLoop Mainloop intended to be used with the .NET System.Console API, and can be used on Windows and Unix, it is cross platform but lacks things like file descriptor monitoring. FileDialog Base class for the OpenDialog and the SaveDialog FrameView The FrameView is a container frame that draws a frame around the contents. It is similar to a GroupBox in Windows. GraphView Control for rendering graphs (bar, scatter etc) HexView An hex viewer and editor View over a System.IO.Stream HexView.HexViewEventArgs Defines the event arguments for PositionChanged event. KeyEvent Describes a keyboard event. KeyModifiers Identifies the state of the \"shift\"-keys within a event. Label The Label View displays a string at a given position and supports multiple lines separated by newline characters. Multi-line Labels support word wrap. LineView A straight line control either horizontal or vertical ListView ListView View renders a scrollable list of data where each item can be activated to perform an action. ListViewItemEventArgs System.EventArgs for ListView events. ListViewRowEventArgs System.EventArgs used by the RowRender event. ListWrapper Implements an IListDataSource that renders arbitrary System.Collections.IList instances for ListView . MainLoop Simple main loop implementation that can be used to monitor file descriptor, run timers and idle handlers. MainLoop.Timeout Provides data for timers running manipulation. MenuBar Provides a menu bar with drop-down and cascading menus. MenuBarItem A MenuBarItem contains MenuBarItem s or MenuItem s. MenuClosingEventArgs An System.EventArgs which allows passing a cancelable menu closing event. MenuItem A MenuItem has a title, an associated help text, and an action to execute on activation. MenuOpeningEventArgs An System.EventArgs which allows passing a cancelable menu opening event or replacing with a new MenuBarItem . MessageBox MessageBox displays a modal message to the user, with a title, a message and a series of options that the user can choose from. OpenDialog The OpenDialog provides an interactive dialog box for users to select files or directories. PanelView A container for single Child that will allow to drawn Border in two ways. If UsePanelFrame the borders and the child will be accommodated in the available panel size, otherwise the panel will be resized based on the child and borders thickness sizes. Pos Describes the position of a View which can be an absolute value, a percentage, centered, or relative to the ending dimension. Integer values are implicitly convertible to an absolute Pos . These objects are created using the static methods Percent, AnchorEnd, and Center. The Pos objects can be combined with the addition and subtraction operators. ProgressBar A Progress Bar view that can indicate progress of an activity visually. RadioGroup Displays a group of labels each with a selected indicator. Only one of those can be selected at a given time. Responder Responder base class implemented by objects that want to participate on keyboard and mouse input. SaveDialog The SaveDialog provides an interactive dialog box for users to pick a file to save. ScrollBarView ScrollBarViews are views that display a 1-character scrollbar, either horizontal or vertical ScrollView Scrollviews are views that present a window into a virtual space where subviews are added. Similar to the iOS UIScrollView. SelectedItemChangedArgs Event arguments for the SelectedItemChagned event. ShortcutHelper Represents a helper to manipulate shortcut keys used on views. StackExtensions Extension of System.Collections.Generic.Stack helper to work with specific System.Collections.Generic.IEqualityComparer StatusBar A status bar is a View that snaps to the bottom of a Toplevel displaying set of StatusItem s. The StatusBar should be context sensitive. This means, if the main menu and an open text editor are visible, the items probably shown will be ~F1~ Help ~F2~ Save ~F3~ Load. While a dialog to ask a file to load is executed, the remaining commands will probably be ~F1~ Help. So for each context must be a new instance of a statusbar. StatusItem StatusItem objects are contained by StatusBar View s. Each StatusItem has a title, a shortcut (hotkey), and an Action that will be invoked when the Shortcut is pressed. The Shortcut will be a global hotkey for the application in the current context of the screen. The colour of the Title will be changed after each ~. A Title set to `~F1~ Help` will render as *F1* using HotNormal and *Help* as HotNormal . TableView View for tabular data based on a System.Data.DataTable . See TableView Deep Dive for more information . TableView.CellActivatedEventArgs Defines the event arguments for CellActivated event TableView.CellColorGetterArgs Arguments for a TableView.CellColorGetterDelegate . Describes a cell for which a rendering ColorScheme is being sought TableView.ColumnStyle Describes how to render a given column in a TableView including Alignment and textual representation of cells (e.g. date formats) See TableView Deep Dive for more information . TableView.RowColorGetterArgs Arguments for TableView.RowColorGetterDelegate . Describes a row of data in a System.Data.DataTable for which ColorScheme is sought. TableView.SelectedCellChangedEventArgs Defines the event arguments for SelectedCellChanged TableView.TableSelection Describes a selected region of the table TableView.TableStyle Defines rendering options that affect how the table is displayed. See TableView Deep Dive for more information . TabView Control that hosts multiple sub views, presenting a single one at once TabView.Tab A single tab in a TabView TabView.TabChangedEventArgs Describes a change in SelectedTab TabView.TabStyle Describes render stylistic selections of a TabView TextChangingEventArgs An System.EventArgs which allows passing a cancelable new text value event. TextField Single-line text entry View TextFieldAutocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. An implementation on a TextField. TextFormatter Provides text formatting capabilities for console apps. Supports, hotkeys, horizontal alignment, multiple lines, and word-based line wrap. TextValidateField Text field that validates input through a ITextValidateProvider TextView Multi-line text editing View TextViewAutocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. An implementation on a TextView. TimeField Time editing View Toplevel Toplevel views can be modally executed. They are used for both an application's main view (filling the entire screeN and for pop-up views such as Dialog , MessageBox , and Wizard . ToplevelClosingEventArgs System.EventArgs implementation for the Closing event. ToplevelComparer Implements the System.Collections.Generic.IComparer to sort the Toplevel from the MdiChildes if needed. ToplevelEqualityComparer Implements the System.Collections.Generic.IEqualityComparer for comparing two Toplevel s used by StackExtensions . TreeView Convenience implementation of generic TreeView for any tree were all nodes implement ITreeNode . See TreeView Deep Dive for more information . TreeView Hierarchical tree view with expandable branches. Branch objects are dynamically determined when expanded using a user defined ITreeBuilder See TreeView Deep Dive for more information . View View is the base class for all views on the screen and represents a visible element that can render itself and contains zero or more nested views. View.FocusEventArgs Defines the event arguments for Terminal.Gui.View.SetFocus(Terminal.Gui.View) View.KeyEventEventArgs Defines the event arguments for KeyEvent View.LayoutEventArgs Event arguments for the LayoutComplete event. View.MouseEventArgs Specifies the event arguments for MouseEvent Window A Toplevel View that draws a border around its Frame with a Title at the top. Window.TitleEventArgs An System.EventArgs which allows passing a cancelable new Title value event. Wizard Provides navigation and a user interface (UI) to collect related data across multiple steps. Each step ( Wizard.WizardStep ) can host arbitrary View s, much like a Dialog . Each step also has a pane for help text. Along the bottom of the Wizard view are customizable buttons enabling the user to navigate forward and backward through the Wizard. Wizard.StepChangeEventArgs System.EventArgs for Wizard.WizardStep events. Wizard.WizardButtonEventArgs System.EventArgs for Wizard.WizardStep transition events. Wizard.WizardStep Represents a basic step that is displayed in a Wizard . The Wizard.WizardStep view is divided horizontally in two. On the left is the content view where View s can be added, On the right is the help for the step. Set HelpText to set the help text. If the help text is empty the help pane will not be shown. If there are no Views added to the WizardStep the HelpText (if not empty) will fill the wizard step. Wizard.WizardStep.TitleEventArgs An System.EventArgs which allows passing a cancelable new Title value event. Structs Attribute Attributes are used as elements that contain both a foreground and a background or platform specific features MouseEvent Describes a mouse event Point Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane. PointF Represents an ordered pair of x and y coordinates that define a point in a two-dimensional plane. Rect Stores a set of four integers that represent the location and size of a rectangle RectangleF Stores the location and size of a rectangular region. Size Stores an ordered pair of integers, which specify a Height and Width. SizeF Represents the size of a rectangular region with an ordered pair of width and height. Thickness Describes the thickness of a frame around a rectangle. Four System.Int32 values describe the Left , Top , Right , and Bottom sides of the rectangle, respectively. Interfaces IAutocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. IClipboard Definition to interact with the OS clipboard. IListDataSource Implement IListDataSource to provide custom rendering for a ListView . IMainLoopDriver Public interface to create your own platform specific main loop driver. ITreeView Interface for all non generic members of TreeView See TreeView Deep Dive for more information . Enums BorderStyle Specifies the border style for a View and to be used by the Border class. Color Basic colors that can be used to set the foreground and background colors in console applications. Command Actions which can be performed by the application or bound to keys in a View control. ConsoleDriver.DiagnosticFlags Enables diagnostic functions CursorVisibility Cursors Visibility that are displayed Dialog.ButtonAlignments Determines the horizontal alignment of the Dialog buttons. DisplayModeLayout Used for choose the display mode of this RadioGroup Key The Key enumeration contains special encoding for some keys, but can also encode all the unicode values that can be passed. LayoutStyle Determines the LayoutStyle for a view, if Absolute, during LayoutSubviews, the value from the Frame will be used, if the value is Computed, then the Frame will be updated from the X, Y Pos objects and the Width and Height Dim objects. MenuItemCheckStyle Specifies how a MenuItem shows selection state. MouseFlags Mouse flags reported in MouseEvent . OpenDialog.OpenMode Determine which System.IO type to open. ProgressBarFormat Specifies the format that a ProgressBar uses to indicate the visual presentation. ProgressBarStyle Specifies the style that a ProgressBar uses to indicate the progress of an operation. TextAlignment Text alignment enumeration, controls how text is displayed. TextDirection Text direction enumeration, controls how text is displayed. VerticalTextAlignment Vertical text alignment enumeration, controls how text is displayed. Delegates TableView.CellColorGetterDelegate Delegate for providing color to TableView cells based on the value being rendered TableView.RowColorGetterDelegate Delegate for providing color for a whole row of a TableView" - }, - "api/Terminal.Gui/Terminal.Gui.IAutocomplete.html": { - "href": "api/Terminal.Gui/Terminal.Gui.IAutocomplete.html", - "title": "Interface IAutocomplete", - "keywords": "Interface IAutocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public interface IAutocomplete Properties | Improve this Doc View Source AllSuggestions The full set of all strings that can be suggested. Declaration List AllSuggestions { get; set; } Property Value Type Description System.Collections.Generic.List < System.String > | Improve this Doc View Source CloseKey The key that the user can press to close the currently popped autocomplete menu Declaration Key CloseKey { get; set; } Property Value Type Description Key | Improve this Doc View Source ColorScheme The colors to use to render the overlay. Accessing this property before the Application has been initialized will cause an error Declaration ColorScheme ColorScheme { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source HostControl The host control that will use autocomplete. Declaration View HostControl { get; set; } Property Value Type Description View | Improve this Doc View Source MaxHeight The maximum number of visible rows in the autocomplete dropdown to render Declaration int MaxHeight { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source MaxWidth The maximum width of the autocomplete dropdown Declaration int MaxWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source PopupInsideContainer Gets or sets where the popup will be displayed. Declaration bool PopupInsideContainer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Reopen The key that the user can press to reopen the currently popped autocomplete menu Declaration Key Reopen { get; set; } Property Value Type Description Key | Improve this Doc View Source SelectedIdx The currently selected index into Suggestions that the user has highlighted Declaration int SelectedIdx { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectionKey The key that the user must press to accept the currently selected autocomplete suggestion Declaration Key SelectionKey { get; set; } Property Value Type Description Key | Improve this Doc View Source Suggestions The strings that form the current list of suggestions to render based on what the user has typed so far. Declaration ReadOnlyCollection Suggestions { get; set; } Property Value Type Description System.Collections.ObjectModel.ReadOnlyCollection < System.String > | Improve this Doc View Source Visible True if the autocomplete should be considered open and visible Declaration bool Visible { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source ClearSuggestions() Clears Suggestions Declaration void ClearSuggestions() | Improve this Doc View Source GenerateSuggestions() Populates Suggestions with all strings in AllSuggestions that match with the current cursor position/text in the HostControl . Declaration void GenerateSuggestions() | Improve this Doc View Source MouseEvent(MouseEvent, Boolean) Handle mouse events before HostControl e.g. to make mouse events like report/click apply to the autocomplete control instead of changing the cursor position in the underlying text view. Declaration bool MouseEvent(MouseEvent me, bool fromHost = false) Parameters Type Name Description MouseEvent me The mouse event. System.Boolean fromHost If was called from the popup or from the host. Returns Type Description System.Boolean true if the mouse can be handled false otherwise. | Improve this Doc View Source ProcessKey(KeyEvent) Handle key events before HostControl e.g. to make key events like up/down apply to the autocomplete control instead of changing the cursor position in the underlying text view. Declaration bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb The key event. Returns Type Description System.Boolean true if the key can be handled false otherwise. | Improve this Doc View Source RenderOverlay(Point) Renders the autocomplete dialog inside the given HostControl at the given point. Declaration void RenderOverlay(Point renderAt) Parameters Type Name Description Point renderAt" - }, - "api/Terminal.Gui/Terminal.Gui.IClipboard.html": { - "href": "api/Terminal.Gui/Terminal.Gui.IClipboard.html", - "title": "Interface IClipboard", - "keywords": "Interface IClipboard Definition to interact with the OS clipboard. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public interface IClipboard Properties | Improve this Doc View Source IsSupported Returns true if the environmental dependencies are in place to interact with the OS clipboard. Declaration bool IsSupported { get; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source GetClipboardData() Get the operation system clipboard. Declaration string GetClipboardData() Returns Type Description System.String Exceptions Type Condition System.NotSupportedException Thrown if it was not possible to read the clipboard contents. | Improve this Doc View Source SetClipboardData(String) Sets the operation system clipboard. Declaration void SetClipboardData(string text) Parameters Type Name Description System.String text Exceptions Type Condition System.NotSupportedException Thrown if it was not possible to set the clipboard contents. | Improve this Doc View Source TryGetClipboardData(out String) Gets the operation system clipboard if possible. Declaration bool TryGetClipboardData(out string result) Parameters Type Name Description System.String result Clipboard contents read Returns Type Description System.Boolean true if it was possible to read the OS clipboard. | Improve this Doc View Source TrySetClipboardData(String) Sets the operation system clipboard if possible. Declaration bool TrySetClipboardData(string text) Parameters Type Name Description System.String text Returns Type Description System.Boolean True if the clipboard content was set successfully." - }, - "api/Terminal.Gui/Terminal.Gui.IListDataSource.html": { - "href": "api/Terminal.Gui/Terminal.Gui.IListDataSource.html", - "title": "Interface IListDataSource", - "keywords": "Interface IListDataSource Implement IListDataSource to provide custom rendering for a ListView . Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public interface IListDataSource Properties | Improve this Doc View Source Count Returns the number of elements to display Declaration int Count { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Length Returns the maximum length of elements to display Declaration int Length { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source IsMarked(Int32) Should return whether the specified item is currently marked. Declaration bool IsMarked(int item) Parameters Type Name Description System.Int32 item Item index. Returns Type Description System.Boolean true , if marked, false otherwise. | Improve this Doc View Source Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32, Int32) This method is invoked to render a specified item, the method should cover the entire provided width. Declaration void Render(ListView container, ConsoleDriver driver, bool selected, int item, int col, int line, int width, int start = 0) Parameters Type Name Description ListView container The list view to render. ConsoleDriver driver The console driver to render. System.Boolean selected Describes whether the item being rendered is currently selected by the user. System.Int32 item The index of the item to render, zero for the first item and so on. System.Int32 col The column where the rendering will start System.Int32 line The line where the rendering will be done. System.Int32 width The width that must be filled out. System.Int32 start The index of the string to be displayed. | Improve this Doc View Source SetMark(Int32, Boolean) Flags the item as marked. Declaration void SetMark(int item, bool value) Parameters Type Name Description System.Int32 item Item index. System.Boolean value If set to true value. | Improve this Doc View Source ToList() Return the source as IList. Declaration IList ToList() Returns Type Description System.Collections.IList" - }, - "api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html": { - "href": "api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html", - "title": "Interface IMainLoopDriver", - "keywords": "Interface IMainLoopDriver Public interface to create your own platform specific main loop driver. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public interface IMainLoopDriver Methods | Improve this Doc View Source EventsPending(Boolean) Must report whether there are any events pending, or even block waiting for events. Declaration bool EventsPending(bool wait) Parameters Type Name Description System.Boolean wait If set to true wait until an event is available, otherwise return immediately. Returns Type Description System.Boolean true , if there were pending events, false otherwise. | Improve this Doc View Source MainIteration() The iteration function. Declaration void MainIteration() | Improve this Doc View Source Setup(MainLoop) Initializes the main loop driver, gets the calling main loop for the initialization. Declaration void Setup(MainLoop mainLoop) Parameters Type Name Description MainLoop mainLoop Main loop. | Improve this Doc View Source Wakeup() Wakes up the mainloop that might be waiting on input, must be thread safe. Declaration void Wakeup()" - }, - "api/Terminal.Gui/Terminal.Gui.ITreeView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ITreeView.html", - "title": "Interface ITreeView", - "keywords": "Interface ITreeView Interface for all non generic members of TreeView See TreeView Deep Dive for more information . Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public interface ITreeView Properties | Improve this Doc View Source Style Contains options for changing how the tree is rendered Declaration TreeStyle Style { get; set; } Property Value Type Description TreeStyle Methods | Improve this Doc View Source ClearObjects() Removes all objects from the tree and clears selection Declaration void ClearObjects() | Improve this Doc View Source SetNeedsDisplay() Sets a flag indicating this view needs to be redisplayed because its state has changed. Declaration void SetNeedsDisplay()" - }, - "api/Terminal.Gui/Terminal.Gui.Key.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Key.html", - "title": "Enum Key", - "keywords": "Enum Key The Key enumeration contains special encoding for some keys, but can also encode all the unicode values that can be passed. Remarks If the SpecialMask is set, then the value is that of the special mask, otherwise, the value is the one of the lower bits (as extracted by CharMask ) Numerics keys are the values between 48 and 57 corresponding to 0 to 9 Upper alpha keys are the values between 65 and 90 corresponding to A to Z Unicode runes are also stored here, the letter 'A\" for example is encoded as a value 65 (not surfaced in the enum). Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax [Flags] public enum Key : uint Fields Name Description a The key code for the user pressing A A The key code for the user pressing Shift-A AltMask When this value is set, the Key encodes the sequence Alt-KeyValue. And the actual value must be extracted by removing the AltMask. b The key code for the user pressing B B The key code for the user pressing Shift-B Backspace Backspace key. BackTab Shift-tab key (backwards tab key). c The key code for the user pressing C C The key code for the user pressing Shift-C CharMask Mask that indicates that this is a character value, values outside this range indicate special characters like Alt-key combinations or special keys on the keyboard like function keys, arrows keys and so on. CtrlMask When this value is set, the Key encodes the sequence Ctrl-KeyValue. And the actual value must be extracted by removing the CtrlMask. CursorDown Cursor down key. CursorLeft Cursor left key. CursorRight Cursor right key. CursorUp Cursor up key d The key code for the user pressing D D The key code for the user pressing Shift-D D0 Digit 0. D1 Digit 1. D2 Digit 2. D3 Digit 3. D4 Digit 4. D5 Digit 5. D6 Digit 6. D7 Digit 7. D8 Digit 8. D9 Digit 9. Delete The key code for the user pressing the delete key. DeleteChar Delete character key e The key code for the user pressing E E The key code for the user pressing Shift-E End End key Enter The key code for the user pressing the return key. Esc The key code for the user pressing the escape key f The key code for the user pressing F F The key code for the user pressing Shift-F F1 F1 key. F10 F10 key. F11 F11 key. F12 F12 key. F2 F2 key. F3 F3 key. F4 F4 key. F5 F5 key. F6 F6 key. F7 F7 key. F8 F8 key. F9 F9 key. g The key code for the user pressing G G The key code for the user pressing Shift-G h The key code for the user pressing H H The key code for the user pressing Shift-H Home Home key i The key code for the user pressing I I The key code for the user pressing Shift-I InsertChar Insert character key j The key code for the user pressing J J The key code for the user pressing Shift-J k The key code for the user pressing K K The key code for the user pressing Shift-K l The key code for the user pressing L L The key code for the user pressing Shift-L m The key code for the user pressing M M The key code for the user pressing Shift-M n The key code for the user pressing N N The key code for the user pressing Shift-N Null The key code representing null or empty o The key code for the user pressing O O The key code for the user pressing Shift-O p The key code for the user pressing P P The key code for the user pressing Shift-P PageDown Page Down key. PageUp Page Up key. q The key code for the user pressing Q Q The key code for the user pressing Shift-Q r The key code for the user pressing R R The key code for the user pressing Shift-R s The key code for the user pressing S S The key code for the user pressing Shift-S ShiftMask When this value is set, the Key encodes the sequence Shift-KeyValue. Space The key code for the user pressing the space bar SpecialMask If the SpecialMask is set, then the value is that of the special mask, otherwise, the value is the one of the lower bits (as extracted by CharMask ). t The key code for the user pressing T T The key code for the user pressing Shift-T Tab The key code for the user pressing the tab key (forwards tab key). u The key code for the user pressing U U The key code for the user pressing Shift-U Unknown A key with an unknown mapping was raised. v The key code for the user pressing V V The key code for the user pressing Shift-V w The key code for the user pressing W W The key code for the user pressing Shift-W x The key code for the user pressing X X The key code for the user pressing Shift-X y The key code for the user pressing Y Y The key code for the user pressing Shift-Y z The key code for the user pressing Z Z The key code for the user pressing Shift-Z" - }, - "api/Terminal.Gui/Terminal.Gui.KeyEvent.html": { - "href": "api/Terminal.Gui/Terminal.Gui.KeyEvent.html", - "title": "Class KeyEvent", - "keywords": "Class KeyEvent Describes a keyboard event. Inheritance System.Object KeyEvent Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class KeyEvent Constructors | Improve this Doc View Source KeyEvent() Constructs a new KeyEvent Declaration public KeyEvent() | Improve this Doc View Source KeyEvent(Key, KeyModifiers) Constructs a new KeyEvent from the provided Key value - can be a rune cast into a Key value Declaration public KeyEvent(Key k, KeyModifiers km) Parameters Type Name Description Key k KeyModifiers km Fields | Improve this Doc View Source Key Symb olid definition for the key. Declaration public Key Key Field Value Type Description Key Properties | Improve this Doc View Source IsAlt Gets a value indicating whether the Alt key was pressed (real or synthesized) Declaration public bool IsAlt { get; } Property Value Type Description System.Boolean true if is alternate; otherwise, false . | Improve this Doc View Source IsCapslock Gets a value indicating whether the Caps lock key was pressed (real or synthesized) Declaration public bool IsCapslock { get; } Property Value Type Description System.Boolean true if is alternate; otherwise, false . | Improve this Doc View Source IsCtrl Determines whether the value is a control key (and NOT just the ctrl key) Declaration public bool IsCtrl { get; } Property Value Type Description System.Boolean true if is ctrl; otherwise, false . | Improve this Doc View Source IsNumlock Gets a value indicating whether the Num lock key was pressed (real or synthesized) Declaration public bool IsNumlock { get; } Property Value Type Description System.Boolean true if is alternate; otherwise, false . | Improve this Doc View Source IsScrolllock Gets a value indicating whether the Scroll lock key was pressed (real or synthesized) Declaration public bool IsScrolllock { get; } Property Value Type Description System.Boolean true if is alternate; otherwise, false . | Improve this Doc View Source IsShift Gets a value indicating whether the Shift key was pressed. Declaration public bool IsShift { get; } Property Value Type Description System.Boolean true if is shift; otherwise, false . | Improve this Doc View Source KeyValue The key value cast to an integer, you will typical use this for extracting the Unicode rune value out of a key, when none of the symbolic options are in use. Declaration public int KeyValue { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source ToString() Pretty prints the KeyEvent Declaration public override string ToString() Returns Type Description System.String Overrides System.Object.ToString()" - }, - "api/Terminal.Gui/Terminal.Gui.KeyModifiers.html": { - "href": "api/Terminal.Gui/Terminal.Gui.KeyModifiers.html", - "title": "Class KeyModifiers", - "keywords": "Class KeyModifiers Identifies the state of the \"shift\"-keys within a event. Inheritance System.Object KeyModifiers Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class KeyModifiers Fields | Improve this Doc View Source Alt Check if the Alt key was pressed or not. Declaration public bool Alt Field Value Type Description System.Boolean | Improve this Doc View Source Capslock Check if the Caps lock key was pressed or not. Declaration public bool Capslock Field Value Type Description System.Boolean | Improve this Doc View Source Ctrl Check if the Ctrl key was pressed or not. Declaration public bool Ctrl Field Value Type Description System.Boolean | Improve this Doc View Source Numlock Check if the Num lock key was pressed or not. Declaration public bool Numlock Field Value Type Description System.Boolean | Improve this Doc View Source Scrolllock Check if the Scroll lock key was pressed or not. Declaration public bool Scrolllock Field Value Type Description System.Boolean | Improve this Doc View Source Shift Check if the Shift key was pressed or not. Declaration public bool Shift Field Value Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.Label.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Label.html", - "title": "Class Label", - "keywords": "Class Label The Label View displays a string at a given position and supports multiple lines separated by newline characters. Multi-line Labels support word wrap. Inheritance System.Object Responder View Label Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The Label view is functionality identical to View and is included for API backwards compatibility. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.Redraw(Rect) View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Label : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source Label() Declaration public Label() | Improve this Doc View Source Label(ustring, Boolean) Declaration public Label(ustring text, bool autosize = true) Parameters Type Name Description NStack.ustring text System.Boolean autosize | Improve this Doc View Source Label(ustring, TextDirection, Boolean) Declaration public Label(ustring text, TextDirection direction, bool autosize = true) Parameters Type Name Description NStack.ustring text TextDirection direction System.Boolean autosize | Improve this Doc View Source Label(Int32, Int32, ustring, Boolean) Declaration public Label(int x, int y, ustring text, bool autosize = true) Parameters Type Name Description System.Int32 x System.Int32 y NStack.ustring text System.Boolean autosize | Improve this Doc View Source Label(Rect, ustring, Boolean) Declaration public Label(Rect rect, ustring text, bool autosize = false) Parameters Type Name Description Rect rect NStack.ustring text System.Boolean autosize | Improve this Doc View Source Label(Rect, Boolean) Declaration public Label(Rect frame, bool autosize = false) Parameters Type Name Description Rect frame System.Boolean autosize Methods | Improve this Doc View Source OnClicked() Virtual method to invoke the Clicked event. Declaration public virtual void OnClicked() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnMouseEvent(MouseEvent) Method invoked when a mouse event is generated Declaration public override bool OnMouseEvent(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean true , if the event was handled, false otherwise. Overrides View.OnMouseEvent(MouseEvent) | Improve this Doc View Source ProcessHotKey(KeyEvent) Declaration public override bool ProcessHotKey(KeyEvent ke) Parameters Type Name Description KeyEvent ke Returns Type Description System.Boolean Overrides View.ProcessHotKey(KeyEvent) Events | Improve this Doc View Source Clicked Clicked System.Action , raised when the user clicks the primary mouse button within the Bounds of this View or if the user presses the action key while this view is focused. (TODO: IsDefault) Declaration public event Action Clicked Event Type Type Description System.Action Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.LayoutStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.LayoutStyle.html", - "title": "Enum LayoutStyle", - "keywords": "Enum LayoutStyle Determines the LayoutStyle for a view, if Absolute, during LayoutSubviews, the value from the Frame will be used, if the value is Computed, then the Frame will be updated from the X, Y Pos objects and the Width and Height Dim objects. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum LayoutStyle Fields Name Description Absolute The position and size of the view are based on the Frame value. Computed The position and size of the view will be computed based on the X, Y, Width and Height properties and set on the Frame." - }, - "api/Terminal.Gui/Terminal.Gui.LineView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.LineView.html", - "title": "Class LineView", - "keywords": "Class LineView A straight line control either horizontal or vertical Inheritance System.Object Responder View LineView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class LineView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source LineView() Creates a horizontal line Declaration public LineView() | Improve this Doc View Source LineView(Orientation) Creates a horizontal or vertical line based on orientation Declaration public LineView(Orientation orientation) Parameters Type Name Description Orientation orientation Properties | Improve this Doc View Source EndingAnchor The rune to display at the end of the line (right end of horizontal line or bottom end of vertical). If not specified then LineRune is used Declaration public Rune? EndingAnchor { get; set; } Property Value Type Description System.Nullable < System.Rune > | Improve this Doc View Source LineRune The symbol to use for drawing the line Declaration public Rune LineRune { get; set; } Property Value Type Description System.Rune | Improve this Doc View Source Orientation The direction of the line. If you change this you will need to manually update the Width/Height of the control to cover a relevant area based on the new direction. Declaration public Orientation Orientation { get; set; } Property Value Type Description Orientation | Improve this Doc View Source StartingAnchor The rune to display at the start of the line (left end of horizontal line or top end of vertical) If not specified then LineRune is used Declaration public Rune? StartingAnchor { get; set; } Property Value Type Description System.Nullable < System.Rune > Methods | Improve this Doc View Source Redraw(Rect) Draws the line including any starting/ending anchors Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.ListView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ListView.html", - "title": "Class ListView", - "keywords": "Class ListView ListView View renders a scrollable list of data where each item can be activated to perform an action. Inheritance System.Object Responder View ListView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The ListView displays lists of data and allows the user to scroll through the data. Items in the can be activated firing an event (with the ENTER key or a mouse double-click). If the AllowsMarking property is true, elements of the list can be marked by the user. By default ListView uses System.Object.ToString() to render the items of any System.Collections.IList object (e.g. arrays, System.Collections.Generic.List , and other collections). Alternatively, an object that implements the IListDataSource interface can be provided giving full control of what is rendered. ListView can display any object that implements the System.Collections.IList interface. System.String values are converted into NStack.ustring values before rendering, and other values are converted into System.String by calling System.Object.ToString() and then converting to NStack.ustring . To change the contents of the ListView, set the Source property (when providing custom rendering via IListDataSource ) or call SetSource(IList) an System.Collections.IList is being used. When AllowsMarking is set to true the rendering will prefix the rendered items with [x] or [ ] and bind the SPACE key to toggle the selection. To implement a different marking style set AllowsMarking to false and implement custom rendering. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ListView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ListView() Initializes a new instance of ListView . Set the Source property to display something. Declaration public ListView() | Improve this Doc View Source ListView(IList) Initializes a new instance of ListView that will display the contents of the object implementing the System.Collections.IList interface, with relative positioning. Declaration public ListView(IList source) Parameters Type Name Description System.Collections.IList source An System.Collections.IList data source, if the elements are strings or ustrings, the string is rendered, otherwise the ToString() method is invoked on the result. | Improve this Doc View Source ListView(IListDataSource) Initializes a new instance of ListView that will display the provided data source, using relative positioning. Declaration public ListView(IListDataSource source) Parameters Type Name Description IListDataSource source IListDataSource object that provides a mechanism to render the data. The number of elements on the collection should not change, if you must change, set the \"Source\" property to reset the internal settings of the ListView. | Improve this Doc View Source ListView(Rect, IList) Initializes a new instance of ListView that will display the contents of the object implementing the System.Collections.IList interface with an absolute position. Declaration public ListView(Rect rect, IList source) Parameters Type Name Description Rect rect Frame for the listview. System.Collections.IList source An IList data source, if the elements of the IList are strings or ustrings, the string is rendered, otherwise the ToString() method is invoked on the result. | Improve this Doc View Source ListView(Rect, IListDataSource) Initializes a new instance of ListView with the provided data source and an absolute position Declaration public ListView(Rect rect, IListDataSource source) Parameters Type Name Description Rect rect Frame for the listview. IListDataSource source IListDataSource object that provides a mechanism to render the data. The number of elements on the collection should not change, if you must change, set the \"Source\" property to reset the internal settings of the ListView. Properties | Improve this Doc View Source AllowsMarking Gets or sets whether this ListView allows items to be marked. Declaration public bool AllowsMarking { get; set; } Property Value Type Description System.Boolean true if allows marking elements of the list; otherwise, false . | Improve this Doc View Source AllowsMultipleSelection If set to true allows more than one item to be selected. If false only allow one item selected. Declaration public bool AllowsMultipleSelection { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source LeftItem Gets or sets the left column where the item start to be displayed at on the ListView . Declaration public int LeftItem { get; set; } Property Value Type Description System.Int32 The left position. | Improve this Doc View Source Maxlength Gets the widest item. Declaration public int Maxlength { get; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedItem Gets or sets the index of the currently selected item. Declaration public int SelectedItem { get; set; } Property Value Type Description System.Int32 The selected item. | Improve this Doc View Source Source Gets or sets the IListDataSource backing this ListView , enabling custom rendering. Declaration public IListDataSource Source { get; set; } Property Value Type Description IListDataSource The source. | Improve this Doc View Source TopItem Gets or sets the item that is displayed at the top of the ListView . Declaration public int TopItem { get; set; } Property Value Type Description System.Int32 The top item. Methods | Improve this Doc View Source AllowsAll() Prevents marking if it's not allowed mark and if it's not allows multiple selection. Declaration public virtual bool AllowsAll() Returns Type Description System.Boolean | Improve this Doc View Source MarkUnmarkRow() Marks an unmarked row. Declaration public virtual bool MarkUnmarkRow() Returns Type Description System.Boolean | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source MoveDown() Moves the selected item index to the next row. Declaration public virtual bool MoveDown() Returns Type Description System.Boolean | Improve this Doc View Source MoveEnd() Moves the selected item index to the last row. Declaration public virtual bool MoveEnd() Returns Type Description System.Boolean | Improve this Doc View Source MoveHome() Moves the selected item index to the first row. Declaration public virtual bool MoveHome() Returns Type Description System.Boolean | Improve this Doc View Source MovePageDown() Moves the selected item index to the previous page. Declaration public virtual bool MovePageDown() Returns Type Description System.Boolean | Improve this Doc View Source MovePageUp() Moves the selected item index to the next page. Declaration public virtual bool MovePageUp() Returns Type Description System.Boolean | Improve this Doc View Source MoveUp() Moves the selected item index to the previous row. Declaration public virtual bool MoveUp() Returns Type Description System.Boolean | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnLeave(View) Declaration public override bool OnLeave(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnLeave(View) | Improve this Doc View Source OnOpenSelectedItem() Invokes the OnOpenSelectedItem event if it is defined. Declaration public virtual bool OnOpenSelectedItem() Returns Type Description System.Boolean | Improve this Doc View Source OnRowRender(ListViewRowEventArgs) Virtual method that will invoke the RowRender . Declaration public virtual void OnRowRender(ListViewRowEventArgs rowEventArgs) Parameters Type Name Description ListViewRowEventArgs rowEventArgs | Improve this Doc View Source OnSelectedChanged() Invokes the SelectedChanged event if it is defined. Declaration public virtual bool OnSelectedChanged() Returns Type Description System.Boolean | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source ScrollDown(Int32) Scrolls the view down. Declaration public virtual bool ScrollDown(int lines) Parameters Type Name Description System.Int32 lines Number of lines to scroll down. Returns Type Description System.Boolean | Improve this Doc View Source ScrollLeft(Int32) Scrolls the view left. Declaration public virtual bool ScrollLeft(int cols) Parameters Type Name Description System.Int32 cols Number of columns to scroll left. Returns Type Description System.Boolean | Improve this Doc View Source ScrollRight(Int32) Scrolls the view right. Declaration public virtual bool ScrollRight(int cols) Parameters Type Name Description System.Int32 cols Number of columns to scroll right. Returns Type Description System.Boolean | Improve this Doc View Source ScrollUp(Int32) Scrolls the view up. Declaration public virtual bool ScrollUp(int lines) Parameters Type Name Description System.Int32 lines Number of lines to scroll up. Returns Type Description System.Boolean | Improve this Doc View Source SetSource(IList) Sets the source of the ListView to an System.Collections.IList . Declaration public void SetSource(IList source) Parameters Type Name Description System.Collections.IList source | Improve this Doc View Source SetSourceAsync(IList) Sets the source to an System.Collections.IList value asynchronously. Declaration public Task SetSourceAsync(IList source) Parameters Type Name Description System.Collections.IList source Returns Type Description System.Threading.Tasks.Task An item implementing the IList interface. Events | Improve this Doc View Source OpenSelectedItem This event is raised when the user Double Clicks on an item or presses ENTER to open the selected item. Declaration public event Action OpenSelectedItem Event Type Type Description System.Action < ListViewItemEventArgs > | Improve this Doc View Source RowRender This event is invoked when this ListView is being drawn before rendering. Declaration public event Action RowRender Event Type Type Description System.Action < ListViewRowEventArgs > | Improve this Doc View Source SelectedItemChanged This event is raised when the selected item in the ListView has changed. Declaration public event Action SelectedItemChanged Event Type Type Description System.Action < ListViewItemEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html", - "title": "Class ListViewItemEventArgs", - "keywords": "Class ListViewItemEventArgs System.EventArgs for ListView events. Inheritance System.Object System.EventArgs ListViewItemEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ListViewItemEventArgs : EventArgs Constructors | Improve this Doc View Source ListViewItemEventArgs(Int32, Object) Initializes a new instance of ListViewItemEventArgs Declaration public ListViewItemEventArgs(int item, object value) Parameters Type Name Description System.Int32 item The index of the ListView item. System.Object value The ListView item Properties | Improve this Doc View Source Item The index of the ListView item. Declaration public int Item { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Value The ListView item. Declaration public object Value { get; } Property Value Type Description System.Object" - }, - "api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html", - "title": "Class ListViewRowEventArgs", - "keywords": "Class ListViewRowEventArgs System.EventArgs used by the RowRender event. Inheritance System.Object System.EventArgs ListViewRowEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ListViewRowEventArgs : EventArgs Constructors | Improve this Doc View Source ListViewRowEventArgs(Int32) Initializes with the current row. Declaration public ListViewRowEventArgs(int row) Parameters Type Name Description System.Int32 row Properties | Improve this Doc View Source Row The current row being rendered. Declaration public int Row { get; } Property Value Type Description System.Int32 | Improve this Doc View Source RowAttribute The Attribute used by current row or null to maintain the current attribute. Declaration public Attribute? RowAttribute { get; set; } Property Value Type Description System.Nullable < Attribute >" - }, - "api/Terminal.Gui/Terminal.Gui.ListWrapper.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ListWrapper.html", - "title": "Class ListWrapper", - "keywords": "Class ListWrapper Implements an IListDataSource that renders arbitrary System.Collections.IList instances for ListView . Inheritance System.Object ListWrapper Implements IListDataSource Remarks Implements support for rendering marked items. Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ListWrapper : IListDataSource Constructors | Improve this Doc View Source ListWrapper(IList) Initializes a new instance of ListWrapper given an System.Collections.IList Declaration public ListWrapper(IList source) Parameters Type Name Description System.Collections.IList source Properties | Improve this Doc View Source Count Gets the number of items in the System.Collections.IList . Declaration public int Count { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Length Gets the maximum item length in the System.Collections.IList . Declaration public int Length { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source IsMarked(Int32) Returns true if the item is marked, false otherwise. Declaration public bool IsMarked(int item) Parameters Type Name Description System.Int32 item The item. Returns Type Description System.Boolean true If is marked. false otherwise. | Improve this Doc View Source Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32, Int32) Renders a ListView item to the appropriate type. Declaration public void Render(ListView container, ConsoleDriver driver, bool marked, int item, int col, int line, int width, int start = 0) Parameters Type Name Description ListView container The ListView. ConsoleDriver driver The driver used by the caller. System.Boolean marked Informs if it's marked or not. System.Int32 item The item. System.Int32 col The col where to move. System.Int32 line The line where to move. System.Int32 width The item width. System.Int32 start The index of the string to be displayed. | Improve this Doc View Source SetMark(Int32, Boolean) Sets the item as marked or unmarked based on the value is true or false, respectively. Declaration public void SetMark(int item, bool value) Parameters Type Name Description System.Int32 item The item System.Boolean value Marks the item. Unmarked the item. The value. | Improve this Doc View Source ToList() Returns the source as IList. Declaration public IList ToList() Returns Type Description System.Collections.IList Implements IListDataSource" - }, - "api/Terminal.Gui/Terminal.Gui.MainLoop.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MainLoop.html", - "title": "Class MainLoop", - "keywords": "Class MainLoop Simple main loop implementation that can be used to monitor file descriptor, run timers and idle handlers. Inheritance System.Object MainLoop Remarks Monitoring of file descriptors is only available on Unix, there does not seem to be a way of supporting this on Windows. Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MainLoop Constructors | Improve this Doc View Source MainLoop(IMainLoopDriver) Creates a new Mainloop. Declaration public MainLoop(IMainLoopDriver driver) Parameters Type Name Description IMainLoopDriver driver Should match the ConsoleDriver (one of the implementations UnixMainLoop, NetMainLoop or WindowsMainLoop). Properties | Improve this Doc View Source Driver The current IMainLoopDriver in use. Declaration public IMainLoopDriver Driver { get; } Property Value Type Description IMainLoopDriver The driver. | Improve this Doc View Source IdleHandlers Gets a copy of the list of all idle handlers. Declaration public ReadOnlyCollection> IdleHandlers { get; } Property Value Type Description System.Collections.ObjectModel.ReadOnlyCollection < System.Func < System.Boolean >> | Improve this Doc View Source Timeouts Gets the list of all timeouts sorted by the System.TimeSpan time ticks./>. A shorter limit time can be added at the end, but it will be called before an earlier addition that has a longer limit time. Declaration public SortedList Timeouts { get; } Property Value Type Description System.Collections.Generic.SortedList < System.Int64 , MainLoop.Timeout > Methods | Improve this Doc View Source AddIdle(Func) Adds specified idle handler function to mainloop processing. The handler function will be called once per iteration of the main loop after other events have been handled. Declaration public Func AddIdle(Func idleHandler) Parameters Type Name Description System.Func < System.Boolean > idleHandler Token that can be used to remove the idle handler with RemoveIdle(Func) . Returns Type Description System.Func < System.Boolean > | Improve this Doc View Source AddTimeout(TimeSpan, Func) Adds a timeout to the mainloop. Declaration public object AddTimeout(TimeSpan time, Func callback) Parameters Type Name Description System.TimeSpan time System.Func < MainLoop , System.Boolean > callback Returns Type Description System.Object | Improve this Doc View Source EventsPending(Boolean) Determines whether there are pending events to be processed. Declaration public bool EventsPending(bool wait = false) Parameters Type Name Description System.Boolean wait Returns Type Description System.Boolean | Improve this Doc View Source Invoke(Action) Runs action on the thread that is processing events Declaration public void Invoke(Action action) Parameters Type Name Description System.Action action the action to be invoked on the main processing thread. | Improve this Doc View Source MainIteration() Runs one iteration of timers and file watches Declaration public void MainIteration() | Improve this Doc View Source RemoveIdle(Func) Removes an idle handler added with AddIdle(Func) from processing. Declaration public bool RemoveIdle(Func token) Parameters Type Name Description System.Func < System.Boolean > token A token returned by AddIdle(Func) Returns Type Description System.Boolean | Improve this Doc View Source RemoveTimeout(Object) Removes a previously scheduled timeout Declaration public bool RemoveTimeout(object token) Parameters Type Name Description System.Object token Returns Type Description System.Boolean | Improve this Doc View Source Run() Runs the mainloop. Declaration public void Run() | Improve this Doc View Source Stop() Stops the mainloop. Declaration public void Stop() Events | Improve this Doc View Source TimeoutAdded Invoked when a new timeout is added to be used on the case if ExitRunLoopAfterFirstIteration is true, Declaration public event Action TimeoutAdded Event Type Type Description System.Action < System.Int64 >" - }, - "api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html", - "title": "Class MainLoop.Timeout", - "keywords": "Class MainLoop.Timeout Provides data for timers running manipulation. Inheritance System.Object MainLoop.Timeout Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public sealed class Timeout Fields | Improve this Doc View Source Callback The function that will be invoked. Declaration public Func Callback Field Value Type Description System.Func < MainLoop , System.Boolean > | Improve this Doc View Source Span Time to wait before invoke the callback. Declaration public TimeSpan Span Field Value Type Description System.TimeSpan" - }, - "api/Terminal.Gui/Terminal.Gui.MenuBar.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MenuBar.html", - "title": "Class MenuBar", - "keywords": "Class MenuBar Provides a menu bar with drop-down and cascading menus. Inheritance System.Object Responder View MenuBar Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The MenuBar appears on the first row of the terminal. The MenuBar provides global hotkeys for the application. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MenuBar : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source MenuBar() Initializes a new instance of the MenuBar . Declaration public MenuBar() | Improve this Doc View Source MenuBar(MenuBarItem[]) Initializes a new instance of the MenuBar class with the specified set of toplevel menu items. Declaration public MenuBar(MenuBarItem[] menus) Parameters Type Name Description MenuBarItem [] menus Individual menu items; a null item will result in a separator being drawn. Properties | Improve this Doc View Source HotKeySpecifier The specifier character for the hotkey to all menus. Declaration public static Rune HotKeySpecifier { get; } Property Value Type Description System.Rune | Improve this Doc View Source IsMenuOpen True if the menu is open; otherwise false. Declaration public bool IsMenuOpen { get; protected set; } Property Value Type Description System.Boolean | Improve this Doc View Source LastFocused Get the lasted focused view before open the menu. Declaration public View LastFocused { get; } Property Value Type Description View | Improve this Doc View Source Menus Gets or sets the array of MenuBarItem s for the menu. Only set this when the MenuBar is visible. Declaration public MenuBarItem[] Menus { get; set; } Property Value Type Description MenuBarItem [] The menu array. | Improve this Doc View Source ShortcutDelimiter Used for change the shortcut delimiter separator. Declaration public static ustring ShortcutDelimiter { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source UseKeysUpDownAsKeysLeftRight Used for change the navigation key style. Declaration public bool UseKeysUpDownAsKeysLeftRight { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source UseSubMenusSingleFrame Gets or sets if the sub-menus must be displayed in a single or multiple frames. Declaration public bool UseSubMenusSingleFrame { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source CloseMenu(Boolean) Closes the current Menu programatically, if open and not canceled. Declaration public bool CloseMenu(bool ignoreUseSubMenusSingleFrame = false) Parameters Type Name Description System.Boolean ignoreUseSubMenusSingleFrame Returns Type Description System.Boolean | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnKeyDown(KeyEvent) Declaration public override bool OnKeyDown(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.OnKeyDown(KeyEvent) | Improve this Doc View Source OnKeyUp(KeyEvent) Declaration public override bool OnKeyUp(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.OnKeyUp(KeyEvent) | Improve this Doc View Source OnLeave(View) Declaration public override bool OnLeave(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnLeave(View) | Improve this Doc View Source OnMenuAllClosed() Virtual method that will invoke the MenuAllClosed Declaration public virtual void OnMenuAllClosed() | Improve this Doc View Source OnMenuClosing(MenuBarItem, Boolean, Boolean) Virtual method that will invoke the MenuClosing Declaration public virtual MenuClosingEventArgs OnMenuClosing(MenuBarItem currentMenu, bool reopen, bool isSubMenu) Parameters Type Name Description MenuBarItem currentMenu The current menu to be closed. System.Boolean reopen Whether the current menu will be reopen. System.Boolean isSubMenu Whether is a sub-menu or not. Returns Type Description MenuClosingEventArgs | Improve this Doc View Source OnMenuOpened() Virtual method that will invoke the MenuOpened event if it's defined. Declaration public virtual void OnMenuOpened() | Improve this Doc View Source OnMenuOpening(MenuBarItem) Virtual method that will invoke the MenuOpening event if it's defined. Declaration public virtual MenuOpeningEventArgs OnMenuOpening(MenuBarItem currentMenu) Parameters Type Name Description MenuBarItem currentMenu The current menu to be replaced. Returns Type Description MenuOpeningEventArgs Returns the MenuOpeningEventArgs | Improve this Doc View Source OpenMenu() Opens the current Menu programatically. Declaration public void OpenMenu() | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessColdKey(KeyEvent) Declaration public override bool ProcessColdKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessColdKey(KeyEvent) | Improve this Doc View Source ProcessHotKey(KeyEvent) Declaration public override bool ProcessHotKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessHotKey(KeyEvent) | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) Events | Improve this Doc View Source MenuAllClosed Raised when all the menu are closed. Declaration public event Action MenuAllClosed Event Type Type Description System.Action | Improve this Doc View Source MenuClosing Raised when a menu is closing passing MenuClosingEventArgs . Declaration public event Action MenuClosing Event Type Type Description System.Action < MenuClosingEventArgs > | Improve this Doc View Source MenuOpened Raised when a menu is opened. Declaration public event Action MenuOpened Event Type Type Description System.Action < MenuItem > | Improve this Doc View Source MenuOpening Raised as a menu is opening. Declaration public event Action MenuOpening Event Type Type Description System.Action < MenuOpeningEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.MenuBarItem.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MenuBarItem.html", - "title": "Class MenuBarItem", - "keywords": "Class MenuBarItem A MenuBarItem contains MenuBarItem s or MenuItem s. Inheritance System.Object MenuItem MenuBarItem Inherited Members MenuItem.Data MenuItem.HotKey MenuItem.Shortcut MenuItem.ShortcutTag MenuItem.Title MenuItem.Help MenuItem.Action MenuItem.CanExecute MenuItem.IsEnabled() MenuItem.Checked MenuItem.CheckType MenuItem.Parent MenuItem.GetMenuItem() MenuItem.GetMenuBarItem() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MenuBarItem : MenuItem Constructors | Improve this Doc View Source MenuBarItem() Initializes a new MenuBarItem . Declaration public MenuBarItem() | Improve this Doc View Source MenuBarItem(ustring, ustring, Action, Func, MenuItem) Initializes a new MenuBarItem as a MenuItem . Declaration public MenuBarItem(ustring title, ustring help, Action action, Func canExecute = null, MenuItem parent = null) Parameters Type Name Description NStack.ustring title Title for the menu item. NStack.ustring help Help text to display. System.Action action Action to invoke when the menu item is activated. System.Func < System.Boolean > canExecute Function to determine if the action can currently be executed. MenuItem parent The parent MenuItem of this if exist, otherwise is null. | Improve this Doc View Source MenuBarItem(ustring, List, MenuItem) Initializes a new MenuBarItem with separate list of items. Declaration public MenuBarItem(ustring title, List children, MenuItem parent = null) Parameters Type Name Description NStack.ustring title Title for the menu item. System.Collections.Generic.List < MenuItem []> children The list of items in the current menu. MenuItem parent The parent MenuItem of this if exist, otherwise is null. | Improve this Doc View Source MenuBarItem(ustring, MenuItem[], MenuItem) Initializes a new MenuBarItem . Declaration public MenuBarItem(ustring title, MenuItem[] children, MenuItem parent = null) Parameters Type Name Description NStack.ustring title Title for the menu item. MenuItem [] children The items in the current menu. MenuItem parent The parent MenuItem of this if exist, otherwise is null. | Improve this Doc View Source MenuBarItem(MenuItem[]) Initializes a new MenuBarItem . Declaration public MenuBarItem(MenuItem[] children) Parameters Type Name Description MenuItem [] children The items in the current menu. Properties | Improve this Doc View Source Children Gets or sets an array of MenuItem objects that are the children of this MenuBarItem Declaration public MenuItem[] Children { get; set; } Property Value Type Description MenuItem [] The children. Methods | Improve this Doc View Source GetChildrenIndex(MenuItem) Get the index of the MenuItem parameter. Declaration public int GetChildrenIndex(MenuItem children) Parameters Type Name Description MenuItem children Returns Type Description System.Int32 Returns a value bigger than -1 if the MenuItem is a child of this. | Improve this Doc View Source IsSubMenuOf(MenuItem) Check if the MenuItem parameter is a child of this. Declaration public bool IsSubMenuOf(MenuItem menuItem) Parameters Type Name Description MenuItem menuItem Returns Type Description System.Boolean Returns true if it is a child of this. false otherwise. | Improve this Doc View Source SubMenu(MenuItem) Check if the children parameter is a MenuBarItem . Declaration public MenuBarItem SubMenu(MenuItem children) Parameters Type Name Description MenuItem children Returns Type Description MenuBarItem Returns a MenuBarItem or null otherwise." - }, - "api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html", - "title": "Class MenuClosingEventArgs", - "keywords": "Class MenuClosingEventArgs An System.EventArgs which allows passing a cancelable menu closing event. Inheritance System.Object System.EventArgs MenuClosingEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MenuClosingEventArgs : EventArgs Constructors | Improve this Doc View Source MenuClosingEventArgs(MenuBarItem, Boolean, Boolean) Initializes a new instance of MenuClosingEventArgs Declaration public MenuClosingEventArgs(MenuBarItem currentMenu, bool reopen, bool isSubMenu) Parameters Type Name Description MenuBarItem currentMenu The current MenuBarItem parent. System.Boolean reopen Whether the current menu will be reopen. System.Boolean isSubMenu Indicates whether it is a sub-menu. Properties | Improve this Doc View Source Cancel Flag that allows you to cancel the opening of the menu. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source CurrentMenu The current MenuBarItem parent. Declaration public MenuBarItem CurrentMenu { get; } Property Value Type Description MenuBarItem | Improve this Doc View Source IsSubMenu Indicates whether the current menu is a sub-menu. Declaration public bool IsSubMenu { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Reopen Indicates whether the current menu will be reopen. Declaration public bool Reopen { get; } Property Value Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.MenuItem.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MenuItem.html", - "title": "Class MenuItem", - "keywords": "Class MenuItem A MenuItem has a title, an associated help text, and an action to execute on activation. Inheritance System.Object MenuItem MenuBarItem Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MenuItem Constructors | Improve this Doc View Source MenuItem(ustring, ustring, Action, Func, MenuItem, Key) Initializes a new instance of MenuItem . Declaration public MenuItem(ustring title, ustring help, Action action, Func canExecute = null, MenuItem parent = null, Key shortcut = Key.Null) Parameters Type Name Description NStack.ustring title Title for the menu item. NStack.ustring help Help text to display. System.Action action Action to invoke when the menu item is activated. System.Func < System.Boolean > canExecute Function to determine if the action can currently be executed. MenuItem parent The Parent of this menu item. Key shortcut The Shortcut keystroke combination. | Improve this Doc View Source MenuItem(Key) Initializes a new instance of MenuItem Declaration public MenuItem(Key shortcut = Key.Null) Parameters Type Name Description Key shortcut Fields | Improve this Doc View Source HotKey The HotKey is used when the menu is active, the shortcut can be triggered when the menu is not active. For example HotKey would be \"N\" when the File Menu is open (assuming there is a \"_New\" entry if the Shortcut is set to \"Control-N\", this would be a global hotkey that would trigger as well Declaration public Rune HotKey Field Value Type Description System.Rune Properties | Improve this Doc View Source Action Gets or sets the action to be invoked when the menu is triggered Declaration public Action Action { get; set; } Property Value Type Description System.Action Method to invoke. | Improve this Doc View Source CanExecute Gets or sets the action to be invoked if the menu can be triggered Declaration public Func CanExecute { get; set; } Property Value Type Description System.Func < System.Boolean > Function to determine if action is ready to be executed. | Improve this Doc View Source Checked Sets or gets whether the MenuItem shows a check indicator or not. See MenuItemCheckStyle . Declaration public bool Checked { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source CheckType Sets or gets the type selection indicator the menu item will be displayed with. Declaration public MenuItemCheckStyle CheckType { get; set; } Property Value Type Description MenuItemCheckStyle | Improve this Doc View Source Data Gets or sets arbitrary data for the menu item. Declaration public object Data { get; set; } Property Value Type Description System.Object | Improve this Doc View Source Help Gets or sets the help text for the menu item. Declaration public ustring Help { get; set; } Property Value Type Description NStack.ustring The help text. | Improve this Doc View Source Parent Gets or sets the parent for this MenuItem . Declaration public MenuItem Parent { get; } Property Value Type Description MenuItem The parent. | Improve this Doc View Source Shortcut This is the global setting that can be used as a global Shortcut to invoke the action on the menu. Declaration public Key Shortcut { get; set; } Property Value Type Description Key | Improve this Doc View Source ShortcutTag The keystroke combination used in the ShortcutTag as string. Declaration public ustring ShortcutTag { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Title Gets or sets the title. Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring The title. Methods | Improve this Doc View Source GetMenuBarItem() Merely a debugging aid to see the interaction with main Declaration public bool GetMenuBarItem() Returns Type Description System.Boolean | Improve this Doc View Source GetMenuItem() Merely a debugging aid to see the interaction with main Declaration public MenuItem GetMenuItem() Returns Type Description MenuItem | Improve this Doc View Source IsEnabled() Shortcut to check if the menu item is enabled Declaration public bool IsEnabled() Returns Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html", - "title": "Enum MenuItemCheckStyle", - "keywords": "Enum MenuItemCheckStyle Specifies how a MenuItem shows selection state. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax [Flags] public enum MenuItemCheckStyle Fields Name Description Checked The menu item will indicate checked/un-checked state (see Checked . NoCheck The menu item will be shown normally, with no check indicator. Radio The menu item is part of a menu radio group (see Checked and will indicate selected state." - }, - "api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html", - "title": "Class MenuOpeningEventArgs", - "keywords": "Class MenuOpeningEventArgs An System.EventArgs which allows passing a cancelable menu opening event or replacing with a new MenuBarItem . Inheritance System.Object System.EventArgs MenuOpeningEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MenuOpeningEventArgs : EventArgs Constructors | Improve this Doc View Source MenuOpeningEventArgs(MenuBarItem) Initializes a new instance of MenuOpeningEventArgs Declaration public MenuOpeningEventArgs(MenuBarItem currentMenu) Parameters Type Name Description MenuBarItem currentMenu The current MenuBarItem parent. Properties | Improve this Doc View Source Cancel Flag that allows you to cancel the opening of the menu. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source CurrentMenu The current MenuBarItem parent. Declaration public MenuBarItem CurrentMenu { get; } Property Value Type Description MenuBarItem | Improve this Doc View Source NewMenuBarItem The new MenuBarItem to be replaced. Declaration public MenuBarItem NewMenuBarItem { get; set; } Property Value Type Description MenuBarItem" - }, - "api/Terminal.Gui/Terminal.Gui.MessageBox.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MessageBox.html", - "title": "Class MessageBox", - "keywords": "Class MessageBox MessageBox displays a modal message to the user, with a title, a message and a series of options that the user can choose from. Inheritance System.Object MessageBox Examples var n = MessageBox.Query (\"Quit Demo\", \"Are you sure you want to quit this demo?\", \"Yes\", \"No\"); if (n == 0) quit = true; else quit = false; Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public static class MessageBox Properties | Improve this Doc View Source Clicked The index of the selected button, or -1 if the user pressed ESC to close the dialog. This is useful for web based console where by default there is no SynchronizationContext or TaskScheduler. Declaration public static int Clicked { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source ErrorQuery(ustring, ustring, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int ErrorQuery(ustring title, ustring message, params ustring[] buttons) Parameters Type Name Description NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source ErrorQuery(ustring, ustring, Int32, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int ErrorQuery(ustring title, ustring message, int defaultButton = 0, params ustring[] buttons) Parameters Type Name Description NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source ErrorQuery(ustring, ustring, Int32, Border, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int ErrorQuery(ustring title, ustring message, int defaultButton = 0, Border border = null, params ustring[] buttons) Parameters Type Name Description NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. Border border The border settings. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source ErrorQuery(Int32, Int32, ustring, ustring, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int ErrorQuery(int width, int height, ustring title, ustring message, params ustring[] buttons) Parameters Type Name Description System.Int32 width Width for the window. System.Int32 height Height for the window. NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source ErrorQuery(Int32, Int32, ustring, ustring, Int32, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int ErrorQuery(int width, int height, ustring title, ustring message, int defaultButton = 0, params ustring[] buttons) Parameters Type Name Description System.Int32 width Width for the window. System.Int32 height Height for the window. NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source ErrorQuery(Int32, Int32, ustring, ustring, Int32, Border, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int ErrorQuery(int width, int height, ustring title, ustring message, int defaultButton = 0, Border border = null, params ustring[] buttons) Parameters Type Name Description System.Int32 width Width for the window. System.Int32 height Height for the window. NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. Border border The border settings. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source Query(ustring, ustring, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int Query(ustring title, ustring message, params ustring[] buttons) Parameters Type Name Description NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source Query(ustring, ustring, Int32, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int Query(ustring title, ustring message, int defaultButton = 0, params ustring[] buttons) Parameters Type Name Description NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source Query(ustring, ustring, Int32, Border, ustring[]) Presents an error MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int Query(ustring title, ustring message, int defaultButton = 0, Border border = null, params ustring[] buttons) Parameters Type Name Description NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. Border border The border settings. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source Query(Int32, Int32, ustring, ustring, ustring[]) Presents a normal MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int Query(int width, int height, ustring title, ustring message, params ustring[] buttons) Parameters Type Name Description System.Int32 width Width for the window. System.Int32 height Height for the window. NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source Query(Int32, Int32, ustring, ustring, Int32, ustring[]) Presents a normal MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int Query(int width, int height, ustring title, ustring message, int defaultButton = 0, params ustring[] buttons) Parameters Type Name Description System.Int32 width Width for the window. System.Int32 height Height for the window. NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog. | Improve this Doc View Source Query(Int32, Int32, ustring, ustring, Int32, Border, ustring[]) Presents a normal MessageBox with the specified title and message and a list of buttons to show to the user. Declaration public static int Query(int width, int height, ustring title, ustring message, int defaultButton = 0, Border border = null, params ustring[] buttons) Parameters Type Name Description System.Int32 width Width for the window. System.Int32 height Height for the window. NStack.ustring title Title for the query. NStack.ustring message Message to display, might contain multiple lines. System.Int32 defaultButton Index of the default button. Border border The border settings. NStack.ustring [] buttons Array of buttons to add. Returns Type Description System.Int32 The index of the selected button, or -1 if the user pressed ESC to close the dialog." - }, - "api/Terminal.Gui/Terminal.Gui.MouseEvent.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MouseEvent.html", - "title": "Struct MouseEvent", - "keywords": "Struct MouseEvent Describes a mouse event Inherited Members System.ValueType.Equals(System.Object) System.ValueType.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct MouseEvent Fields | Improve this Doc View Source Flags Flags indicating the kind of mouse event that is being posted. Declaration public MouseFlags Flags Field Value Type Description MouseFlags | Improve this Doc View Source OfX The offset X (column) location for the mouse event. Declaration public int OfX Field Value Type Description System.Int32 | Improve this Doc View Source OfY The offset Y (column) location for the mouse event. Declaration public int OfY Field Value Type Description System.Int32 | Improve this Doc View Source View The current view at the location for the mouse event. Declaration public View View Field Value Type Description View | Improve this Doc View Source X The X (column) location for the mouse event. Declaration public int X Field Value Type Description System.Int32 | Improve this Doc View Source Y The Y (column) location for the mouse event. Declaration public int Y Field Value Type Description System.Int32 Methods | Improve this Doc View Source ToString() Returns a System.String that represents the current MouseEvent . Declaration public override string ToString() Returns Type Description System.String A System.String that represents the current MouseEvent . Overrides System.ValueType.ToString()" - }, - "api/Terminal.Gui/Terminal.Gui.MouseFlags.html": { - "href": "api/Terminal.Gui/Terminal.Gui.MouseFlags.html", - "title": "Enum MouseFlags", - "keywords": "Enum MouseFlags Mouse flags reported in MouseEvent . Remarks They just happen to map to the ncurses ones. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax [Flags] public enum MouseFlags Fields Name Description AllEvents Mask that captures all the events. Button1Clicked The first mouse button was clicked (press+release). Button1DoubleClicked The first mouse button was double-clicked. Button1Pressed The first mouse button was pressed. Button1Released The first mouse button was released. Button1TripleClicked The first mouse button was triple-clicked. Button2Clicked The second mouse button was clicked (press+release). Button2DoubleClicked The second mouse button was double-clicked. Button2Pressed The second mouse button was pressed. Button2Released The second mouse button was released. Button2TripleClicked The second mouse button was triple-clicked. Button3Clicked The third mouse button was clicked (press+release). Button3DoubleClicked The third mouse button was double-clicked. Button3Pressed The third mouse button was pressed. Button3Released The third mouse button was released. Button3TripleClicked The third mouse button was triple-clicked. Button4Clicked The fourth button was clicked (press+release). Button4DoubleClicked The fourth button was double-clicked. Button4Pressed The fourth mouse button was pressed. Button4Released The fourth mouse button was released. Button4TripleClicked The fourth button was triple-clicked. ButtonAlt Flag: the alt key was pressed when the mouse button took place. ButtonCtrl Flag: the ctrl key was pressed when the mouse button took place. ButtonShift Flag: the shift key was pressed when the mouse button took place. ReportMousePosition The mouse position is being reported in this event. WheeledDown Vertical button wheeled up. WheeledLeft Vertical button wheeled up while pressing ButtonShift. WheeledRight Vertical button wheeled down while pressing ButtonShift. WheeledUp Vertical button wheeled up." - }, - "api/Terminal.Gui/Terminal.Gui.OpenDialog.html": { - "href": "api/Terminal.Gui/Terminal.Gui.OpenDialog.html", - "title": "Class OpenDialog", - "keywords": "Class OpenDialog The OpenDialog provides an interactive dialog box for users to select files or directories. Inheritance System.Object Responder View Toplevel Window Dialog FileDialog OpenDialog Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The open dialog can be used to select files for opening, it can be configured to allow multiple items to be selected (based on the AllowsMultipleSelection) variable and you can control whether this should allow files or directories to be selected. To use, create an instance of OpenDialog , and pass it to Run(Func) . This will run the dialog modally, and when this returns, the list of files will be available on the FilePaths property. To select more than one file, users can use the spacebar, or control-t. Inherited Members FileDialog.WillPresent() FileDialog.Prompt FileDialog.NameDirLabel FileDialog.NameFieldLabel FileDialog.Message FileDialog.CanCreateDirectories FileDialog.IsExtensionHidden FileDialog.DirectoryPath FileDialog.AllowedFileTypes FileDialog.AllowsOtherFileTypes FileDialog.FilePath FileDialog.Canceled Dialog.AddButton(Button) Dialog.ButtonAlignment Dialog.ProcessKey(KeyEvent) Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class OpenDialog : FileDialog, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source OpenDialog() Initializes a new OpenDialog . Declaration public OpenDialog() | Improve this Doc View Source OpenDialog(ustring, ustring, List, OpenDialog.OpenMode) Initializes a new OpenDialog . Declaration public OpenDialog(ustring title, ustring message, List allowedTypes = null, OpenDialog.OpenMode openMode = OpenDialog.OpenMode.File) Parameters Type Name Description NStack.ustring title The title. NStack.ustring message The message. System.Collections.Generic.List < System.String > allowedTypes The allowed types. OpenDialog.OpenMode openMode The open mode. Properties | Improve this Doc View Source AllowsMultipleSelection Gets or sets a value indicating whether this OpenDialog allows multiple selection. Declaration public bool AllowsMultipleSelection { get; set; } Property Value Type Description System.Boolean true if allows multiple selection; otherwise, false , defaults to false. | Improve this Doc View Source CanChooseDirectories Gets or sets a value indicating whether this OpenDialog can choose directories. Declaration public bool CanChooseDirectories { get; set; } Property Value Type Description System.Boolean true if can choose directories; otherwise, false defaults to false . | Improve this Doc View Source CanChooseFiles Gets or sets a value indicating whether this OpenDialog can choose files. Declaration public bool CanChooseFiles { get; set; } Property Value Type Description System.Boolean true if can choose files; otherwise, false . Defaults to true | Improve this Doc View Source FilePaths Returns the selected files, or an empty list if nothing has been selected Declaration public IReadOnlyList FilePaths { get; } Property Value Type Description System.Collections.Generic.IReadOnlyList < System.String > The file paths. Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html": { - "href": "api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html", - "title": "Enum OpenDialog.OpenMode", - "keywords": "Enum OpenDialog.OpenMode Determine which System.IO type to open. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum OpenMode Fields Name Description Directory Opens only directory or directories. File Opens only file or files. Mixed Opens files and directories." - }, - "api/Terminal.Gui/Terminal.Gui.PanelView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.PanelView.html", - "title": "Class PanelView", - "keywords": "Class PanelView A container for single Child that will allow to drawn Border in two ways. If UsePanelFrame the borders and the child will be accommodated in the available panel size, otherwise the panel will be resized based on the child and borders thickness sizes. Inheritance System.Object Responder View PanelView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class PanelView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source PanelView() Initializes a panel with a null child. Declaration public PanelView() | Improve this Doc View Source PanelView(View) Initializes a panel with a valid child. Declaration public PanelView(View child) Parameters Type Name Description View child Properties | Improve this Doc View Source Border Declaration public override Border Border { get; set; } Property Value Type Description Border Overrides View.Border | Improve this Doc View Source Child The child that will use this panel. Declaration public View Child { get; set; } Property Value Type Description View | Improve this Doc View Source UsePanelFrame Gets or sets if the panel size will used, otherwise the child size. Declaration public bool UsePanelFrame { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source Add(View) Declaration public override void Add(View view) Parameters Type Name Description View view Overrides View.Add(View) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source Remove(View) Declaration public override void Remove(View view) Parameters Type Name Description View view Overrides View.Remove(View) | Improve this Doc View Source RemoveAll() Declaration public override void RemoveAll() Overrides View.RemoveAll() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Point.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Point.html", - "title": "Struct Point", - "keywords": "Struct Point Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane. Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct Point Constructors | Improve this Doc View Source Point(Int32, Int32) Point Constructor Declaration public Point(int x, int y) Parameters Type Name Description System.Int32 x System.Int32 y | Improve this Doc View Source Point(Size) Point Constructor Declaration public Point(Size sz) Parameters Type Name Description Size sz Fields | Improve this Doc View Source Empty Empty Shared Field Declaration public static readonly Point Empty Field Value Type Description Point | Improve this Doc View Source X Gets or sets the x-coordinate of this Point. Declaration public int X Field Value Type Description System.Int32 | Improve this Doc View Source Y Gets or sets the y-coordinate of this Point. Declaration public int Y Field Value Type Description System.Int32 Properties | Improve this Doc View Source IsEmpty IsEmpty Property Declaration public readonly bool IsEmpty { get; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source Add(Point, Size) Adds the specified Size to the specified Point. Declaration public static Point Add(Point pt, Size sz) Parameters Type Name Description Point pt The Point to add. Size sz The Size to add. Returns Type Description Point The Point that is the result of the addition operation. | Improve this Doc View Source Equals(Object) Equals Method Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.ValueType.Equals(System.Object) | Improve this Doc View Source GetHashCode() GetHashCode Method Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.ValueType.GetHashCode() | Improve this Doc View Source Offset(Int32, Int32) Offset Method Declaration public void Offset(int dx, int dy) Parameters Type Name Description System.Int32 dx System.Int32 dy | Improve this Doc View Source Offset(Point) Translates this Point by the specified Point. Declaration public void Offset(Point p) Parameters Type Name Description Point p The Point used offset this Point. | Improve this Doc View Source Subtract(Point, Size) Returns the result of subtracting specified Size from the specified Point. Declaration public static Point Subtract(Point pt, Size sz) Parameters Type Name Description Point pt The Point to be subtracted from. Size sz The Size to subtract from the Point. Returns Type Description Point The Point that is the result of the subtraction operation. | Improve this Doc View Source ToString() ToString Method Declaration public override string ToString() Returns Type Description System.String Overrides System.ValueType.ToString() Operators | Improve this Doc View Source Addition(Point, Size) Addition Operator Declaration public static Point operator +(Point pt, Size sz) Parameters Type Name Description Point pt Size sz Returns Type Description Point | Improve this Doc View Source Equality(Point, Point) Equality Operator Declaration public static bool operator ==(Point left, Point right) Parameters Type Name Description Point left Point right Returns Type Description System.Boolean | Improve this Doc View Source Explicit(Point to Size) Point to Size Conversion Declaration public static explicit operator Size(Point p) Parameters Type Name Description Point p Returns Type Description Size | Improve this Doc View Source Inequality(Point, Point) Inequality Operator Declaration public static bool operator !=(Point left, Point right) Parameters Type Name Description Point left Point right Returns Type Description System.Boolean | Improve this Doc View Source Subtraction(Point, Size) Subtraction Operator Declaration public static Point operator -(Point pt, Size sz) Parameters Type Name Description Point pt Size sz Returns Type Description Point" - }, - "api/Terminal.Gui/Terminal.Gui.PointF.html": { - "href": "api/Terminal.Gui/Terminal.Gui.PointF.html", - "title": "Struct PointF", - "keywords": "Struct PointF Represents an ordered pair of x and y coordinates that define a point in a two-dimensional plane. Implements System.IEquatable < PointF > Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct PointF : IEquatable Constructors | Improve this Doc View Source PointF(Single, Single) Initializes a new instance of the PointF class with the specified coordinates. Declaration public PointF(float x, float y) Parameters Type Name Description System.Single x System.Single y Fields | Improve this Doc View Source Empty Creates a new instance of the PointF class with member data left uninitialized. Declaration public static readonly PointF Empty Field Value Type Description PointF Properties | Improve this Doc View Source IsEmpty Gets a value indicating whether this PointF is empty. Declaration [Browsable(false)] public readonly bool IsEmpty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source X Gets the x-coordinate of this PointF . Declaration public float X { get; set; } Property Value Type Description System.Single | Improve this Doc View Source Y Gets the y-coordinate of this PointF . Declaration public float Y { get; set; } Property Value Type Description System.Single Methods | Improve this Doc View Source Add(PointF, Size) Translates a PointF by a given Size . Declaration public static PointF Add(PointF pt, Size sz) Parameters Type Name Description PointF pt Size sz Returns Type Description PointF | Improve this Doc View Source Add(PointF, SizeF) Translates a PointF by a given SizeF . Declaration public static PointF Add(PointF pt, SizeF sz) Parameters Type Name Description PointF pt SizeF sz Returns Type Description PointF | Improve this Doc View Source Equals(Object) Compares two PointF objects. The result specifies whether the values of the X and Y properties of the two PointF objects are equal. Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.ValueType.Equals(System.Object) | Improve this Doc View Source Equals(PointF) Compares two PointF objects. The result specifies whether the values of the X and Y properties of the two PointF objects are equal. Declaration public bool Equals(PointF other) Parameters Type Name Description PointF other Returns Type Description System.Boolean | Improve this Doc View Source GetHashCode() Generates a hashcode from the X and Y components Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.ValueType.GetHashCode() | Improve this Doc View Source Subtract(PointF, Size) Translates a PointF by the negative of a given Size . Declaration public static PointF Subtract(PointF pt, Size sz) Parameters Type Name Description PointF pt Size sz Returns Type Description PointF | Improve this Doc View Source Subtract(PointF, SizeF) Translates a PointF by the negative of a given SizeF . Declaration public static PointF Subtract(PointF pt, SizeF sz) Parameters Type Name Description PointF pt SizeF sz Returns Type Description PointF | Improve this Doc View Source ToString() Returns a string including the X and Y values Declaration public override string ToString() Returns Type Description System.String Overrides System.ValueType.ToString() Operators | Improve this Doc View Source Addition(PointF, Size) Translates a PointF by a given Size . Declaration public static PointF operator +(PointF pt, Size sz) Parameters Type Name Description PointF pt Size sz Returns Type Description PointF | Improve this Doc View Source Addition(PointF, SizeF) Translates a PointF by a given SizeF . Declaration public static PointF operator +(PointF pt, SizeF sz) Parameters Type Name Description PointF pt SizeF sz Returns Type Description PointF | Improve this Doc View Source Equality(PointF, PointF) Compares two PointF objects. The result specifies whether the values of the X and Y properties of the two PointF objects are equal. Declaration public static bool operator ==(PointF left, PointF right) Parameters Type Name Description PointF left PointF right Returns Type Description System.Boolean | Improve this Doc View Source Inequality(PointF, PointF) Compares two PointF objects. The result specifies whether the values of the X or Y properties of the two PointF objects are unequal. Declaration public static bool operator !=(PointF left, PointF right) Parameters Type Name Description PointF left PointF right Returns Type Description System.Boolean | Improve this Doc View Source Subtraction(PointF, Size) Translates a PointF by the negative of a given Size . Declaration public static PointF operator -(PointF pt, Size sz) Parameters Type Name Description PointF pt Size sz Returns Type Description PointF | Improve this Doc View Source Subtraction(PointF, SizeF) Translates a PointF by the negative of a given SizeF . Declaration public static PointF operator -(PointF pt, SizeF sz) Parameters Type Name Description PointF pt SizeF sz Returns Type Description PointF Implements System.IEquatable" - }, - "api/Terminal.Gui/Terminal.Gui.Pos.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Pos.html", - "title": "Class Pos", - "keywords": "Class Pos Describes the position of a View which can be an absolute value, a percentage, centered, or relative to the ending dimension. Integer values are implicitly convertible to an absolute Pos . These objects are created using the static methods Percent, AnchorEnd, and Center. The Pos objects can be combined with the addition and subtraction operators. Inheritance System.Object Pos Remarks Use the Pos objects on the X or Y properties of a view to control the position. These can be used to set the absolute position, when merely assigning an integer value (via the implicit integer to Pos conversion), and they can be combined to produce more useful layouts, like: Pos.Center - 3, which would shift the position of the View 3 characters to the left after centering for example. It is possible to reference coordinates of another view by using the methods Left(View), Right(View), Bottom(View), Top(View). The X(View) and Y(View) are aliases to Left(View) and Top(View) respectively. Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Pos Methods | Improve this Doc View Source AnchorEnd(Int32) Creates a Pos object that is anchored to the end (right side or bottom) of the dimension, useful to flush the layout from the right or bottom. Declaration public static Pos AnchorEnd(int margin = 0) Parameters Type Name Description System.Int32 margin Optional margin to place to the right or below. Returns Type Description Pos The Pos object anchored to the end (the bottom or the right side). | Improve this Doc View Source At(Int32) Creates an Absolute Pos from the specified integer value. Declaration public static Pos At(int n) Parameters Type Name Description System.Int32 n The value to convert to the Pos . Returns Type Description Pos The Absolute Pos . | Improve this Doc View Source Bottom(View) Returns a Pos object tracks the Bottom (Y+Height) coordinate of the specified View Declaration public static Pos Bottom(View view) Parameters Type Name Description View view The View that will be tracked. Returns Type Description Pos The Pos that depends on the other view. | Improve this Doc View Source Center() Returns a Pos object that can be used to center the View Declaration public static Pos Center() Returns Type Description Pos The center Pos. | Improve this Doc View Source Equals(Object) Determines whether the specified object is equal to the current object. Declaration public override bool Equals(object other) Parameters Type Name Description System.Object other The object to compare with the current object. Returns Type Description System.Boolean true if the specified object is equal to the current object; otherwise, false . Overrides System.Object.Equals(System.Object) | Improve this Doc View Source Function(Func) Creates a \"PosFunc\" from the specified function. Declaration public static Pos Function(Func function) Parameters Type Name Description System.Func < System.Int32 > function The function to be executed. Returns Type Description Pos The Pos returned from the function. | Improve this Doc View Source GetHashCode() Serves as the default hash function. Declaration public override int GetHashCode() Returns Type Description System.Int32 A hash code for the current object. Overrides System.Object.GetHashCode() | Improve this Doc View Source Left(View) Returns a Pos object tracks the Left (X) position of the specified View . Declaration public static Pos Left(View view) Parameters Type Name Description View view The View that will be tracked. Returns Type Description Pos The Pos that depends on the other view. | Improve this Doc View Source Percent(Single) Creates a percentage Pos object Declaration public static Pos Percent(float n) Parameters Type Name Description System.Single n A value between 0 and 100 representing the percentage. Returns Type Description Pos The percent Pos object. | Improve this Doc View Source Right(View) Returns a Pos object tracks the Right (X+Width) coordinate of the specified View . Declaration public static Pos Right(View view) Parameters Type Name Description View view The View that will be tracked. Returns Type Description Pos The Pos that depends on the other view. | Improve this Doc View Source Top(View) Returns a Pos object tracks the Top (Y) position of the specified View . Declaration public static Pos Top(View view) Parameters Type Name Description View view The View that will be tracked. Returns Type Description Pos The Pos that depends on the other view. | Improve this Doc View Source X(View) Returns a Pos object tracks the Left (X) position of the specified View . Declaration public static Pos X(View view) Parameters Type Name Description View view The View that will be tracked. Returns Type Description Pos The Pos that depends on the other view. | Improve this Doc View Source Y(View) Returns a Pos object tracks the Top (Y) position of the specified View . Declaration public static Pos Y(View view) Parameters Type Name Description View view The View that will be tracked. Returns Type Description Pos The Pos that depends on the other view. Operators | Improve this Doc View Source Addition(Pos, Pos) Adds a Pos to a Pos , yielding a new Pos . Declaration public static Pos operator +(Pos left, Pos right) Parameters Type Name Description Pos left The first Pos to add. Pos right The second Pos to add. Returns Type Description Pos The Pos that is the sum of the values of left and right . | Improve this Doc View Source Implicit(Int32 to Pos) Creates an Absolute Pos from the specified integer value. Declaration public static implicit operator Pos(int n) Parameters Type Name Description System.Int32 n The value to convert to the Pos . Returns Type Description Pos The Absolute Pos . | Improve this Doc View Source Subtraction(Pos, Pos) Subtracts a Pos from a Pos , yielding a new Pos . Declaration public static Pos operator -(Pos left, Pos right) Parameters Type Name Description Pos left The Pos to subtract from (the minuend). Pos right The Pos to subtract (the subtrahend). Returns Type Description Pos The Pos that is the left minus right ." - }, - "api/Terminal.Gui/Terminal.Gui.ProgressBar.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ProgressBar.html", - "title": "Class ProgressBar", - "keywords": "Class ProgressBar A Progress Bar view that can indicate progress of an activity visually. Inheritance System.Object Responder View ProgressBar Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks ProgressBar can operate in two modes, percentage mode, or activity mode. The progress bar starts in percentage mode and setting the Fraction property will reflect on the UI the progress made so far. Activity mode is used when the application has no way of knowing how much time is left, and is started when the Pulse() method is called. Call Pulse() repeatedly as progress is made. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ProgressBar : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ProgressBar() Initializes a new instance of the ProgressBar class, starts in percentage mode and uses relative layout. Declaration public ProgressBar() | Improve this Doc View Source ProgressBar(Rect) Initializes a new instance of the ProgressBar class, starts in percentage mode with an absolute position and size. Declaration public ProgressBar(Rect rect) Parameters Type Name Description Rect rect Rect. Properties | Improve this Doc View Source BidirectionalMarquee Specifies if the MarqueeBlocks or the MarqueeContinuous styles is unidirectional or bidirectional. Declaration public bool BidirectionalMarquee { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Fraction Gets or sets the ProgressBar fraction to display, must be a value between 0 and 1. Declaration public float Fraction { get; set; } Property Value Type Description System.Single The fraction representing the progress. | Improve this Doc View Source ProgressBarFormat Specifies the format that a ProgressBar uses to indicate the visual presentation. Declaration public ProgressBarFormat ProgressBarFormat { get; set; } Property Value Type Description ProgressBarFormat | Improve this Doc View Source ProgressBarStyle Gets/Sets the progress bar style based on the ProgressBarStyle Declaration public ProgressBarStyle ProgressBarStyle { get; set; } Property Value Type Description ProgressBarStyle | Improve this Doc View Source SegmentCharacter Segment indicator for meter views. Declaration public Rune SegmentCharacter { get; set; } Property Value Type Description System.Rune | Improve this Doc View Source Text Declaration public override ustring Text { get; set; } Property Value Type Description NStack.ustring Overrides View.Text Methods | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source Pulse() Notifies the ProgressBar that some progress has taken place. Declaration public void Pulse() | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect region) Parameters Type Name Description Rect region Overrides View.Redraw(Rect) Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html", - "title": "Enum ProgressBarFormat", - "keywords": "Enum ProgressBarFormat Specifies the format that a ProgressBar uses to indicate the visual presentation. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum ProgressBarFormat Fields Name Description Framed A framed visual presentation showing only the progress bar. FramedPlusPercentage A framed visual presentation showing the progress bar and the percentage. FramedProgressPadded A framed visual presentation showing all with the progress bar padded. Simple A simple visual presentation showing only the progress bar. SimplePlusPercentage A simple visual presentation showing the progress bar and the percentage." - }, - "api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html", - "title": "Enum ProgressBarStyle", - "keywords": "Enum ProgressBarStyle Specifies the style that a ProgressBar uses to indicate the progress of an operation. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum ProgressBarStyle Fields Name Description Blocks Indicates progress by increasing the number of segmented blocks in a ProgressBar . Continuous Indicates progress by increasing the size of a smooth, continuous bar in a ProgressBar . MarqueeBlocks Indicates progress by continuously scrolling a block across a ProgressBar in a marquee fashion. MarqueeContinuous Indicates progress by continuously scrolling a block across a ProgressBar in a marquee fashion." - }, - "api/Terminal.Gui/Terminal.Gui.RadioGroup.html": { - "href": "api/Terminal.Gui/Terminal.Gui.RadioGroup.html", - "title": "Class RadioGroup", - "keywords": "Class RadioGroup Displays a group of labels each with a selected indicator. Only one of those can be selected at a given time. Inheritance System.Object Responder View RadioGroup Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class RadioGroup : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source RadioGroup() Initializes a new instance of the RadioGroup class using Computed layout. Declaration public RadioGroup() | Improve this Doc View Source RadioGroup(ustring[], Int32) Initializes a new instance of the RadioGroup class using Computed layout. Declaration public RadioGroup(ustring[] radioLabels, int selected = 0) Parameters Type Name Description NStack.ustring [] radioLabels The radio labels; an array of strings that can contain hotkeys using an underscore before the letter. System.Int32 selected The index of the item to be selected, the value is clamped to the number of items. | Improve this Doc View Source RadioGroup(Int32, Int32, ustring[], Int32) Initializes a new instance of the RadioGroup class using Absolute layout. The View frame is computed from the provided radio labels. Declaration public RadioGroup(int x, int y, ustring[] radioLabels, int selected = 0) Parameters Type Name Description System.Int32 x The x coordinate. System.Int32 y The y coordinate. NStack.ustring [] radioLabels The radio labels; an array of strings that can contain hotkeys using an underscore before the letter. System.Int32 selected The item to be selected, the value is clamped to the number of items. | Improve this Doc View Source RadioGroup(Rect, ustring[], Int32) Initializes a new instance of the RadioGroup class using Absolute layout. Declaration public RadioGroup(Rect rect, ustring[] radioLabels, int selected = 0) Parameters Type Name Description Rect rect Boundaries for the radio group. NStack.ustring [] radioLabels The radio labels; an array of strings that can contain hotkeys using an underscore before the letter. System.Int32 selected The index of item to be selected, the value is clamped to the number of items. Properties | Improve this Doc View Source DisplayMode Gets or sets the DisplayModeLayout for this RadioGroup . Declaration public DisplayModeLayout DisplayMode { get; set; } Property Value Type Description DisplayModeLayout | Improve this Doc View Source HorizontalSpace Gets or sets the horizontal space for this RadioGroup if the DisplayMode is Horizontal Declaration public int HorizontalSpace { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source RadioLabels The radio labels to display Declaration public ustring[] RadioLabels { get; set; } Property Value Type Description NStack.ustring [] The radio labels. | Improve this Doc View Source SelectedItem The currently selected item from the list of radio labels Declaration public int SelectedItem { get; set; } Property Value Type Description System.Int32 The selected. Methods | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnSelectedItemChanged(Int32, Int32) Called whenever the current selected item changes. Invokes the SelectedItemChanged event. Declaration public virtual void OnSelectedItemChanged(int selectedItem, int previousSelectedItem) Parameters Type Name Description System.Int32 selectedItem System.Int32 previousSelectedItem | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessColdKey(KeyEvent) Declaration public override bool ProcessColdKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessColdKey(KeyEvent) | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source Refresh() Allow to invoke the SelectedItemChanged after their creation. Declaration public void Refresh() Events | Improve this Doc View Source SelectedItemChanged Invoked when the selected radio label has changed. Declaration public event Action SelectedItemChanged Event Type Type Description System.Action < SelectedItemChangedArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Rect.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Rect.html", - "title": "Struct Rect", - "keywords": "Struct Rect Stores a set of four integers that represent the location and size of a rectangle Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct Rect Constructors | Improve this Doc View Source Rect(Int32, Int32, Int32, Int32) Rectangle Constructor Declaration public Rect(int x, int y, int width, int height) Parameters Type Name Description System.Int32 x System.Int32 y System.Int32 width System.Int32 height | Improve this Doc View Source Rect(Point, Size) Rectangle Constructor Declaration public Rect(Point location, Size size) Parameters Type Name Description Point location Size size Fields | Improve this Doc View Source Empty Empty Shared Field Declaration public static readonly Rect Empty Field Value Type Description Rect | Improve this Doc View Source X Gets or sets the x-coordinate of the upper-left corner of this Rectangle structure. Declaration public int X Field Value Type Description System.Int32 | Improve this Doc View Source Y Gets or sets the y-coordinate of the upper-left corner of this Rectangle structure. Declaration public int Y Field Value Type Description System.Int32 Properties | Improve this Doc View Source Bottom Bottom Property Declaration public readonly int Bottom { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Height Gets or sets the height of this Rectangle structure. Declaration public int Height { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source IsEmpty IsEmpty Property Declaration public readonly bool IsEmpty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Left Left Property Declaration public readonly int Left { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Location Location Property Declaration public Point Location { get; set; } Property Value Type Description Point | Improve this Doc View Source Right Right Property Declaration public readonly int Right { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Size Size Property Declaration public Size Size { get; set; } Property Value Type Description Size | Improve this Doc View Source Top Top Property Declaration public readonly int Top { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Width Gets or sets the width of this Rect structure. Declaration public int Width { get; set; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source Contains(Int32, Int32) Contains Method Declaration public bool Contains(int x, int y) Parameters Type Name Description System.Int32 x System.Int32 y Returns Type Description System.Boolean | Improve this Doc View Source Contains(Point) Contains Method Declaration public bool Contains(Point pt) Parameters Type Name Description Point pt Returns Type Description System.Boolean | Improve this Doc View Source Contains(Rect) Contains Method Declaration public bool Contains(Rect rect) Parameters Type Name Description Rect rect Returns Type Description System.Boolean | Improve this Doc View Source Equals(Object) Equals Method Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.ValueType.Equals(System.Object) | Improve this Doc View Source FromLTRB(Int32, Int32, Int32, Int32) FromLTRB Shared Method Declaration public static Rect FromLTRB(int left, int top, int right, int bottom) Parameters Type Name Description System.Int32 left System.Int32 top System.Int32 right System.Int32 bottom Returns Type Description Rect | Improve this Doc View Source GetHashCode() GetHashCode Method Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.ValueType.GetHashCode() | Improve this Doc View Source Inflate(Int32, Int32) Inflate Method Declaration public void Inflate(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height | Improve this Doc View Source Inflate(Rect, Int32, Int32) Inflate Shared Method Declaration public static Rect Inflate(Rect rect, int x, int y) Parameters Type Name Description Rect rect System.Int32 x System.Int32 y Returns Type Description Rect | Improve this Doc View Source Inflate(Size) Inflate Method Declaration public void Inflate(Size size) Parameters Type Name Description Size size | Improve this Doc View Source Intersect(Rect) Intersect Method Declaration public void Intersect(Rect rect) Parameters Type Name Description Rect rect | Improve this Doc View Source Intersect(Rect, Rect) Intersect Shared Method Declaration public static Rect Intersect(Rect a, Rect b) Parameters Type Name Description Rect a Rect b Returns Type Description Rect | Improve this Doc View Source IntersectsWith(Rect) IntersectsWith Method Declaration public bool IntersectsWith(Rect rect) Parameters Type Name Description Rect rect Returns Type Description System.Boolean | Improve this Doc View Source Offset(Int32, Int32) Offset Method Declaration public void Offset(int x, int y) Parameters Type Name Description System.Int32 x System.Int32 y | Improve this Doc View Source Offset(Point) Offset Method Declaration public void Offset(Point pos) Parameters Type Name Description Point pos | Improve this Doc View Source ToString() ToString Method Declaration public override string ToString() Returns Type Description System.String Overrides System.ValueType.ToString() | Improve this Doc View Source Union(Rect, Rect) Union Shared Method Declaration public static Rect Union(Rect a, Rect b) Parameters Type Name Description Rect a Rect b Returns Type Description Rect Operators | Improve this Doc View Source Equality(Rect, Rect) Equality Operator Declaration public static bool operator ==(Rect left, Rect right) Parameters Type Name Description Rect left Rect right Returns Type Description System.Boolean | Improve this Doc View Source Inequality(Rect, Rect) Inequality Operator Declaration public static bool operator !=(Rect left, Rect right) Parameters Type Name Description Rect left Rect right Returns Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.RectangleF.html": { - "href": "api/Terminal.Gui/Terminal.Gui.RectangleF.html", - "title": "Struct RectangleF", - "keywords": "Struct RectangleF Stores the location and size of a rectangular region. Implements System.IEquatable < RectangleF > Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct RectangleF : IEquatable Constructors | Improve this Doc View Source RectangleF(Single, Single, Single, Single) Initializes a new instance of the RectangleF class with the specified location and size. Declaration public RectangleF(float x, float y, float width, float height) Parameters Type Name Description System.Single x System.Single y System.Single width System.Single height | Improve this Doc View Source RectangleF(PointF, SizeF) Initializes a new instance of the RectangleF class with the specified location and size. Declaration public RectangleF(PointF location, SizeF size) Parameters Type Name Description PointF location SizeF size Fields | Improve this Doc View Source Empty Initializes a new instance of the RectangleF class. Declaration public static readonly RectangleF Empty Field Value Type Description RectangleF Properties | Improve this Doc View Source Bottom Gets the y-coordinate of the lower-right corner of the rectangular region defined by this RectangleF . Declaration [Browsable(false)] public readonly float Bottom { get; } Property Value Type Description System.Single | Improve this Doc View Source Height Gets or sets the height of the rectangular region defined by this RectangleF . Declaration public float Height { get; set; } Property Value Type Description System.Single | Improve this Doc View Source IsEmpty Tests whether this RectangleF has a Width or a Height of 0. Declaration [Browsable(false)] public readonly bool IsEmpty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Left Gets the x-coordinate of the upper-left corner of the rectangular region defined by this RectangleF . Declaration [Browsable(false)] public readonly float Left { get; } Property Value Type Description System.Single | Improve this Doc View Source Location Gets or sets the coordinates of the upper-left corner of the rectangular region represented by this RectangleF . Declaration [Browsable(false)] public PointF Location { get; set; } Property Value Type Description PointF | Improve this Doc View Source Right Gets the x-coordinate of the lower-right corner of the rectangular region defined by this RectangleF . Declaration [Browsable(false)] public readonly float Right { get; } Property Value Type Description System.Single | Improve this Doc View Source Size Gets or sets the size of this RectangleF . Declaration [Browsable(false)] public SizeF Size { get; set; } Property Value Type Description SizeF | Improve this Doc View Source Top Gets the y-coordinate of the upper-left corner of the rectangular region defined by this RectangleF . Declaration [Browsable(false)] public readonly float Top { get; } Property Value Type Description System.Single | Improve this Doc View Source Width Gets or sets the width of the rectangular region defined by this RectangleF . Declaration public float Width { get; set; } Property Value Type Description System.Single | Improve this Doc View Source X Gets or sets the x-coordinate of the upper-left corner of the rectangular region defined by this RectangleF . Declaration public float X { get; set; } Property Value Type Description System.Single | Improve this Doc View Source Y Gets or sets the y-coordinate of the upper-left corner of the rectangular region defined by this RectangleF . Declaration public float Y { get; set; } Property Value Type Description System.Single Methods | Improve this Doc View Source Contains(Single, Single) Determines if the specified point is contained within the rectangular region defined by this Rect . Declaration public bool Contains(float x, float y) Parameters Type Name Description System.Single x System.Single y Returns Type Description System.Boolean | Improve this Doc View Source Contains(PointF) Determines if the specified point is contained within the rectangular region defined by this Rect . Declaration public bool Contains(PointF pt) Parameters Type Name Description PointF pt Returns Type Description System.Boolean | Improve this Doc View Source Contains(RectangleF) Determines if the rectangular region represented by rect is entirely contained within the rectangular region represented by this Rect . Declaration public bool Contains(RectangleF rect) Parameters Type Name Description RectangleF rect Returns Type Description System.Boolean | Improve this Doc View Source Equals(Object) Tests whether obj is a RectangleF with the same location and size of this RectangleF . Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.ValueType.Equals(System.Object) | Improve this Doc View Source Equals(RectangleF) Returns true if two RectangleF objects have equal location and size. Declaration public bool Equals(RectangleF other) Parameters Type Name Description RectangleF other Returns Type Description System.Boolean | Improve this Doc View Source FromLTRB(Single, Single, Single, Single) Creates a new RectangleF with the specified location and size. Declaration public static RectangleF FromLTRB(float left, float top, float right, float bottom) Parameters Type Name Description System.Single left System.Single top System.Single right System.Single bottom Returns Type Description RectangleF | Improve this Doc View Source GetHashCode() Gets the hash code for this RectangleF . Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.ValueType.GetHashCode() | Improve this Doc View Source Inflate(Single, Single) Inflates this Rect by the specified amount. Declaration public void Inflate(float x, float y) Parameters Type Name Description System.Single x System.Single y | Improve this Doc View Source Inflate(RectangleF, Single, Single) Creates a Rect that is inflated by the specified amount. Declaration public static RectangleF Inflate(RectangleF rect, float x, float y) Parameters Type Name Description RectangleF rect System.Single x System.Single y Returns Type Description RectangleF | Improve this Doc View Source Inflate(SizeF) Inflates this Rect by the specified amount. Declaration public void Inflate(SizeF size) Parameters Type Name Description SizeF size | Improve this Doc View Source Intersect(RectangleF) Creates a Rectangle that represents the intersection between this Rectangle and rect. Declaration public void Intersect(RectangleF rect) Parameters Type Name Description RectangleF rect | Improve this Doc View Source Intersect(RectangleF, RectangleF) Creates a rectangle that represents the intersection between a and b. If there is no intersection, an empty rectangle is returned. Declaration public static RectangleF Intersect(RectangleF a, RectangleF b) Parameters Type Name Description RectangleF a RectangleF b Returns Type Description RectangleF | Improve this Doc View Source IntersectsWith(RectangleF) Determines if this rectangle intersects with rect. Declaration public bool IntersectsWith(RectangleF rect) Parameters Type Name Description RectangleF rect Returns Type Description System.Boolean | Improve this Doc View Source Offset(Single, Single) Adjusts the location of this rectangle by the specified amount. Declaration public void Offset(float x, float y) Parameters Type Name Description System.Single x System.Single y | Improve this Doc View Source Offset(PointF) Adjusts the location of this rectangle by the specified amount. Declaration public void Offset(PointF pos) Parameters Type Name Description PointF pos | Improve this Doc View Source ToString() Converts the Location and Size of this RectangleF to a human-readable string. Declaration public override string ToString() Returns Type Description System.String Overrides System.ValueType.ToString() | Improve this Doc View Source Union(RectangleF, RectangleF) Creates a rectangle that represents the union between a and b. Declaration public static RectangleF Union(RectangleF a, RectangleF b) Parameters Type Name Description RectangleF a RectangleF b Returns Type Description RectangleF Operators | Improve this Doc View Source Equality(RectangleF, RectangleF) Tests whether two RectangleF objects have equal location and size. Declaration public static bool operator ==(RectangleF left, RectangleF right) Parameters Type Name Description RectangleF left RectangleF right Returns Type Description System.Boolean | Improve this Doc View Source Implicit(Rect to RectangleF) Converts the specified Rect to a RectangleF . Declaration public static implicit operator RectangleF(Rect r) Parameters Type Name Description Rect r Returns Type Description RectangleF | Improve this Doc View Source Inequality(RectangleF, RectangleF) Tests whether two RectangleF objects differ in location or size. Declaration public static bool operator !=(RectangleF left, RectangleF right) Parameters Type Name Description RectangleF left RectangleF right Returns Type Description System.Boolean Implements System.IEquatable" - }, - "api/Terminal.Gui/Terminal.Gui.Responder.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Responder.html", - "title": "Class Responder", - "keywords": "Class Responder Responder base class implemented by objects that want to participate on keyboard and mouse input. Inheritance System.Object Responder View Implements System.IDisposable Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Responder : IDisposable Properties | Improve this Doc View Source CanFocus Gets or sets a value indicating whether this Responder can focus. Declaration public virtual bool CanFocus { get; set; } Property Value Type Description System.Boolean true if can focus; otherwise, false . | Improve this Doc View Source Enabled Gets or sets a value indicating whether this Responder can respond to user interaction. Declaration public virtual bool Enabled { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source HasFocus Gets or sets a value indicating whether this Responder has focus. Declaration public virtual bool HasFocus { get; } Property Value Type Description System.Boolean true if has focus; otherwise, false . | Improve this Doc View Source Visible Gets or sets a value indicating whether this Responder and all its child controls are displayed. Declaration public virtual bool Visible { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resource. Declaration public void Dispose() | Improve this Doc View Source Dispose(Boolean) Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Declaration protected virtual void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing | Improve this Doc View Source MouseEvent(MouseEvent) Method invoked when a mouse event is generated Declaration public virtual bool MouseEvent(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Contains the details about the mouse event. Returns Type Description System.Boolean true , if the event was handled, false otherwise. | Improve this Doc View Source OnCanFocusChanged() Method invoked when the CanFocus property from a view is changed. Declaration public virtual void OnCanFocusChanged() | Improve this Doc View Source OnEnabledChanged() Method invoked when the Enabled property from a view is changed. Declaration public virtual void OnEnabledChanged() | Improve this Doc View Source OnEnter(View) Method invoked when a view gets focus. Declaration public virtual bool OnEnter(View view) Parameters Type Name Description View view The view that is losing focus. Returns Type Description System.Boolean true , if the event was handled, false otherwise. | Improve this Doc View Source OnKeyDown(KeyEvent) Method invoked when a key is pressed. Declaration public virtual bool OnKeyDown(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Contains the details about the key that produced the event. Returns Type Description System.Boolean true if the event was handled | Improve this Doc View Source OnKeyUp(KeyEvent) Method invoked when a key is released. Declaration public virtual bool OnKeyUp(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Contains the details about the key that produced the event. Returns Type Description System.Boolean true if the event was handled | Improve this Doc View Source OnLeave(View) Method invoked when a view loses focus. Declaration public virtual bool OnLeave(View view) Parameters Type Name Description View view The view that is getting focus. Returns Type Description System.Boolean true , if the event was handled, false otherwise. | Improve this Doc View Source OnMouseEnter(MouseEvent) Method invoked when a mouse event is generated for the first time. Declaration public virtual bool OnMouseEnter(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean true , if the event was handled, false otherwise. | Improve this Doc View Source OnMouseLeave(MouseEvent) Method invoked when a mouse event is generated for the last time. Declaration public virtual bool OnMouseLeave(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean true , if the event was handled, false otherwise. | Improve this Doc View Source OnVisibleChanged() Method invoked when the Visible property from a view is changed. Declaration public virtual void OnVisibleChanged() | Improve this Doc View Source ProcessColdKey(KeyEvent) This method can be overwritten by views that want to provide accelerator functionality (Alt-key for example), but without interefering with normal ProcessKey behavior. Declaration public virtual bool ProcessColdKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Contains the details about the key that produced the event. Returns Type Description System.Boolean | Improve this Doc View Source ProcessHotKey(KeyEvent) This method can be overwritten by view that want to provide accelerator functionality (Alt-key for example). Declaration public virtual bool ProcessHotKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean | Improve this Doc View Source ProcessKey(KeyEvent) If the view is focused, gives the view a chance to process the keystroke. Declaration public virtual bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Contains the details about the key that produced the event. Returns Type Description System.Boolean Implements System.IDisposable" - }, - "api/Terminal.Gui/Terminal.Gui.SaveDialog.html": { - "href": "api/Terminal.Gui/Terminal.Gui.SaveDialog.html", - "title": "Class SaveDialog", - "keywords": "Class SaveDialog The SaveDialog provides an interactive dialog box for users to pick a file to save. Inheritance System.Object Responder View Toplevel Window Dialog FileDialog SaveDialog Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks To use, create an instance of SaveDialog , and pass it to Run(Func) . This will run the dialog modally, and when this returns, the FileName property will contain the selected file name or null if the user canceled. Inherited Members FileDialog.WillPresent() FileDialog.Prompt FileDialog.NameDirLabel FileDialog.NameFieldLabel FileDialog.Message FileDialog.CanCreateDirectories FileDialog.IsExtensionHidden FileDialog.DirectoryPath FileDialog.AllowedFileTypes FileDialog.AllowsOtherFileTypes FileDialog.FilePath FileDialog.Canceled Dialog.AddButton(Button) Dialog.ButtonAlignment Dialog.ProcessKey(KeyEvent) Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class SaveDialog : FileDialog, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source SaveDialog() Initializes a new SaveDialog . Declaration public SaveDialog() | Improve this Doc View Source SaveDialog(ustring, ustring, List) Initializes a new SaveDialog . Declaration public SaveDialog(ustring title, ustring message, List allowedTypes = null) Parameters Type Name Description NStack.ustring title The title. NStack.ustring message The message. System.Collections.Generic.List < System.String > allowedTypes The allowed types. Properties | Improve this Doc View Source FileName Gets the name of the file the user selected for saving, or null if the user canceled the SaveDialog . Declaration public ustring FileName { get; } Property Value Type Description NStack.ustring The name of the file. Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.ScrollBarView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ScrollBarView.html", - "title": "Class ScrollBarView", - "keywords": "Class ScrollBarView ScrollBarViews are views that display a 1-character scrollbar, either horizontal or vertical Inheritance System.Object Responder View ScrollBarView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The scrollbar is drawn to be a representation of the Size, assuming that the scroll position is set at Position. If the region to display the scrollbar is larger than three characters, arrow indicators are drawn. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ScrollBarView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ScrollBarView() Initializes a new instance of the ScrollBarView class using Computed layout. Declaration public ScrollBarView() | Improve this Doc View Source ScrollBarView(Int32, Int32, Boolean) Initializes a new instance of the ScrollBarView class using Computed layout. Declaration public ScrollBarView(int size, int position, bool isVertical) Parameters Type Name Description System.Int32 size The size that this scrollbar represents. System.Int32 position The position within this scrollbar. System.Boolean isVertical If set to true this is a vertical scrollbar, otherwise, the scrollbar is horizontal. | Improve this Doc View Source ScrollBarView(Rect) Initializes a new instance of the ScrollBarView class using Absolute layout. Declaration public ScrollBarView(Rect rect) Parameters Type Name Description Rect rect Frame for the scrollbar. | Improve this Doc View Source ScrollBarView(Rect, Int32, Int32, Boolean) Initializes a new instance of the ScrollBarView class using Absolute layout. Declaration public ScrollBarView(Rect rect, int size, int position, bool isVertical) Parameters Type Name Description Rect rect Frame for the scrollbar. System.Int32 size The size that this scrollbar represents. Sets the Size property. System.Int32 position The position within this scrollbar. Sets the Position property. System.Boolean isVertical If set to true this is a vertical scrollbar, otherwise, the scrollbar is horizontal. Sets the IsVertical property. | Improve this Doc View Source ScrollBarView(View, Boolean, Boolean) Initializes a new instance of the ScrollBarView class using Computed layout. Declaration public ScrollBarView(View host, bool isVertical, bool showBothScrollIndicator = true) Parameters Type Name Description View host The view that will host this scrollbar. System.Boolean isVertical If set to true this is a vertical scrollbar, otherwise, the scrollbar is horizontal. System.Boolean showBothScrollIndicator If set to true (default) will have the other scrollbar, otherwise will have only one. Properties | Improve this Doc View Source AutoHideScrollBars If true the vertical/horizontal scroll bars won't be showed if it's not needed. Declaration public bool AutoHideScrollBars { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Host Get or sets the view that host this View Declaration public View Host { get; } Property Value Type Description View | Improve this Doc View Source IsVertical If set to true this is a vertical scrollbar, otherwise, the scrollbar is horizontal. Declaration public bool IsVertical { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source KeepContentAlwaysInViewport Get or sets if the view-port is kept always visible in the area of this ScrollBarView Declaration public bool KeepContentAlwaysInViewport { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source OtherScrollBarView Represent a vertical or horizontal ScrollBarView other than this. Declaration public ScrollBarView OtherScrollBarView { get; set; } Property Value Type Description ScrollBarView | Improve this Doc View Source Position The position, relative to Size , to set the scrollbar at. Declaration public int Position { get; set; } Property Value Type Description System.Int32 The position. | Improve this Doc View Source ShowScrollIndicator Gets or sets the visibility for the vertical or horizontal scroll indicator. Declaration public bool ShowScrollIndicator { get; set; } Property Value Type Description System.Boolean true if show vertical or horizontal scroll indicator; otherwise, false . | Improve this Doc View Source Size The size of content the scrollbar represents. Declaration public int Size { get; set; } Property Value Type Description System.Int32 The size. Methods | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnChangedPosition() Virtual method to invoke the ChangedPosition action event. Declaration public virtual void OnChangedPosition() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect region) Parameters Type Name Description Rect region Overrides View.Redraw(Rect) | Improve this Doc View Source Refresh() Only used for a hosted view that will update and redraw the scrollbars. Declaration public virtual void Refresh() Events | Improve this Doc View Source ChangedPosition This event is raised when the position on the scrollbar has changed. Declaration public event Action ChangedPosition Event Type Type Description System.Action Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.ScrollView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ScrollView.html", - "title": "Class ScrollView", - "keywords": "Class ScrollView Scrollviews are views that present a window into a virtual space where subviews are added. Similar to the iOS UIScrollView. Inheritance System.Object Responder View ScrollView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The subviews that are added to this ScrollView are offset by the ContentOffset property. The view itself is a window into the space represented by the ContentSize . Use the Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ScrollView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source ScrollView() Initializes a new instance of the ScrollView class using Computed positioning. Declaration public ScrollView() | Improve this Doc View Source ScrollView(Rect) Initializes a new instance of the ScrollView class using Absolute positioning. Declaration public ScrollView(Rect frame) Parameters Type Name Description Rect frame Properties | Improve this Doc View Source AutoHideScrollBars If true the vertical/horizontal scroll bars won't be showed if it's not needed. Declaration public bool AutoHideScrollBars { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ContentOffset Represents the top left corner coordinate that is displayed by the scrollview Declaration public Point ContentOffset { get; set; } Property Value Type Description Point The content offset. | Improve this Doc View Source ContentSize Represents the contents of the data shown inside the scrollview Declaration public Size ContentSize { get; set; } Property Value Type Description Size The size of the content. | Improve this Doc View Source KeepContentAlwaysInViewport Get or sets if the view-port is kept always visible in the area of this ScrollView Declaration public bool KeepContentAlwaysInViewport { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowHorizontalScrollIndicator Gets or sets the visibility for the horizontal scroll indicator. Declaration public bool ShowHorizontalScrollIndicator { get; set; } Property Value Type Description System.Boolean true if show horizontal scroll indicator; otherwise, false . | Improve this Doc View Source ShowVerticalScrollIndicator Gets or sets the visibility for the vertical scroll indicator. Declaration public bool ShowVerticalScrollIndicator { get; set; } Property Value Type Description System.Boolean true if show vertical scroll indicator; otherwise, false . Methods | Improve this Doc View Source Add(View) Adds the view to the scrollview. Declaration public override void Add(View view) Parameters Type Name Description View view The view to add to the scrollview. Overrides View.Add(View) | Improve this Doc View Source Dispose(Boolean) Declaration protected override void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing Overrides View.Dispose(Boolean) | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect region) Parameters Type Name Description Rect region Overrides View.Redraw(Rect) | Improve this Doc View Source RemoveAll() Removes all widgets from this container. Declaration public override void RemoveAll() Overrides View.RemoveAll() | Improve this Doc View Source ScrollDown(Int32) Scrolls the view down. Declaration public bool ScrollDown(int lines) Parameters Type Name Description System.Int32 lines Number of lines to scroll. Returns Type Description System.Boolean true , if left was scrolled, false otherwise. | Improve this Doc View Source ScrollLeft(Int32) Scrolls the view to the left Declaration public bool ScrollLeft(int cols) Parameters Type Name Description System.Int32 cols Number of columns to scroll by. Returns Type Description System.Boolean true , if left was scrolled, false otherwise. | Improve this Doc View Source ScrollRight(Int32) Scrolls the view to the right. Declaration public bool ScrollRight(int cols) Parameters Type Name Description System.Int32 cols Number of columns to scroll by. Returns Type Description System.Boolean true , if right was scrolled, false otherwise. | Improve this Doc View Source ScrollUp(Int32) Scrolls the view up. Declaration public bool ScrollUp(int lines) Parameters Type Name Description System.Int32 lines Number of lines to scroll. Returns Type Description System.Boolean true , if left was scrolled, false otherwise. Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html", - "title": "Class SelectedItemChangedArgs", - "keywords": "Class SelectedItemChangedArgs Event arguments for the SelectedItemChagned event. Inheritance System.Object System.EventArgs SelectedItemChangedArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class SelectedItemChangedArgs : EventArgs Constructors | Improve this Doc View Source SelectedItemChangedArgs(Int32, Int32) Initializes a new SelectedItemChangedArgs class. Declaration public SelectedItemChangedArgs(int selectedItem, int previousSelectedItem) Parameters Type Name Description System.Int32 selectedItem System.Int32 previousSelectedItem Properties | Improve this Doc View Source PreviousSelectedItem Gets the index of the item that was previously selected. -1 if there was no previous selection. Declaration public int PreviousSelectedItem { get; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedItem Gets the index of the item that is now selected. -1 if there is no selection. Declaration public int SelectedItem { get; } Property Value Type Description System.Int32" - }, - "api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html", - "title": "Class ShortcutHelper", - "keywords": "Class ShortcutHelper Represents a helper to manipulate shortcut keys used on views. Inheritance System.Object ShortcutHelper Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ShortcutHelper Properties | Improve this Doc View Source Shortcut This is the global setting that can be used as a global shortcut to invoke the action on the view. Declaration public virtual Key Shortcut { get; set; } Property Value Type Description Key | Improve this Doc View Source ShortcutAction The action to run if the Shortcut is defined. Declaration public virtual Action ShortcutAction { get; set; } Property Value Type Description System.Action | Improve this Doc View Source ShortcutTag The keystroke combination used in the Shortcut as string. Declaration public virtual ustring ShortcutTag { get; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source CheckKeysFlagRange(Key, Key, Key) Lookup for a Key on range of keys. Declaration public static bool CheckKeysFlagRange(Key key, Key first, Key last) Parameters Type Name Description Key key The source key. Key first First key in range. Key last Last key in range. Returns Type Description System.Boolean | Improve this Doc View Source FindAndOpenByShortcut(KeyEvent, View) Allows a view to run a ShortcutAction if defined. Declaration public static bool FindAndOpenByShortcut(KeyEvent kb, View view = null) Parameters Type Name Description KeyEvent kb The KeyEvent View view The View Returns Type Description System.Boolean true if defined false otherwise. | Improve this Doc View Source GetKeyToString(Key, out Key) Return key as string. Declaration public static ustring GetKeyToString(Key key, out Key knm) Parameters Type Name Description Key key The key to extract. Key knm Correspond to the non modifier key. Returns Type Description NStack.ustring | Improve this Doc View Source GetModifiersKey(KeyEvent) Gets the key with all the keys modifiers, especially the shift key that sometimes have to be injected later. Declaration public static Key GetModifiersKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb The KeyEvent to check. Returns Type Description Key The Key with all the keys modifiers. | Improve this Doc View Source GetShortcutFromTag(ustring, ustring) Allows to retrieve a Key from a ShortcutTag Declaration public static Key GetShortcutFromTag(ustring tag, ustring delimiter = null) Parameters Type Name Description NStack.ustring tag The key as string. NStack.ustring delimiter The delimiter string. Returns Type Description Key | Improve this Doc View Source GetShortcutTag(Key, ustring) Get the Shortcut key as string. Declaration public static ustring GetShortcutTag(Key shortcut, ustring delimiter = null) Parameters Type Name Description Key shortcut The shortcut key. NStack.ustring delimiter The delimiter string. Returns Type Description NStack.ustring | Improve this Doc View Source PostShortcutValidation(Key) Used at key up validation. Declaration public static bool PostShortcutValidation(Key key) Parameters Type Name Description Key key The key to validate. Returns Type Description System.Boolean true if is valid. false otherwise. | Improve this Doc View Source PreShortcutValidation(Key) Used at key down or key press validation. Declaration public static bool PreShortcutValidation(Key key) Parameters Type Name Description Key key The key to validate. Returns Type Description System.Boolean true if is valid. false otherwise." - }, - "api/Terminal.Gui/Terminal.Gui.Size.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Size.html", - "title": "Struct Size", - "keywords": "Struct Size Stores an ordered pair of integers, which specify a Height and Width. Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct Size Constructors | Improve this Doc View Source Size(Int32, Int32) Size Constructor Declaration public Size(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height | Improve this Doc View Source Size(Point) Size Constructor Declaration public Size(Point pt) Parameters Type Name Description Point pt Fields | Improve this Doc View Source Empty Gets a Size structure that has a Height and Width value of 0. Declaration public static readonly Size Empty Field Value Type Description Size Properties | Improve this Doc View Source Height Height Property Declaration public int Height { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source IsEmpty IsEmpty Property Declaration public readonly bool IsEmpty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Width Width Property Declaration public int Width { get; set; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source Add(Size, Size) Adds the width and height of one Size structure to the width and height of another Size structure. Declaration public static Size Add(Size sz1, Size sz2) Parameters Type Name Description Size sz1 The first Size structure to add. Size sz2 The second Size structure to add. Returns Type Description Size The add. | Improve this Doc View Source Equals(Object) Equals Method Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.ValueType.Equals(System.Object) | Improve this Doc View Source GetHashCode() GetHashCode Method Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.ValueType.GetHashCode() | Improve this Doc View Source Subtract(Size, Size) Subtracts the width and height of one Size structure to the width and height of another Size structure. Declaration public static Size Subtract(Size sz1, Size sz2) Parameters Type Name Description Size sz1 The first Size structure to subtract. Size sz2 The second Size structure to subtract. Returns Type Description Size The subtract. | Improve this Doc View Source ToString() ToString Method Declaration public override string ToString() Returns Type Description System.String Overrides System.ValueType.ToString() Operators | Improve this Doc View Source Addition(Size, Size) Addition Operator Declaration public static Size operator +(Size sz1, Size sz2) Parameters Type Name Description Size sz1 Size sz2 Returns Type Description Size | Improve this Doc View Source Equality(Size, Size) Equality Operator Declaration public static bool operator ==(Size sz1, Size sz2) Parameters Type Name Description Size sz1 Size sz2 Returns Type Description System.Boolean | Improve this Doc View Source Explicit(Size to Point) Size to Point Conversion Declaration public static explicit operator Point(Size size) Parameters Type Name Description Size size Returns Type Description Point | Improve this Doc View Source Inequality(Size, Size) Inequality Operator Declaration public static bool operator !=(Size sz1, Size sz2) Parameters Type Name Description Size sz1 Size sz2 Returns Type Description System.Boolean | Improve this Doc View Source Subtraction(Size, Size) Subtraction Operator Declaration public static Size operator -(Size sz1, Size sz2) Parameters Type Name Description Size sz1 Size sz2 Returns Type Description Size" - }, - "api/Terminal.Gui/Terminal.Gui.SizeF.html": { - "href": "api/Terminal.Gui/Terminal.Gui.SizeF.html", - "title": "Struct SizeF", - "keywords": "Struct SizeF Represents the size of a rectangular region with an ordered pair of width and height. Implements System.IEquatable < SizeF > Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct SizeF : IEquatable Constructors | Improve this Doc View Source SizeF(Single, Single) Initializes a new instance of the SizeF class from the specified dimensions. Declaration public SizeF(float width, float height) Parameters Type Name Description System.Single width System.Single height | Improve this Doc View Source SizeF(PointF) Initializes a new instance of the SizeF class from the specified PointF . Declaration public SizeF(PointF pt) Parameters Type Name Description PointF pt | Improve this Doc View Source SizeF(SizeF) Initializes a new instance of the SizeF class from the specified existing SizeF . Declaration public SizeF(SizeF size) Parameters Type Name Description SizeF size Fields | Improve this Doc View Source Empty Initializes a new instance of the SizeF class. Declaration public static readonly SizeF Empty Field Value Type Description SizeF Properties | Improve this Doc View Source Height Represents the vertical component of this SizeF . Declaration public float Height { get; set; } Property Value Type Description System.Single | Improve this Doc View Source IsEmpty Tests whether this SizeF has zero width and height. Declaration [Browsable(false)] public readonly bool IsEmpty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Width Represents the horizontal component of this SizeF . Declaration public float Width { get; set; } Property Value Type Description System.Single Methods | Improve this Doc View Source Add(SizeF, SizeF) Performs vector addition of two SizeF objects. Declaration public static SizeF Add(SizeF sz1, SizeF sz2) Parameters Type Name Description SizeF sz1 SizeF sz2 Returns Type Description SizeF | Improve this Doc View Source Equals(Object) Tests to see whether the specified object is a SizeF with the same dimensions as this SizeF . Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.ValueType.Equals(System.Object) | Improve this Doc View Source Equals(SizeF) Tests whether two SizeF objects are identical. Declaration public bool Equals(SizeF other) Parameters Type Name Description SizeF other Returns Type Description System.Boolean | Improve this Doc View Source GetHashCode() Generates a hashcode from the width and height Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.ValueType.GetHashCode() | Improve this Doc View Source Subtract(SizeF, SizeF) Contracts a SizeF by another SizeF . Declaration public static SizeF Subtract(SizeF sz1, SizeF sz2) Parameters Type Name Description SizeF sz1 SizeF sz2 Returns Type Description SizeF | Improve this Doc View Source ToString() Creates a human-readable string that represents this SizeF . Declaration public override string ToString() Returns Type Description System.String Overrides System.ValueType.ToString() Operators | Improve this Doc View Source Addition(SizeF, SizeF) Performs vector addition of two SizeF objects. Declaration public static SizeF operator +(SizeF sz1, SizeF sz2) Parameters Type Name Description SizeF sz1 SizeF sz2 Returns Type Description SizeF | Improve this Doc View Source Division(SizeF, Single) Divides SizeF by a System.Single producing SizeF . Declaration public static SizeF operator /(SizeF left, float right) Parameters Type Name Description SizeF left Dividend of type SizeF . System.Single right Divisor of type System.Int32 . Returns Type Description SizeF Result of type SizeF . | Improve this Doc View Source Equality(SizeF, SizeF) Tests whether two SizeF objects are identical. Declaration public static bool operator ==(SizeF sz1, SizeF sz2) Parameters Type Name Description SizeF sz1 SizeF sz2 Returns Type Description System.Boolean | Improve this Doc View Source Explicit(SizeF to PointF) Converts the specified SizeF to a PointF . Declaration public static explicit operator PointF(SizeF size) Parameters Type Name Description SizeF size Returns Type Description PointF | Improve this Doc View Source Inequality(SizeF, SizeF) Tests whether two SizeF objects are different. Declaration public static bool operator !=(SizeF sz1, SizeF sz2) Parameters Type Name Description SizeF sz1 SizeF sz2 Returns Type Description System.Boolean | Improve this Doc View Source Multiply(Single, SizeF) Multiplies SizeF by a System.Single producing SizeF . Declaration public static SizeF operator *(float left, SizeF right) Parameters Type Name Description System.Single left Multiplier of type System.Single . SizeF right Multiplicand of type SizeF . Returns Type Description SizeF Product of type SizeF . | Improve this Doc View Source Multiply(SizeF, Single) Multiplies SizeF by a System.Single producing SizeF . Declaration public static SizeF operator *(SizeF left, float right) Parameters Type Name Description SizeF left Multiplicand of type SizeF . System.Single right Multiplier of type System.Single . Returns Type Description SizeF Product of type SizeF . | Improve this Doc View Source Subtraction(SizeF, SizeF) Contracts a SizeF by another SizeF Declaration public static SizeF operator -(SizeF sz1, SizeF sz2) Parameters Type Name Description SizeF sz1 SizeF sz2 Returns Type Description SizeF Implements System.IEquatable" - }, - "api/Terminal.Gui/Terminal.Gui.StackExtensions.html": { - "href": "api/Terminal.Gui/Terminal.Gui.StackExtensions.html", - "title": "Class StackExtensions", - "keywords": "Class StackExtensions Extension of System.Collections.Generic.Stack helper to work with specific System.Collections.Generic.IEqualityComparer Inheritance System.Object StackExtensions Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public static class StackExtensions Methods | Improve this Doc View Source Contains(Stack, T, IEqualityComparer) Check if the stack object contains the value to find. Declaration public static bool Contains(this Stack stack, T valueToFind, IEqualityComparer comparer = null) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. T valueToFind Value to find. System.Collections.Generic.IEqualityComparer comparer The comparison object. Returns Type Description System.Boolean true If the value was found. false otherwise. Type Parameters Name Description T The stack object type. | Improve this Doc View Source FindDuplicates(Stack, IEqualityComparer) Find all duplicates stack objects values. Declaration public static Stack FindDuplicates(this Stack stack, IEqualityComparer comparer = null) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. System.Collections.Generic.IEqualityComparer comparer The comparison object. Returns Type Description System.Collections.Generic.Stack The duplicates stack object. Type Parameters Name Description T The stack object type. | Improve this Doc View Source MoveNext(Stack) Move the first stack object value to the end. Declaration public static void MoveNext(this Stack stack) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. Type Parameters Name Description T The stack object type. | Improve this Doc View Source MovePrevious(Stack) Move the last stack object value to the top. Declaration public static void MovePrevious(this Stack stack) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. Type Parameters Name Description T The stack object type. | Improve this Doc View Source MoveTo(Stack, T, Int32, IEqualityComparer) Move the stack object value to the index. Declaration public static void MoveTo(this Stack stack, T valueToMove, int index = 0, IEqualityComparer comparer = null) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. T valueToMove Value to move. System.Int32 index The index where to move. System.Collections.Generic.IEqualityComparer comparer The comparison object. Type Parameters Name Description T The stack object type. | Improve this Doc View Source Replace(Stack, T, T, IEqualityComparer) Replaces an stack object values that match with the value to replace. Declaration public static void Replace(this Stack stack, T valueToReplace, T valueToReplaceWith, IEqualityComparer comparer = null) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. T valueToReplace Value to replace. T valueToReplaceWith Value to replace with to what matches the value to replace. System.Collections.Generic.IEqualityComparer comparer The comparison object. Type Parameters Name Description T The stack object type. | Improve this Doc View Source Swap(Stack, T, T, IEqualityComparer) Swap two stack objects values that matches with the both values. Declaration public static void Swap(this Stack stack, T valueToSwapFrom, T valueToSwapTo, IEqualityComparer comparer = null) Parameters Type Name Description System.Collections.Generic.Stack stack The stack object. T valueToSwapFrom Value to swap from. T valueToSwapTo Value to swap to. System.Collections.Generic.IEqualityComparer comparer The comparison object. Type Parameters Name Description T The stack object type." - }, - "api/Terminal.Gui/Terminal.Gui.StatusBar.html": { - "href": "api/Terminal.Gui/Terminal.Gui.StatusBar.html", - "title": "Class StatusBar", - "keywords": "Class StatusBar A status bar is a View that snaps to the bottom of a Toplevel displaying set of StatusItem s. The StatusBar should be context sensitive. This means, if the main menu and an open text editor are visible, the items probably shown will be ~F1~ Help ~F2~ Save ~F3~ Load. While a dialog to ask a file to load is executed, the remaining commands will probably be ~F1~ Help. So for each context must be a new instance of a statusbar. Inheritance System.Object Responder View StatusBar Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class StatusBar : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source StatusBar() Initializes a new instance of the StatusBar class. Declaration public StatusBar() | Improve this Doc View Source StatusBar(StatusItem[]) Initializes a new instance of the StatusBar class with the specified set of StatusItem s. The StatusBar will be drawn on the lowest line of the terminal or SuperView (if not null). Declaration public StatusBar(StatusItem[] items) Parameters Type Name Description StatusItem [] items A list of statusbar items. Properties | Improve this Doc View Source Items The items that compose the StatusBar Declaration public StatusItem[] Items { get; set; } Property Value Type Description StatusItem [] | Improve this Doc View Source ShortcutDelimiter Used for change the shortcut delimiter separator. Declaration public static ustring ShortcutDelimiter { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source AddItemAt(Int32, StatusItem) Inserts a StatusItem in the specified index of Items . Declaration public void AddItemAt(int index, StatusItem item) Parameters Type Name Description System.Int32 index The zero-based index at which item should be inserted. StatusItem item The item to insert. | Improve this Doc View Source Dispose(Boolean) Declaration protected override void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing Overrides View.Dispose(Boolean) | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source ProcessHotKey(KeyEvent) Declaration public override bool ProcessHotKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessHotKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source RemoveItem(Int32) Removes a StatusItem at specified index of Items . Declaration public StatusItem RemoveItem(int index) Parameters Type Name Description System.Int32 index The zero-based index of the item to remove. Returns Type Description StatusItem The StatusItem removed. Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.StatusItem.html": { - "href": "api/Terminal.Gui/Terminal.Gui.StatusItem.html", - "title": "Class StatusItem", - "keywords": "Class StatusItem StatusItem objects are contained by StatusBar View s. Each StatusItem has a title, a shortcut (hotkey), and an Action that will be invoked when the Shortcut is pressed. The Shortcut will be a global hotkey for the application in the current context of the screen. The colour of the Title will be changed after each ~. A Title set to `~F1~ Help` will render as *F1* using HotNormal and *Help* as HotNormal . Inheritance System.Object StatusItem Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class StatusItem Constructors | Improve this Doc View Source StatusItem(Key, ustring, Action) Initializes a new StatusItem . Declaration public StatusItem(Key shortcut, ustring title, Action action) Parameters Type Name Description Key shortcut Shortcut to activate the StatusItem . NStack.ustring title Title for the StatusItem . System.Action action Action to invoke when the StatusItem is activated. Properties | Improve this Doc View Source Action Gets or sets the action to be invoked when the statusbar item is triggered Declaration public Action Action { get; } Property Value Type Description System.Action Action to invoke. | Improve this Doc View Source Shortcut Gets the global shortcut to invoke the action on the menu. Declaration public Key Shortcut { get; } Property Value Type Description Key | Improve this Doc View Source Title Gets or sets the title. Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring The title." - }, - "api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html", - "title": "Class TableView.CellActivatedEventArgs", - "keywords": "Class TableView.CellActivatedEventArgs Defines the event arguments for CellActivated event Inheritance System.Object System.EventArgs TableView.CellActivatedEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class CellActivatedEventArgs : EventArgs Constructors | Improve this Doc View Source CellActivatedEventArgs(DataTable, Int32, Int32) Creates a new instance of arguments describing a cell being activated in TableView Declaration public CellActivatedEventArgs(DataTable t, int col, int row) Parameters Type Name Description System.Data.DataTable t System.Int32 col System.Int32 row Properties | Improve this Doc View Source Col The column index of the Table cell that is being activated Declaration public int Col { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Row The row index of the Table cell that is being activated Declaration public int Row { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Table The current table to which the new indexes refer. May be null e.g. if selection change is the result of clearing the table from the view Declaration public DataTable Table { get; } Property Value Type Description System.Data.DataTable" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html", - "title": "Class TableView.CellColorGetterArgs", - "keywords": "Class TableView.CellColorGetterArgs Arguments for a TableView.CellColorGetterDelegate . Describes a cell for which a rendering ColorScheme is being sought Inheritance System.Object TableView.CellColorGetterArgs Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class CellColorGetterArgs Properties | Improve this Doc View Source CellValue The hard typed value being rendered in the cell for which color is needed Declaration public object CellValue { get; } Property Value Type Description System.Object | Improve this Doc View Source ColIdex The index of column in Table for which color is needed Declaration public int ColIdex { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Representation The textual representation of CellValue (what will actually be drawn to the screen) Declaration public string Representation { get; } Property Value Type Description System.String | Improve this Doc View Source RowIndex The index of the row in Table for which color is needed Declaration public int RowIndex { get; } Property Value Type Description System.Int32 | Improve this Doc View Source RowScheme the color scheme that is going to be used to render the cell if no cell specific color scheme is returned Declaration public ColorScheme RowScheme { get; } Property Value Type Description ColorScheme | Improve this Doc View Source Table The data table hosted by the TableView control. Declaration public DataTable Table { get; } Property Value Type Description System.Data.DataTable" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html", - "title": "Delegate TableView.CellColorGetterDelegate", - "keywords": "Delegate TableView.CellColorGetterDelegate Delegate for providing color to TableView cells based on the value being rendered Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public delegate ColorScheme CellColorGetterDelegate(TableView.CellColorGetterArgs args); Parameters Type Name Description TableView.CellColorGetterArgs args Contains information about the cell for which color is needed Returns Type Description ColorScheme" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html", - "title": "Class TableView.ColumnStyle", - "keywords": "Class TableView.ColumnStyle Describes how to render a given column in a TableView including Alignment and textual representation of cells (e.g. date formats) See TableView Deep Dive for more information . Inheritance System.Object TableView.ColumnStyle Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ColumnStyle Fields | Improve this Doc View Source AlignmentGetter Defines a delegate for returning custom alignment per cell based on cell values. When specified this will override Alignment Declaration public Func AlignmentGetter Field Value Type Description System.Func < System.Object , TextAlignment > | Improve this Doc View Source ColorGetter Defines a delegate for returning a custom color scheme per cell based on cell values. Return null for the default Declaration public TableView.CellColorGetterDelegate ColorGetter Field Value Type Description TableView.CellColorGetterDelegate | Improve this Doc View Source RepresentationGetter Defines a delegate for returning custom representations of cell values. If not set then System.Object.ToString() is used. Return values from your delegate may be truncated e.g. based on MaxWidth Declaration public Func RepresentationGetter Field Value Type Description System.Func < System.Object , System.String > Properties | Improve this Doc View Source Alignment Defines the default alignment for all values rendered in this column. For custom alignment based on cell contents use AlignmentGetter . Declaration public TextAlignment Alignment { get; set; } Property Value Type Description TextAlignment | Improve this Doc View Source Format Defines the format for values e.g. \"yyyy-MM-dd\" for dates Declaration public string Format { get; set; } Property Value Type Description System.String | Improve this Doc View Source MaxWidth Set the maximum width of the column in characters. This value will be ignored if more than the tables MaxCellWidth . Defaults to DefaultMaxCellWidth Declaration public int MaxWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source MinAcceptableWidth Enables flexible sizing of this column based on available screen space to render into. Declaration public int MinAcceptableWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source MinWidth Set the minimum width of the column in characters. Setting this will ensure that even when a column has short content/header it still fills a given width of the control. This value will be ignored if more than the tables MaxCellWidth or the MaxWidth For setting a flexible column width (down to a lower limit) use MinAcceptableWidth instead Declaration public int MinWidth { get; set; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source GetAlignment(Object) Returns the alignment for the cell based on cellValue and AlignmentGetter / Alignment Declaration public TextAlignment GetAlignment(object cellValue) Parameters Type Name Description System.Object cellValue Returns Type Description TextAlignment | Improve this Doc View Source GetRepresentation(Object) Returns the full string to render (which may be truncated if too long) that the current style says best represents the given value Declaration public string GetRepresentation(object value) Parameters Type Name Description System.Object value Returns Type Description System.String" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.html", - "title": "Class TableView", - "keywords": "Class TableView View for tabular data based on a System.Data.DataTable . See TableView Deep Dive for more information . Inheritance System.Object Responder View TableView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TableView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source TableView() Initialzies a TableView class using Computed layout. Set the Table property to begin editing Declaration public TableView() | Improve this Doc View Source TableView(DataTable) Initialzies a TableView class using Computed layout. Declaration public TableView(DataTable table) Parameters Type Name Description System.Data.DataTable table The table to display in the control Fields | Improve this Doc View Source DefaultMaxCellWidth The default maximum cell width for MaxCellWidth and MaxWidth Declaration public const int DefaultMaxCellWidth = 100 Field Value Type Description System.Int32 | Improve this Doc View Source DefaultMinAcceptableWidth The default minimum cell width for MinAcceptableWidth Declaration public const int DefaultMinAcceptableWidth = 100 Field Value Type Description System.Int32 Properties | Improve this Doc View Source CellActivationKey The key which when pressed should trigger CellActivated event. Defaults to Enter. Declaration public Key CellActivationKey { get; set; } Property Value Type Description Key | Improve this Doc View Source ColumnOffset Horizontal scroll offset. The index of the first column in Table to display when when rendering the view. Declaration public int ColumnOffset { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source FullRowSelect True to select the entire row at once. False to select individual cells. Defaults to false Declaration public bool FullRowSelect { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source MaxCellWidth The maximum number of characters to render in any given column. This prevents one long column from pushing out all the others Declaration public int MaxCellWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source MultiSelect True to allow regions to be selected Declaration public bool MultiSelect { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source MultiSelectedRegions When MultiSelect is enabled this property contain all rectangles of selected cells. Rectangles describe column/rows selected in Table (not screen coordinates) Declaration public Stack MultiSelectedRegions { get; } Property Value Type Description System.Collections.Generic.Stack < TableView.TableSelection > | Improve this Doc View Source NullSymbol The text representation that should be rendered for cells with the value System.DBNull.Value Declaration public string NullSymbol { get; set; } Property Value Type Description System.String | Improve this Doc View Source RowOffset Vertical scroll offset. The index of the first row in Table to display in the first non header line of the control when rendering the view. Declaration public int RowOffset { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedColumn The index of System.Data.DataTable.Columns in Table that the user has currently selected Declaration public int SelectedColumn { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedRow The index of System.Data.DataTable.Rows in Table that the user has currently selected Declaration public int SelectedRow { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SeparatorSymbol The symbol to add after each cell value and header value to visually seperate values (if not using vertical gridlines) Declaration public char SeparatorSymbol { get; set; } Property Value Type Description System.Char | Improve this Doc View Source Style Contains options for changing how the table is rendered Declaration public TableView.TableStyle Style { get; set; } Property Value Type Description TableView.TableStyle | Improve this Doc View Source Table The data table to render in the view. Setting this property automatically updates and redraws the control. Declaration public DataTable Table { get; set; } Property Value Type Description System.Data.DataTable Methods | Improve this Doc View Source CellToScreen(Int32, Int32) Returns the screen position (relative to the control client area) that the given cell is rendered or null if it is outside the current scroll area or no table is loaded Declaration public Point? CellToScreen(int tableColumn, int tableRow) Parameters Type Name Description System.Int32 tableColumn The index of the Table column you are looking for, use System.Data.DataColumn.Ordinal System.Int32 tableRow The index of the row in Table that you are looking for Returns Type Description System.Nullable < Point > | Improve this Doc View Source ChangeSelectionByOffset(Int32, Int32, Boolean) Moves the SelectedRow and SelectedColumn by the provided offsets. Optionally starting a box selection (see MultiSelect ) Declaration public void ChangeSelectionByOffset(int offsetX, int offsetY, bool extendExistingSelection) Parameters Type Name Description System.Int32 offsetX Offset in number of columns System.Int32 offsetY Offset in number of rows System.Boolean extendExistingSelection True to create a multi cell selection or adjust an existing one | Improve this Doc View Source ChangeSelectionToEndOfRow(Boolean) Moves or extends the selection to the last cell in the current row Declaration public void ChangeSelectionToEndOfRow(bool extend) Parameters Type Name Description System.Boolean extend true to extend the current selection (if any) instead of replacing | Improve this Doc View Source ChangeSelectionToEndOfTable(Boolean) Moves or extends the selection to the final cell in the table Declaration public void ChangeSelectionToEndOfTable(bool extend) Parameters Type Name Description System.Boolean extend true to extend the current selection (if any) instead of replacing | Improve this Doc View Source ChangeSelectionToStartOfRow(Boolean) Moves or extends the selection to the first cell in the current row Declaration public void ChangeSelectionToStartOfRow(bool extend) Parameters Type Name Description System.Boolean extend true to extend the current selection (if any) instead of replacing | Improve this Doc View Source ChangeSelectionToStartOfTable(Boolean) Moves or extends the selection to the first cell in the table (0,0) Declaration public void ChangeSelectionToStartOfTable(bool extend) Parameters Type Name Description System.Boolean extend true to extend the current selection (if any) instead of replacing | Improve this Doc View Source EnsureSelectedCellIsVisible() Updates scroll offsets to ensure that the selected cell is visible. Has no effect if Table has not been set. Declaration public void EnsureSelectedCellIsVisible() | Improve this Doc View Source EnsureValidScrollOffsets() Updates ColumnOffset and RowOffset where they are outside the bounds of the table (by adjusting them to the nearest existing cell). Has no effect if Table has not been set. Declaration public void EnsureValidScrollOffsets() | Improve this Doc View Source EnsureValidSelection() Updates SelectedColumn , SelectedRow and MultiSelectedRegions where they are outside the bounds of the table (by adjusting them to the nearest existing cell). Has no effect if Table has not been set. Declaration public void EnsureValidSelection() | Improve this Doc View Source GetAllSelectedCells() Returns all cells in any MultiSelectedRegions (if MultiSelect is enabled) and the selected cell Declaration public IEnumerable GetAllSelectedCells() Returns Type Description System.Collections.Generic.IEnumerable < Point > | Improve this Doc View Source IsSelected(Int32, Int32) Returns true if the given cell is selected either because it is the active cell or part of a multi cell selection (e.g. FullRowSelect ) Declaration public bool IsSelected(int col, int row) Parameters Type Name Description System.Int32 col System.Int32 row Returns Type Description System.Boolean | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnCellActivated(TableView.CellActivatedEventArgs) Invokes the CellActivated event Declaration protected virtual void OnCellActivated(TableView.CellActivatedEventArgs args) Parameters Type Name Description TableView.CellActivatedEventArgs args | Improve this Doc View Source OnSelectedCellChanged(TableView.SelectedCellChangedEventArgs) Invokes the SelectedCellChanged event Declaration protected virtual void OnSelectedCellChanged(TableView.SelectedCellChangedEventArgs args) Parameters Type Name Description TableView.SelectedCellChangedEventArgs args | Improve this Doc View Source PageDown(Boolean) Moves the selection down by one page Declaration public void PageDown(bool extend) Parameters Type Name Description System.Boolean extend true to extend the current selection (if any) instead of replacing | Improve this Doc View Source PageUp(Boolean) Moves the selection up by one page Declaration public void PageUp(bool extend) Parameters Type Name Description System.Boolean extend true to extend the current selection (if any) instead of replacing | Improve this Doc View Source PositionCursor() Positions the cursor in the area of the screen in which the start of the active cell is rendered. Calls base implementation if active cell is not visible due to scrolling or table is loaded etc Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source RenderCell(Attribute, String, Boolean) Override to provide custom multi colouring to cells. Use Driver to with AddStr(ustring) . The driver will already be in the correct place when rendering and you must render the full render or the view will not look right. For simpler provision of color use ColorGetter For changing the content that is rendered use RepresentationGetter Declaration protected virtual void RenderCell(Attribute cellColor, string render, bool isPrimaryCell) Parameters Type Name Description Attribute cellColor System.String render System.Boolean isPrimaryCell | Improve this Doc View Source ScreenToCell(Int32, Int32) Returns the column and row of Table that corresponds to a given point on the screen (relative to the control client area). Returns null if the point is in the header, no table is loaded or outside the control bounds Declaration public Point? ScreenToCell(int clientX, int clientY) Parameters Type Name Description System.Int32 clientX X offset from the top left of the control System.Int32 clientY Y offset from the top left of the control Returns Type Description System.Nullable < Point > | Improve this Doc View Source SelectAll() When MultiSelect is on, creates selection over all cells in the table (replacing any old selection regions) Declaration public void SelectAll() | Improve this Doc View Source SetSelection(Int32, Int32, Boolean) Moves the SelectedRow and SelectedColumn to the given col/row in Table . Optionally starting a box selection (see MultiSelect ) Declaration public void SetSelection(int col, int row, bool extendExistingSelection) Parameters Type Name Description System.Int32 col System.Int32 row System.Boolean extendExistingSelection True to create a multi cell selection or adjust an existing one | Improve this Doc View Source Update() Updates the view to reflect changes to Table and to ( ColumnOffset / RowOffset ) etc Declaration public void Update() Events | Improve this Doc View Source CellActivated This event is raised when a cell is activated e.g. by double clicking or pressing CellActivationKey Declaration public event Action CellActivated Event Type Type Description System.Action < TableView.CellActivatedEventArgs > | Improve this Doc View Source SelectedCellChanged This event is raised when the selected cell in the table changes. Declaration public event Action SelectedCellChanged Event Type Type Description System.Action < TableView.SelectedCellChangedEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html", - "title": "Class TableView.RowColorGetterArgs", - "keywords": "Class TableView.RowColorGetterArgs Arguments for TableView.RowColorGetterDelegate . Describes a row of data in a System.Data.DataTable for which ColorScheme is sought. Inheritance System.Object TableView.RowColorGetterArgs Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class RowColorGetterArgs Properties | Improve this Doc View Source RowIndex The index of the row in Table for which color is needed Declaration public int RowIndex { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Table The data table hosted by the TableView control. Declaration public DataTable Table { get; } Property Value Type Description System.Data.DataTable" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html", - "title": "Delegate TableView.RowColorGetterDelegate", - "keywords": "Delegate TableView.RowColorGetterDelegate Delegate for providing color for a whole row of a TableView Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public delegate ColorScheme RowColorGetterDelegate(TableView.RowColorGetterArgs args); Parameters Type Name Description TableView.RowColorGetterArgs args Returns Type Description ColorScheme" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html", - "title": "Class TableView.SelectedCellChangedEventArgs", - "keywords": "Class TableView.SelectedCellChangedEventArgs Defines the event arguments for SelectedCellChanged Inheritance System.Object System.EventArgs TableView.SelectedCellChangedEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class SelectedCellChangedEventArgs : EventArgs Constructors | Improve this Doc View Source SelectedCellChangedEventArgs(DataTable, Int32, Int32, Int32, Int32) Creates a new instance of arguments describing a change in selected cell in a TableView Declaration public SelectedCellChangedEventArgs(DataTable t, int oldCol, int newCol, int oldRow, int newRow) Parameters Type Name Description System.Data.DataTable t System.Int32 oldCol System.Int32 newCol System.Int32 oldRow System.Int32 newRow Properties | Improve this Doc View Source NewCol The newly selected column index. Declaration public int NewCol { get; } Property Value Type Description System.Int32 | Improve this Doc View Source NewRow The newly selected row index. Declaration public int NewRow { get; } Property Value Type Description System.Int32 | Improve this Doc View Source OldCol The previous selected column index. May be invalid e.g. when the selection has been changed as a result of replacing the existing Table with a smaller one Declaration public int OldCol { get; } Property Value Type Description System.Int32 | Improve this Doc View Source OldRow The previous selected row index. May be invalid e.g. when the selection has been changed as a result of deleting rows from the table Declaration public int OldRow { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Table The current table to which the new indexes refer. May be null e.g. if selection change is the result of clearing the table from the view Declaration public DataTable Table { get; } Property Value Type Description System.Data.DataTable" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html", - "title": "Class TableView.TableSelection", - "keywords": "Class TableView.TableSelection Describes a selected region of the table Inheritance System.Object TableView.TableSelection Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TableSelection Constructors | Improve this Doc View Source TableSelection(Point, Rect) Creates a new selected area starting at the origin corner and covering the provided rectangular area Declaration public TableSelection(Point origin, Rect rect) Parameters Type Name Description Point origin Rect rect Properties | Improve this Doc View Source Origin Corner of the Rect where selection began Declaration public Point Origin { get; set; } Property Value Type Description Point | Improve this Doc View Source Rect Area selected Declaration public Rect Rect { get; set; } Property Value Type Description Rect" - }, - "api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html", - "title": "Class TableView.TableStyle", - "keywords": "Class TableView.TableStyle Defines rendering options that affect how the table is displayed. See TableView Deep Dive for more information . Inheritance System.Object TableView.TableStyle Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TableStyle Properties | Improve this Doc View Source AlwaysShowHeaders When scrolling down always lock the column headers in place as the first row of the table Declaration public bool AlwaysShowHeaders { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ColumnStyles Collection of columns for which you want special rendering (e.g. custom column lengths, text alignment etc) Declaration public Dictionary ColumnStyles { get; set; } Property Value Type Description System.Collections.Generic.Dictionary < System.Data.DataColumn , TableView.ColumnStyle > | Improve this Doc View Source ExpandLastColumn Determines rendering when the last column in the table is visible but it's content or MaxWidth is less than the remaining space in the control. True (the default) will expand the column to fill the remaining bounds of the control. False will draw a column ending line and leave a blank column that cannot be selected in the remaining space. Declaration public bool ExpandLastColumn { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source InvertSelectedCellFirstCharacter True to invert the colors of the first symbol of the selected cell in the TableView . This gives the appearance of a cursor for when the ConsoleDriver doesn't otherwise show this Declaration public bool InvertSelectedCellFirstCharacter { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RowColorGetter Delegate for coloring specific rows in a different color. For cell color ColorGetter Declaration public TableView.RowColorGetterDelegate RowColorGetter { get; set; } Property Value Type Description TableView.RowColorGetterDelegate | Improve this Doc View Source ShowHorizontalHeaderOverline True to render a solid line above the headers Declaration public bool ShowHorizontalHeaderOverline { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowHorizontalHeaderUnderline True to render a solid line under the headers Declaration public bool ShowHorizontalHeaderUnderline { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowHorizontalScrollIndicators True to render a arrows on the right/left of the table when there are more column(s) that can be scrolled to. Requires ShowHorizontalHeaderUnderline to be true. Defaults to true Declaration public bool ShowHorizontalScrollIndicators { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowVerticalCellLines True to render a solid line vertical line between cells Declaration public bool ShowVerticalCellLines { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowVerticalHeaderLines True to render a solid line vertical line between headers Declaration public bool ShowVerticalHeaderLines { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source SmoothHorizontalScrolling Determines how ColumnOffset is updated when scrolling right off the end of the currently visible area. If true then when scrolling right the scroll offset is increased the minimum required to show the new column. This may be slow if you have an incredibly large number of columns in your table and/or slow RepresentationGetter implementations If false then scroll offset is set to the currently selected column (i.e. PageRight). Declaration public bool SmoothHorizontalScrolling { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source GetColumnStyleIfAny(DataColumn) Returns the entry from ColumnStyles for the given col or null if no custom styling is defined for it Declaration public TableView.ColumnStyle GetColumnStyleIfAny(DataColumn col) Parameters Type Name Description System.Data.DataColumn col Returns Type Description TableView.ColumnStyle | Improve this Doc View Source GetOrCreateColumnStyle(DataColumn) Returns an existing TableView.ColumnStyle for the given col or creates a new one with default options Declaration public TableView.ColumnStyle GetOrCreateColumnStyle(DataColumn col) Parameters Type Name Description System.Data.DataColumn col Returns Type Description TableView.ColumnStyle" - }, - "api/Terminal.Gui/Terminal.Gui.TabView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TabView.html", - "title": "Class TabView", - "keywords": "Class TabView Control that hosts multiple sub views, presenting a single one at once Inheritance System.Object Responder View TabView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TabView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source TabView() Initialzies a TabView class using Computed layout. Declaration public TabView() Fields | Improve this Doc View Source DefaultMaxTabTextWidth The default MaxTabTextWidth to set on new TabView controls Declaration public const uint DefaultMaxTabTextWidth = 30U Field Value Type Description System.UInt32 Properties | Improve this Doc View Source MaxTabTextWidth The maximum number of characters to render in a Tab header. This prevents one long tab from pushing out all the others. Declaration public uint MaxTabTextWidth { get; set; } Property Value Type Description System.UInt32 | Improve this Doc View Source SelectedTab The currently selected member of Tabs chosen by the user Declaration public TabView.Tab SelectedTab { get; set; } Property Value Type Description TabView.Tab | Improve this Doc View Source Style Render choices for how to display tabs. After making changes, call ApplyStyleChanges() Declaration public TabView.TabStyle Style { get; set; } Property Value Type Description TabView.TabStyle | Improve this Doc View Source Tabs All tabs currently hosted by the control Declaration public IReadOnlyCollection Tabs { get; } Property Value Type Description System.Collections.Generic.IReadOnlyCollection < TabView.Tab > | Improve this Doc View Source TabScrollOffset When there are too many tabs to render, this indicates the first tab to render on the screen. Declaration public int TabScrollOffset { get; set; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source AddTab(TabView.Tab, Boolean) Adds the given tab to Tabs Declaration public void AddTab(TabView.Tab tab, bool andSelect) Parameters Type Name Description TabView.Tab tab System.Boolean andSelect True to make the newly added Tab the SelectedTab | Improve this Doc View Source ApplyStyleChanges() Updates the control to use the latest state settings in Style . This can change the size of the client area of the tab (for rendering the selected tab's content). This method includes a call to SetNeedsDisplay() Declaration public void ApplyStyleChanges() | Improve this Doc View Source Dispose(Boolean) Disposes the control and all Tabs Declaration protected override void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing Overrides View.Dispose(Boolean) | Improve this Doc View Source EnsureSelectedTabIsVisible() Updates TabScrollOffset to ensure that SelectedTab is visible Declaration public void EnsureSelectedTabIsVisible() | Improve this Doc View Source EnsureValidScrollOffsets() Updates TabScrollOffset to be a valid index of Tabs Declaration public void EnsureValidScrollOffsets() | Improve this Doc View Source OnSelectedTabChanged(TabView.Tab, TabView.Tab) Raises the SelectedTabChanged event Declaration protected virtual void OnSelectedTabChanged(TabView.Tab oldTab, TabView.Tab newTab) Parameters Type Name Description TabView.Tab oldTab TabView.Tab newTab | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source RemoveTab(TabView.Tab) Removes the given tab from Tabs . Caller is responsible for disposing the tab's hosted View if appropriate. Declaration public void RemoveTab(TabView.Tab tab) Parameters Type Name Description TabView.Tab tab | Improve this Doc View Source SwitchTabBy(Int32) Changes the SelectedTab by the given amount . Positive for right, negative for left. If no tab is currently selected then the first tab will become selected Declaration public void SwitchTabBy(int amount) Parameters Type Name Description System.Int32 amount Events | Improve this Doc View Source SelectedTabChanged Event for when SelectedTab changes Declaration public event EventHandler SelectedTabChanged Event Type Type Description System.EventHandler < TabView.TabChangedEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.TabView.Tab.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TabView.Tab.html", - "title": "Class TabView.Tab", - "keywords": "Class TabView.Tab A single tab in a TabView Inheritance System.Object TabView.Tab Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Tab Constructors | Improve this Doc View Source Tab() Creates a new unamed tab with no controls inside Declaration public Tab() | Improve this Doc View Source Tab(String, View) Creates a new tab with the given text hosting a view Declaration public Tab(string text, View view) Parameters Type Name Description System.String text View view Properties | Improve this Doc View Source Text The text to display in a TabView Declaration public ustring Text { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source View The control to display when the tab is selected Declaration public View View { get; set; } Property Value Type Description View" - }, - "api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html", - "title": "Class TabView.TabChangedEventArgs", - "keywords": "Class TabView.TabChangedEventArgs Describes a change in SelectedTab Inheritance System.Object System.EventArgs TabView.TabChangedEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TabChangedEventArgs : EventArgs Constructors | Improve this Doc View Source TabChangedEventArgs(TabView.Tab, TabView.Tab) Documents a tab change Declaration public TabChangedEventArgs(TabView.Tab oldTab, TabView.Tab newTab) Parameters Type Name Description TabView.Tab oldTab TabView.Tab newTab Properties | Improve this Doc View Source NewTab The currently selected tab. May be null Declaration public TabView.Tab NewTab { get; } Property Value Type Description TabView.Tab | Improve this Doc View Source OldTab The previously selected tab. May be null Declaration public TabView.Tab OldTab { get; } Property Value Type Description TabView.Tab" - }, - "api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html", - "title": "Class TabView.TabStyle", - "keywords": "Class TabView.TabStyle Describes render stylistic selections of a TabView Inheritance System.Object TabView.TabStyle Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TabStyle Properties | Improve this Doc View Source ShowBorder True to show a solid box around the edge of the control. Defaults to true. Declaration public bool ShowBorder { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowTopLine True to show the top lip of tabs. False to directly begin with tab text during rendering. When true header line occupies 3 rows, when false only 2. Defaults to true. When TabsOnBottom is enabled this instead applies to the bottommost line of the control Declaration public bool ShowTopLine { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source TabsOnBottom True to render tabs at the bottom of the view instead of the top Declaration public bool TabsOnBottom { get; set; } Property Value Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.TextAlignment.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextAlignment.html", - "title": "Enum TextAlignment", - "keywords": "Enum TextAlignment Text alignment enumeration, controls how text is displayed. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum TextAlignment Fields Name Description Centered Centers the text in the frame. Justified Shows the text as justified text in the frame. Left Aligns the text to the left of the frame. Right Aligns the text to the right side of the frame." - }, - "api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html", - "title": "Class TextChangingEventArgs", - "keywords": "Class TextChangingEventArgs An System.EventArgs which allows passing a cancelable new text value event. Inheritance System.Object System.EventArgs TextChangingEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextChangingEventArgs : EventArgs Constructors | Improve this Doc View Source TextChangingEventArgs(ustring) Initializes a new instance of TextChangingEventArgs Declaration public TextChangingEventArgs(ustring newText) Parameters Type Name Description NStack.ustring newText The new Text to be replaced. Properties | Improve this Doc View Source Cancel Flag which allows to cancel the new text value. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source NewText The new text to be replaced. Declaration public ustring NewText { get; set; } Property Value Type Description NStack.ustring" - }, - "api/Terminal.Gui/Terminal.Gui.TextDirection.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextDirection.html", - "title": "Enum TextDirection", - "keywords": "Enum TextDirection Text direction enumeration, controls how text is displayed. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum TextDirection Fields Name Description BottomTop_LeftRight This is a vertical direction. O D L L L R E O H W BottomTop_RightLeft This is a vertical direction. D O L L R L O E W H LeftRight_BottomTop This is a horizontal direction. WORLD HELLO LeftRight_TopBottom Normal horizontal direction. HELLO WORLD RightLeft_BottomTop This is a horizontal direction. DLROW OLLEH RightLeft_TopBottom This is a horizontal direction. RTL OLLEH DLROW TopBottom_LeftRight Normal vertical direction. H W E O L R L L O D TopBottom_RightLeft This is a vertical direction. W H O E R L L L D O" - }, - "api/Terminal.Gui/Terminal.Gui.TextField.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextField.html", - "title": "Class TextField", - "keywords": "Class TextField Single-line text entry View Inheritance System.Object Responder View TextField DateField TimeField Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The TextField View provides editing functionality and mouse support. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextField : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source TextField() Initializes a new instance of the TextField class using Computed positioning. Declaration public TextField() | Improve this Doc View Source TextField(ustring) Initializes a new instance of the TextField class using Computed positioning. Declaration public TextField(ustring text) Parameters Type Name Description NStack.ustring text Initial text contents. | Improve this Doc View Source TextField(Int32, Int32, Int32, ustring) Initializes a new instance of the TextField class using Absolute positioning. Declaration public TextField(int x, int y, int w, ustring text) Parameters Type Name Description System.Int32 x The x coordinate. System.Int32 y The y coordinate. System.Int32 w The width. NStack.ustring text Initial text contents. | Improve this Doc View Source TextField(String) Initializes a new instance of the TextField class using Computed positioning. Declaration public TextField(string text) Parameters Type Name Description System.String text Initial text contents. Properties | Improve this Doc View Source Autocomplete Provides autocomplete context menu based on suggestions at the current cursor position. Populate AllSuggestions to enable this feature. Declaration public IAutocomplete Autocomplete { get; protected set; } Property Value Type Description IAutocomplete | Improve this Doc View Source CanFocus Declaration public override bool CanFocus { get; set; } Property Value Type Description System.Boolean Overrides View.CanFocus | Improve this Doc View Source ContextMenu Get the ContextMenu for this view. Declaration public ContextMenu ContextMenu { get; } Property Value Type Description ContextMenu | Improve this Doc View Source CursorPosition Sets or gets the current cursor position. Declaration public virtual int CursorPosition { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source DesiredCursorVisibility Get / Set the wished cursor when the field is focused Declaration public CursorVisibility DesiredCursorVisibility { get; set; } Property Value Type Description CursorVisibility | Improve this Doc View Source Frame Declaration public override Rect Frame { get; set; } Property Value Type Description Rect Overrides View.Frame | Improve this Doc View Source HasHistoryChanges Indicates whatever the text has history changes or not. true if the text has history changes false otherwise. Declaration public bool HasHistoryChanges { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsDirty Indicates whatever the text was changed or not. true if the text was changed false otherwise. Declaration public bool IsDirty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source ReadOnly If set to true its not allow any changes in the text. Declaration public bool ReadOnly { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ScrollOffset Gets the left offset position. Declaration public int ScrollOffset { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Secret Sets the secret property. Declaration public bool Secret { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source SelectedLength Length of the selected text. Declaration public int SelectedLength { get; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedStart Start position of the selected text. Declaration public int SelectedStart { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedText The selected text. Declaration public ustring SelectedText { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Text Sets or gets the text held by the view. Declaration public ustring Text { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source Used Tracks whether the text field should be considered \"used\", that is, that the user has moved in the entry, so new input should be appended at the cursor position, rather than clearing the entry Declaration public bool Used { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source ClearAllSelection() Clear the selected text. Declaration public void ClearAllSelection() | Improve this Doc View Source ClearHistoryChanges() Allows clearing the Terminal.Gui.HistoryText.HistoryTextItem items updating the original text. Declaration public void ClearHistoryChanges() | Improve this Doc View Source Copy() Copy the selected text to the clipboard. Declaration public virtual void Copy() | Improve this Doc View Source Cut() Cut the selected text to the clipboard. Declaration public virtual void Cut() | Improve this Doc View Source DeleteAll() Deletes all text. Declaration public void DeleteAll() | Improve this Doc View Source DeleteCharLeft(Boolean) Deletes the left character. Declaration public virtual void DeleteCharLeft(bool useOldCursorPos = true) Parameters Type Name Description System.Boolean useOldCursorPos | Improve this Doc View Source DeleteCharRight() Deletes the right character. Declaration public virtual void DeleteCharRight() | Improve this Doc View Source GetNormalColor() Declaration public override Attribute GetNormalColor() Returns Type Description Attribute Overrides View.GetNormalColor() | Improve this Doc View Source InsertText(String, Boolean) Inserts the given toAdd text at the current cursor position exactly as if the user had just typed it Declaration public void InsertText(string toAdd, bool useOldCursorPos = true) Parameters Type Name Description System.String toAdd Text to add System.Boolean useOldCursorPos If uses the Terminal.Gui.TextField.oldCursorPos . | Improve this Doc View Source KillWordBackwards() Deletes word backwards. Declaration public virtual void KillWordBackwards() | Improve this Doc View Source KillWordForwards() Deletes word forwards. Declaration public virtual void KillWordForwards() | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent ev) Parameters Type Name Description MouseEvent ev Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnLeave(View) Declaration public override bool OnLeave(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnLeave(View) | Improve this Doc View Source OnTextChanging(ustring) Virtual method that invoke the TextChanging event if it's defined. Declaration public virtual TextChangingEventArgs OnTextChanging(ustring newText) Parameters Type Name Description NStack.ustring newText The new text to be replaced. Returns Type Description TextChangingEventArgs Returns the TextChangingEventArgs | Improve this Doc View Source Paste() Paste the selected text from the clipboard. Declaration public virtual void Paste() | Improve this Doc View Source PositionCursor() Sets the cursor position. Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Processes key presses for the TextField . Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source SelectAll() Selects all text. Declaration public void SelectAll() Events | Improve this Doc View Source TextChanged Changed event, raised when the text has changed. Declaration public event Action TextChanged Event Type Type Description System.Action < NStack.ustring > | Improve this Doc View Source TextChanging Changing event, raised before the Text changes and can be canceled or changing the new text. Declaration public event Action TextChanging Event Type Type Description System.Action < TextChangingEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html", - "title": "Class TextFieldAutocomplete", - "keywords": "Class TextFieldAutocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. An implementation on a TextField. Inheritance System.Object Autocomplete TextFieldAutocomplete Implements IAutocomplete Inherited Members Autocomplete.HostControl Autocomplete.PopupInsideContainer Autocomplete.MaxWidth Autocomplete.MaxHeight Autocomplete.Visible Autocomplete.Suggestions Autocomplete.AllSuggestions Autocomplete.SelectedIdx Autocomplete.ScrollOffset Autocomplete.ColorScheme Autocomplete.SelectionKey Autocomplete.CloseKey Autocomplete.Reopen Autocomplete.RenderOverlay(Point) Autocomplete.EnsureSelectedIdxIsValid() Autocomplete.ProcessKey(KeyEvent) Autocomplete.MouseEvent(MouseEvent, Boolean) Autocomplete.RenderSelectedIdxByMouse(MouseEvent) Autocomplete.ClearSuggestions() Autocomplete.GenerateSuggestions() Autocomplete.IsWordChar(Rune) Autocomplete.Select() Autocomplete.InsertSelection(String) Autocomplete.IdxToWord(List, Int32) Autocomplete.Close() Autocomplete.MoveUp() Autocomplete.MoveDown() Autocomplete.ReopenSuggestions() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextFieldAutocomplete : Autocomplete, IAutocomplete Methods | Improve this Doc View Source DeleteTextBackwards() Declaration protected override void DeleteTextBackwards() Overrides Autocomplete.DeleteTextBackwards() | Improve this Doc View Source GetCurrentWord() Declaration protected override string GetCurrentWord() Returns Type Description System.String Overrides Autocomplete.GetCurrentWord() | Improve this Doc View Source InsertText(String) Declaration protected override void InsertText(string accepted) Parameters Type Name Description System.String accepted Overrides Autocomplete.InsertText(String) Implements IAutocomplete" - }, - "api/Terminal.Gui/Terminal.Gui.TextFormatter.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextFormatter.html", - "title": "Class TextFormatter", - "keywords": "Class TextFormatter Provides text formatting capabilities for console apps. Supports, hotkeys, horizontal alignment, multiple lines, and word-based line wrap. Inheritance System.Object TextFormatter Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextFormatter Properties | Improve this Doc View Source Alignment Controls the horizontal text-alignment property. Declaration public TextAlignment Alignment { get; set; } Property Value Type Description TextAlignment The text alignment. | Improve this Doc View Source AutoSize Used by Text to resize the view's Bounds with the Size . Setting AutoSize to true only work if the Width and Height are null or Absolute values and doesn't work with Computed layout, to avoid breaking the Pos and Dim settings. Declaration public bool AutoSize { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source CursorPosition Gets the cursor position from HotKey . If the HotKey is defined, the cursor will be positioned over it. Declaration public int CursorPosition { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Direction Controls the text-direction property. Declaration public TextDirection Direction { get; set; } Property Value Type Description TextDirection The text vertical alignment. | Improve this Doc View Source HotKey Gets the hotkey. Will be an upper case letter or digit. Declaration public Key HotKey { get; } Property Value Type Description Key | Improve this Doc View Source HotKeyPos The position in the text of the hotkey. The hotkey will be rendered using the hot color. Declaration public int HotKeyPos { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source HotKeySpecifier The specifier character for the hotkey (e.g. '_'). Set to '\\xffff' to disable hotkey support for this View instance. The default is '\\xffff'. Declaration public Rune HotKeySpecifier { get; set; } Property Value Type Description System.Rune | Improve this Doc View Source HotKeyTagMask Specifies the mask to apply to the hotkey to tag it as the hotkey. The default value of 0x100000 causes the underlying Rune to be identified as a \"private use\" Unicode character. Declaration public uint HotKeyTagMask { get; set; } Property Value Type Description System.UInt32 | Improve this Doc View Source Lines Gets the formatted lines. Declaration public List Lines { get; } Property Value Type Description System.Collections.Generic.List < NStack.ustring > | Improve this Doc View Source NeedsFormat Gets or sets whether the TextFormatter needs to format the text when Draw(Rect, Attribute, Attribute, Rect, Boolean) is called. If it is false when Draw is called, the Draw call will be faster. Declaration public bool NeedsFormat { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source PreserveTrailingSpaces Gets or sets a flag that determines whether Text will have trailing spaces preserved or not when WordWrap(ustring, Int32, Boolean, Int32, TextDirection) is enabled. If `true` any trailing spaces will be trimmed when either the Text property is changed or when WordWrap(ustring, Int32, Boolean, Int32, TextDirection) is set to `true`. The default is `false`. Declaration public bool PreserveTrailingSpaces { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Size Gets or sets the size of the area the text will be constrained to when formatted. Declaration public Size Size { get; set; } Property Value Type Description Size | Improve this Doc View Source Text The text to be displayed. This text is never modified. Declaration public virtual ustring Text { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source VerticalAlignment Controls the vertical text-alignment property. Declaration public VerticalTextAlignment VerticalAlignment { get; set; } Property Value Type Description VerticalTextAlignment The text vertical alignment. Methods | Improve this Doc View Source CalcRect(Int32, Int32, ustring, TextDirection) Calculates the rectangle required to hold text, assuming no word wrapping. Declaration public static Rect CalcRect(int x, int y, ustring text, TextDirection direction = TextDirection.LeftRight_TopBottom) Parameters Type Name Description System.Int32 x The x location of the rectangle System.Int32 y The y location of the rectangle NStack.ustring text The text to measure TextDirection direction The text direction. Returns Type Description Rect | Improve this Doc View Source ClipAndJustify(ustring, Int32, Boolean, TextDirection) Justifies text within a specified width. Declaration public static ustring ClipAndJustify(ustring text, int width, bool justify, TextDirection textDirection = TextDirection.LeftRight_TopBottom) Parameters Type Name Description NStack.ustring text The text to justify. System.Int32 width If the text length is greater that width it will be clipped. System.Boolean justify Justify. TextDirection textDirection The text direction. Returns Type Description NStack.ustring Justified and clipped text. | Improve this Doc View Source ClipAndJustify(ustring, Int32, TextAlignment, TextDirection) Justifies text within a specified width. Declaration public static ustring ClipAndJustify(ustring text, int width, TextAlignment talign, TextDirection textDirection = TextDirection.LeftRight_TopBottom) Parameters Type Name Description NStack.ustring text The text to justify. System.Int32 width If the text length is greater that width it will be clipped. TextAlignment talign Alignment. TextDirection textDirection The text direction. Returns Type Description NStack.ustring Justified and clipped text. | Improve this Doc View Source ClipOrPad(String, Int32) Adds trailing whitespace or truncates text so that it fits exactly width console units. Note that some unicode characters take 2+ columns Declaration public static string ClipOrPad(string text, int width) Parameters Type Name Description System.String text System.Int32 width Returns Type Description System.String | Improve this Doc View Source Draw(Rect, Attribute, Attribute, Rect, Boolean) Draws the text held by TextFormatter to Driver using the colors specified. Declaration public void Draw(Rect bounds, Attribute normalColor, Attribute hotColor, Rect containerBounds = default(Rect), bool fillRemaining = true) Parameters Type Name Description Rect bounds Specifies the screen-relative location and maximum size for drawing the text. Attribute normalColor The color to use for all text except the hotkey Attribute hotColor The color to use to draw the hotkey Rect containerBounds Specifies the screen-relative location and maximum container size. System.Boolean fillRemaining Determines if the bounds width will be used (default) or only the text width will be used. | Improve this Doc View Source FindHotKey(ustring, Rune, Boolean, out Int32, out Key) Finds the hotkey and its location in text. Declaration public static bool FindHotKey(ustring text, Rune hotKeySpecifier, bool firstUpperCase, out int hotPos, out Key hotKey) Parameters Type Name Description NStack.ustring text The text to look in. System.Rune hotKeySpecifier The hotkey specifier (e.g. '_') to look for. System.Boolean firstUpperCase If true the legacy behavior of identifying the first upper case character as the hotkey will be enabled. Regardless of the value of this parameter, hotKeySpecifier takes precedence. System.Int32 hotPos Outputs the Rune index into text . Key hotKey Outputs the hotKey. Returns Type Description System.Boolean true if a hotkey was found; false otherwise. | Improve this Doc View Source Format(ustring, Int32, Boolean, Boolean, Boolean, Int32, TextDirection) Reformats text into lines, applying text alignment and optionally wrapping text to new lines on word boundaries. Declaration public static List Format(ustring text, int width, bool justify, bool wordWrap, bool preserveTrailingSpaces = false, int tabWidth = 0, TextDirection textDirection = TextDirection.LeftRight_TopBottom) Parameters Type Name Description NStack.ustring text System.Int32 width The width to bound the text to for word wrapping and clipping. System.Boolean justify Specifies whether the text should be justified. System.Boolean wordWrap If true , the text will be wrapped to new lines as need. If false , forces text to fit a single line. Line breaks are converted to spaces. The text will be clipped to width System.Boolean preserveTrailingSpaces If true and 'wordWrap' also true, the wrapped text will keep the trailing spaces. If false , the trailing spaces will be trimmed. System.Int32 tabWidth The tab width. TextDirection textDirection The text direction. Returns Type Description System.Collections.Generic.List < NStack.ustring > A list of word wrapped lines. | Improve this Doc View Source Format(ustring, Int32, TextAlignment, Boolean, Boolean, Int32, TextDirection) Reformats text into lines, applying text alignment and optionally wrapping text to new lines on word boundaries. Declaration public static List Format(ustring text, int width, TextAlignment talign, bool wordWrap, bool preserveTrailingSpaces = false, int tabWidth = 0, TextDirection textDirection = TextDirection.LeftRight_TopBottom) Parameters Type Name Description NStack.ustring text System.Int32 width The width to bound the text to for word wrapping and clipping. TextAlignment talign Specifies how the text will be aligned horizontally. System.Boolean wordWrap If true , the text will be wrapped to new lines as need. If false , forces text to fit a single line. Line breaks are converted to spaces. The text will be clipped to width System.Boolean preserveTrailingSpaces If true and 'wordWrap' also true, the wrapped text will keep the trailing spaces. If false , the trailing spaces will be trimmed. System.Int32 tabWidth The tab width. TextDirection textDirection The text direction. Returns Type Description System.Collections.Generic.List < NStack.ustring > A list of word wrapped lines. | Improve this Doc View Source GetMaxColsForWidth(List, Int32) Gets the index position from the list based on the width . Declaration public static int GetMaxColsForWidth(List lines, int width) Parameters Type Name Description System.Collections.Generic.List < NStack.ustring > lines The lines. System.Int32 width The width. Returns Type Description System.Int32 The index of the list that fit the width. | Improve this Doc View Source GetMaxLengthForWidth(ustring, Int32) Gets the index position from the text based on the width . Declaration public static int GetMaxLengthForWidth(ustring text, int width) Parameters Type Name Description NStack.ustring text The text. System.Int32 width The width. Returns Type Description System.Int32 The index of the text that fit the width. | Improve this Doc View Source GetMaxLengthForWidth(List, Int32) Gets the index position from the list based on the width . Declaration public static int GetMaxLengthForWidth(List runes, int width) Parameters Type Name Description System.Collections.Generic.List < System.Rune > runes The runes. System.Int32 width The width. Returns Type Description System.Int32 The index of the list that fit the width. | Improve this Doc View Source GetSumMaxCharWidth(ustring, Int32, Int32) Gets the maximum characters width from the text based on the startIndex and the length . Declaration public static int GetSumMaxCharWidth(ustring text, int startIndex = -1, int length = -1) Parameters Type Name Description NStack.ustring text The text. System.Int32 startIndex The start index. System.Int32 length The length. Returns Type Description System.Int32 The maximum characters width. | Improve this Doc View Source GetSumMaxCharWidth(List, Int32, Int32) Gets the maximum characters width from the list based on the startIndex and the length . Declaration public static int GetSumMaxCharWidth(List lines, int startIndex = -1, int length = -1) Parameters Type Name Description System.Collections.Generic.List < NStack.ustring > lines The lines. System.Int32 startIndex The start index. System.Int32 length The length. Returns Type Description System.Int32 The maximum characters width. | Improve this Doc View Source GetTextWidth(ustring) Gets the total width of the passed text. Declaration public static int GetTextWidth(ustring text) Parameters Type Name Description NStack.ustring text Returns Type Description System.Int32 The text width. | Improve this Doc View Source IsHorizontalDirection(TextDirection) Check if it is a horizontal direction Declaration public static bool IsHorizontalDirection(TextDirection textDirection) Parameters Type Name Description TextDirection textDirection Returns Type Description System.Boolean | Improve this Doc View Source IsLeftToRight(TextDirection) Check if it is Left to Right direction Declaration public static bool IsLeftToRight(TextDirection textDirection) Parameters Type Name Description TextDirection textDirection Returns Type Description System.Boolean | Improve this Doc View Source IsTopToBottom(TextDirection) Check if it is Top to Bottom direction Declaration public static bool IsTopToBottom(TextDirection textDirection) Parameters Type Name Description TextDirection textDirection Returns Type Description System.Boolean | Improve this Doc View Source IsVerticalDirection(TextDirection) Check if it is a vertical direction Declaration public static bool IsVerticalDirection(TextDirection textDirection) Parameters Type Name Description TextDirection textDirection Returns Type Description System.Boolean | Improve this Doc View Source Justify(ustring, Int32, Char, TextDirection) Justifies the text to fill the width provided. Space will be added between words (demarked by spaces and tabs) to make the text just fit width . Spaces will not be added to the ends. Declaration public static ustring Justify(ustring text, int width, char spaceChar = ' ', TextDirection textDirection = TextDirection.LeftRight_TopBottom) Parameters Type Name Description NStack.ustring text System.Int32 width System.Char spaceChar Character to replace whitespace and pad with. For debugging purposes. TextDirection textDirection The text direction. Returns Type Description NStack.ustring The justified text. | Improve this Doc View Source MaxLines(ustring, Int32) Computes the number of lines needed to render the specified text given the width. Declaration public static int MaxLines(ustring text, int width) Parameters Type Name Description NStack.ustring text Text, may contain newlines. System.Int32 width The minimum width for the text. Returns Type Description System.Int32 Number of lines. | Improve this Doc View Source MaxWidth(ustring, Int32) Computes the maximum width needed to render the text (single line or multiple lines) given a minimum width. Declaration public static int MaxWidth(ustring text, int width) Parameters Type Name Description NStack.ustring text Text, may contain newlines. System.Int32 width The minimum width for the text. Returns Type Description System.Int32 Max width of lines. | Improve this Doc View Source MaxWidthLine(ustring) Determines the line with the highest width in the text if it contains newlines. Declaration public static int MaxWidthLine(ustring text) Parameters Type Name Description NStack.ustring text Text, may contain newlines. Returns Type Description System.Int32 The highest line width. | Improve this Doc View Source RemoveHotKeySpecifier(ustring, Int32, Rune) Removes the hotkey specifier from text. Declaration public static ustring RemoveHotKeySpecifier(ustring text, int hotPos, Rune hotKeySpecifier) Parameters Type Name Description NStack.ustring text The text to manipulate. System.Int32 hotPos Returns the position of the hot-key in the text. -1 if not found. System.Rune hotKeySpecifier The hot-key specifier (e.g. '_') to look for. Returns Type Description NStack.ustring The input text with the hotkey specifier ('_') removed. | Improve this Doc View Source ReplaceHotKeyWithTag(ustring, Int32) Replaces the Rune at the index specified by the hotPos parameter with a tag identifying it as the hotkey. Declaration public ustring ReplaceHotKeyWithTag(ustring text, int hotPos) Parameters Type Name Description NStack.ustring text The text to tag the hotkey in. System.Int32 hotPos The Rune index of the hotkey in text . Returns Type Description NStack.ustring The text with the hotkey tagged. | Improve this Doc View Source SplitNewLine(ustring) Splits all newlines in the text into a list and supports both CRLF and LF, preserving the ending newline. Declaration public static List SplitNewLine(ustring text) Parameters Type Name Description NStack.ustring text The text. Returns Type Description System.Collections.Generic.List < NStack.ustring > A list of text without the newline characters. | Improve this Doc View Source WordWrap(ustring, Int32, Boolean, Int32, TextDirection) Formats the provided text to fit within the width provided using word wrapping. Declaration public static List WordWrap(ustring text, int width, bool preserveTrailingSpaces = false, int tabWidth = 0, TextDirection textDirection = TextDirection.LeftRight_TopBottom) Parameters Type Name Description NStack.ustring text The text to word wrap System.Int32 width The width to contain the text to System.Boolean preserveTrailingSpaces If true , the wrapped text will keep the trailing spaces. If false , the trailing spaces will be trimmed. System.Int32 tabWidth The tab width. TextDirection textDirection The text direction. Returns Type Description System.Collections.Generic.List < NStack.ustring > Returns a list of word wrapped lines. Events | Improve this Doc View Source HotKeyChanged Event invoked when the HotKey is changed. Declaration public event Action HotKeyChanged Event Type Type Description System.Action < Key >" - }, - "api/Terminal.Gui/Terminal.Gui.TextValidateField.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextValidateField.html", - "title": "Class TextValidateField", - "keywords": "Class TextValidateField Text field that validates input through a ITextValidateProvider Inheritance System.Object Responder View TextValidateField Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextValidateField : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source TextValidateField() Initializes a new instance of the TextValidateField class using Computed positioning. Declaration public TextValidateField() | Improve this Doc View Source TextValidateField(ITextValidateProvider) Initializes a new instance of the TextValidateField class using Computed positioning. Declaration public TextValidateField(ITextValidateProvider provider) Parameters Type Name Description ITextValidateProvider provider Properties | Improve this Doc View Source IsValid This property returns true if the input is valid. Declaration public virtual bool IsValid { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Provider Provider Declaration public ITextValidateProvider Provider { get; set; } Property Value Type Description ITextValidateProvider | Improve this Doc View Source Text Text Declaration public ustring Text { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html", - "title": "Namespace Terminal.Gui.TextValidateProviders", - "keywords": "Namespace Terminal.Gui.TextValidateProviders Classes NetMaskedTextProvider .Net MaskedTextProvider Provider for TextValidateField. Wrapper around MaskedTextProvider Masking elements TextRegexProvider Regex Provider for TextValidateField. Interfaces ITextValidateProvider TextValidateField Providers Interface. All TextValidateField are created with a ITextValidateProvider." - }, - "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html", - "title": "Interface ITextValidateProvider", - "keywords": "Interface ITextValidateProvider TextValidateField Providers Interface. All TextValidateField are created with a ITextValidateProvider. Namespace : Terminal.Gui.TextValidateProviders Assembly : Terminal.Gui.dll Syntax public interface ITextValidateProvider Properties | Improve this Doc View Source DisplayText Gets the formatted string for display. Declaration ustring DisplayText { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Fixed Set that this provider uses a fixed width. e.g. Masked ones are fixed. Declaration bool Fixed { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsValid True if the input is valid, otherwise false. Declaration bool IsValid { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Text Set the input text and get the current value. Declaration ustring Text { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source Cursor(Int32) Set Cursor position to pos . Declaration int Cursor(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 Return first valid position. | Improve this Doc View Source CursorEnd() Find the last valid character position. Declaration int CursorEnd() Returns Type Description System.Int32 New cursor position. | Improve this Doc View Source CursorLeft(Int32) First valid position before pos . Declaration int CursorLeft(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 New cursor position if any, otherwise returns pos | Improve this Doc View Source CursorRight(Int32) First valid position after pos . Declaration int CursorRight(int pos) Parameters Type Name Description System.Int32 pos Current position. Returns Type Description System.Int32 New cursor position if any, otherwise returns pos | Improve this Doc View Source CursorStart() Find the first valid character position. Declaration int CursorStart() Returns Type Description System.Int32 New cursor position. | Improve this Doc View Source Delete(Int32) Deletes the current character in pos . Declaration bool Delete(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Boolean true if the character was successfully removed, otherwise false. | Improve this Doc View Source InsertAt(Char, Int32) Insert character ch in position pos . Declaration bool InsertAt(char ch, int pos) Parameters Type Name Description System.Char ch System.Int32 pos Returns Type Description System.Boolean true if the character was successfully inserted, otherwise false." - }, - "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html", - "title": "Class NetMaskedTextProvider", - "keywords": "Class NetMaskedTextProvider .Net MaskedTextProvider Provider for TextValidateField. Wrapper around MaskedTextProvider Masking elements Inheritance System.Object NetMaskedTextProvider Implements ITextValidateProvider Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.TextValidateProviders Assembly : Terminal.Gui.dll Syntax public class NetMaskedTextProvider : ITextValidateProvider Constructors | Improve this Doc View Source NetMaskedTextProvider(String) Empty Constructor Declaration public NetMaskedTextProvider(string mask) Parameters Type Name Description System.String mask Properties | Improve this Doc View Source DisplayText Declaration public ustring DisplayText { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Fixed Declaration public bool Fixed { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsValid Declaration public bool IsValid { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Mask Mask property Declaration public ustring Mask { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source Text Declaration public ustring Text { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source Cursor(Int32) Declaration public int Cursor(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 | Improve this Doc View Source CursorEnd() Declaration public int CursorEnd() Returns Type Description System.Int32 | Improve this Doc View Source CursorLeft(Int32) Declaration public int CursorLeft(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 | Improve this Doc View Source CursorRight(Int32) Declaration public int CursorRight(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 | Improve this Doc View Source CursorStart() Declaration public int CursorStart() Returns Type Description System.Int32 | Improve this Doc View Source Delete(Int32) Declaration public bool Delete(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Boolean | Improve this Doc View Source InsertAt(Char, Int32) Declaration public bool InsertAt(char ch, int pos) Parameters Type Name Description System.Char ch System.Int32 pos Returns Type Description System.Boolean Implements ITextValidateProvider" - }, - "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html", - "title": "Class TextRegexProvider", - "keywords": "Class TextRegexProvider Regex Provider for TextValidateField. Inheritance System.Object TextRegexProvider Implements ITextValidateProvider Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.TextValidateProviders Assembly : Terminal.Gui.dll Syntax public class TextRegexProvider : ITextValidateProvider Constructors | Improve this Doc View Source TextRegexProvider(String) Empty Constructor. Declaration public TextRegexProvider(string pattern) Parameters Type Name Description System.String pattern Properties | Improve this Doc View Source DisplayText Declaration public ustring DisplayText { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Fixed Declaration public bool Fixed { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsValid Declaration public bool IsValid { get; } Property Value Type Description System.Boolean | Improve this Doc View Source Pattern Regex pattern property. Declaration public ustring Pattern { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source Text Declaration public ustring Text { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source ValidateOnInput When true, validates with the regex pattern on each input, preventing the input if it's not valid. Declaration public bool ValidateOnInput { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source Cursor(Int32) Declaration public int Cursor(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 | Improve this Doc View Source CursorEnd() Declaration public int CursorEnd() Returns Type Description System.Int32 | Improve this Doc View Source CursorLeft(Int32) Declaration public int CursorLeft(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 | Improve this Doc View Source CursorRight(Int32) Declaration public int CursorRight(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Int32 | Improve this Doc View Source CursorStart() Declaration public int CursorStart() Returns Type Description System.Int32 | Improve this Doc View Source Delete(Int32) Declaration public bool Delete(int pos) Parameters Type Name Description System.Int32 pos Returns Type Description System.Boolean | Improve this Doc View Source InsertAt(Char, Int32) Declaration public bool InsertAt(char ch, int pos) Parameters Type Name Description System.Char ch System.Int32 pos Returns Type Description System.Boolean Implements ITextValidateProvider" - }, - "api/Terminal.Gui/Terminal.Gui.TextView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextView.html", - "title": "Class TextView", - "keywords": "Class TextView Multi-line text editing View Inheritance System.Object Responder View TextView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks TextView provides a multi-line text editor. Users interact with it with the standard Emacs commands for movement or the arrow keys. Shortcut Action performed Left cursor, Control-b Moves the editing point left. Right cursor, Control-f Moves the editing point right. Alt-b Moves one word back. Alt-f Moves one word forward. Up cursor, Control-p Moves the editing point one line up. Down cursor, Control-n Moves the editing point one line down Home key, Control-a Moves the cursor to the beginning of the line. End key, Control-e Moves the cursor to the end of the line. Control-Home Scrolls to the first line and moves the cursor there. Control-End Scrolls to the last line and moves the cursor there. Delete, Control-d Deletes the character in front of the cursor. Backspace Deletes the character behind the cursor. Control-k Deletes the text until the end of the line and replaces the kill buffer with the deleted text. You can paste this text in a different place by using Control-y. Control-y Pastes the content of the kill ring into the current position. Alt-d Deletes the word above the cursor and adds it to the kill ring. You can paste the contents of the kill ring with Control-y. Control-q Quotes the next input character, to prevent the normal processing of key handling to take place. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source TextView() Initializes a TextView on the specified area, with dimensions controlled with the X, Y, Width and Height properties. Declaration public TextView() | Improve this Doc View Source TextView(Rect) Initializes a TextView on the specified area, with absolute position and size. Declaration public TextView(Rect frame) Parameters Type Name Description Rect frame Properties | Improve this Doc View Source AllowsReturn Gets or sets a value indicating whether pressing ENTER in a TextView creates a new line of text in the view or activates the default button for the toplevel. Declaration public bool AllowsReturn { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source AllowsTab Gets or sets whether the TextView inserts a tab character into the text or ignores tab input. If set to `false` and the user presses the tab key (or shift-tab) the focus will move to the next view (or previous with shift-tab). The default is `true`; if the user presses the tab key, a tab character will be inserted into the text. Declaration public bool AllowsTab { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Autocomplete Provides autocomplete context menu based on suggestions at the current cursor position. Populate AllSuggestions to enable this feature Declaration public IAutocomplete Autocomplete { get; protected set; } Property Value Type Description IAutocomplete | Improve this Doc View Source BottomOffset The bottom offset needed to use a horizontal scrollbar or for another reason. This is only needed with the keyboard navigation. Declaration public int BottomOffset { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source CanFocus Declaration public override bool CanFocus { get; set; } Property Value Type Description System.Boolean Overrides View.CanFocus | Improve this Doc View Source ContextMenu Get the ContextMenu for this view. Declaration public ContextMenu ContextMenu { get; } Property Value Type Description ContextMenu | Improve this Doc View Source CurrentColumn Gets the cursor column. Declaration public int CurrentColumn { get; } Property Value Type Description System.Int32 The cursor column. | Improve this Doc View Source CurrentRow Gets the current cursor row. Declaration public int CurrentRow { get; } Property Value Type Description System.Int32 | Improve this Doc View Source CursorPosition Sets or gets the current cursor position. Declaration public Point CursorPosition { get; set; } Property Value Type Description Point | Improve this Doc View Source DesiredCursorVisibility Get / Set the wished cursor when the field is focused Declaration public CursorVisibility DesiredCursorVisibility { get; set; } Property Value Type Description CursorVisibility | Improve this Doc View Source Frame Declaration public override Rect Frame { get; set; } Property Value Type Description Rect Overrides View.Frame | Improve this Doc View Source HasHistoryChanges Indicates whatever the text has history changes or not. true if the text has history changes false otherwise. Declaration public bool HasHistoryChanges { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsDirty Indicates whatever the text was changed or not. true if the text was changed false otherwise. Declaration public bool IsDirty { get; } Property Value Type Description System.Boolean | Improve this Doc View Source LeftColumn Gets or sets the left column. Declaration public int LeftColumn { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Lines Gets the number of lines. Declaration public int Lines { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Maxlength Gets the maximum visible length line. Declaration public int Maxlength { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Multiline Gets or sets a value indicating whether this TextView is a multiline text view. Declaration public bool Multiline { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ReadOnly Gets or sets whether the TextView is in read-only mode or not Declaration public bool ReadOnly { get; set; } Property Value Type Description System.Boolean Boolean value(Default false) | Improve this Doc View Source RightOffset The right offset needed to use a vertical scrollbar or for another reason. This is only needed with the keyboard navigation. Declaration public int RightOffset { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedLength Length of the selected text. Declaration public int SelectedLength { get; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedText The selected text. Declaration public ustring SelectedText { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Selecting Get or sets the selecting. Declaration public bool Selecting { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source SelectionStartColumn Start column position of the selected text. Declaration public int SelectionStartColumn { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectionStartRow Start row position of the selected text. Declaration public int SelectionStartRow { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TabWidth Gets or sets a value indicating the number of whitespace when pressing the TAB key. Declaration public int TabWidth { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Text Sets or gets the text in the TextView . Declaration public override ustring Text { get; set; } Property Value Type Description NStack.ustring Overrides View.Text | Improve this Doc View Source TopRow Gets or sets the top row. Declaration public int TopRow { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source Used Tracks whether the text view should be considered \"used\", that is, that the user has moved in the entry, so new input should be appended at the cursor position, rather than clearing the entry Declaration public bool Used { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source WordWrap Allows word wrap the to fit the available container width. Declaration public bool WordWrap { get; set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source ClearHistoryChanges() Allows clearing the Terminal.Gui.HistoryText.HistoryTextItem items updating the original text. Declaration public void ClearHistoryChanges() | Improve this Doc View Source CloseFile() Closes the contents of the stream into the TextView . Declaration public bool CloseFile() Returns Type Description System.Boolean true , if stream was closed, false otherwise. | Improve this Doc View Source Copy() Copy the selected text to the clipboard contents. Declaration public void Copy() | Improve this Doc View Source Cut() Cut the selected text to the clipboard contents. Declaration public void Cut() | Improve this Doc View Source DeleteAll() Deletes all text. Declaration public void DeleteAll() | Improve this Doc View Source DeleteCharLeft() Deletes all the selected or a single character at left from the position of the cursor. Declaration public void DeleteCharLeft() | Improve this Doc View Source DeleteCharRight() Deletes all the selected or a single character at right from the position of the cursor. Declaration public void DeleteCharRight() | Improve this Doc View Source FindNextText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean) Find the next text based on the match case with the option to replace it. Declaration public bool FindNextText(ustring textToFind, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null, bool replace = false) Parameters Type Name Description NStack.ustring textToFind The text to find. System.Boolean gaveFullTurn true If all the text was forward searched. false otherwise. System.Boolean matchCase The match case setting. System.Boolean matchWholeWord The match whole word setting. NStack.ustring textToReplace The text to replace. System.Boolean replace true If is replacing. false otherwise. Returns Type Description System.Boolean true If the text was found. false otherwise. | Improve this Doc View Source FindPreviousText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean) Find the previous text based on the match case with the option to replace it. Declaration public bool FindPreviousText(ustring textToFind, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null, bool replace = false) Parameters Type Name Description NStack.ustring textToFind The text to find. System.Boolean gaveFullTurn true If all the text was backward searched. false otherwise. System.Boolean matchCase The match case setting. System.Boolean matchWholeWord The match whole word setting. NStack.ustring textToReplace The text to replace. System.Boolean replace true If the text was found. false otherwise. Returns Type Description System.Boolean true If the text was found. false otherwise. | Improve this Doc View Source FindTextChanged() Reset the flag to stop continuous find. Declaration public void FindTextChanged() | Improve this Doc View Source GetCurrentLine() Returns the characters on the current line (where the cursor is positioned). Use CurrentColumn to determine the position of the cursor within that line Declaration public List GetCurrentLine() Returns Type Description System.Collections.Generic.List < System.Rune > | Improve this Doc View Source GetNormalColor() Declaration public override Attribute GetNormalColor() Returns Type Description Attribute Overrides View.GetNormalColor() | Improve this Doc View Source InsertText(String) Inserts the given toAdd text at the current cursor position exactly as if the user had just typed it Declaration public void InsertText(string toAdd) Parameters Type Name Description System.String toAdd Text to add | Improve this Doc View Source LoadFile(String) Loads the contents of the file into the TextView . Declaration public bool LoadFile(string path) Parameters Type Name Description System.String path Path to the file to load. Returns Type Description System.Boolean true , if file was loaded, false otherwise. | Improve this Doc View Source LoadStream(Stream) Loads the contents of the stream into the TextView . Declaration public void LoadStream(Stream stream) Parameters Type Name Description System.IO.Stream stream Stream to load the contents from. | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent ev) Parameters Type Name Description MouseEvent ev Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source MoveEnd() Will scroll the TextView to the last line and position the cursor there. Declaration public void MoveEnd() | Improve this Doc View Source MoveHome() Will scroll the TextView to the first line and position the cursor there. Declaration public void MoveHome() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnKeyUp(KeyEvent) Declaration public override bool OnKeyUp(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.OnKeyUp(KeyEvent) | Improve this Doc View Source OnLeave(View) Declaration public override bool OnLeave(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnLeave(View) | Improve this Doc View Source OnUnwrappedCursorPosition(Nullable, Nullable) Invoke the UnwrappedCursorPosition event with the unwrapped CursorPosition . Declaration public virtual void OnUnwrappedCursorPosition(int? cRow = null, int? cCol = null) Parameters Type Name Description System.Nullable < System.Int32 > cRow System.Nullable < System.Int32 > cCol | Improve this Doc View Source Paste() Paste the clipboard contents into the current selected position. Declaration public void Paste() | Improve this Doc View Source PositionCursor() Positions the cursor on the current row and column Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source ReplaceAllText(ustring, Boolean, Boolean, ustring) Replaces all the text based on the match case. Declaration public bool ReplaceAllText(ustring textToFind, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null) Parameters Type Name Description NStack.ustring textToFind The text to find. System.Boolean matchCase The match case setting. System.Boolean matchWholeWord The match whole word setting. NStack.ustring textToReplace The text to replace. Returns Type Description System.Boolean true If the text was found. false otherwise. | Improve this Doc View Source ScrollTo(Int32, Boolean) Will scroll the TextView to display the specified row at the top if isRow is true or will scroll the TextView to display the specified column at the left if isRow is false. Declaration public void ScrollTo(int idx, bool isRow = true) Parameters Type Name Description System.Int32 idx Row that should be displayed at the top or Column that should be displayed at the left, if the value is negative it will be reset to zero System.Boolean isRow If true (default) the idx is a row, column otherwise. | Improve this Doc View Source SelectAll() Select all text. Declaration public void SelectAll() | Improve this Doc View Source SetNormalColor() Sets the driver to the default color for the control where no text is being rendered. Defaults to Normal . Declaration protected virtual void SetNormalColor() | Improve this Doc View Source SetNormalColor(List, Int32) Sets the Driver to an appropriate color for rendering the given idx of the current line . Override to provide custom coloring by calling SetAttribute(Attribute) Defaults to Normal . Declaration protected virtual void SetNormalColor(List line, int idx) Parameters Type Name Description System.Collections.Generic.List < System.Rune > line System.Int32 idx | Improve this Doc View Source SetReadOnlyColor(List, Int32) Sets the Driver to an appropriate color for rendering the given idx of the current line . Override to provide custom coloring by calling SetAttribute(Attribute) Defaults to Focus . Declaration protected virtual void SetReadOnlyColor(List line, int idx) Parameters Type Name Description System.Collections.Generic.List < System.Rune > line System.Int32 idx | Improve this Doc View Source SetSelectionColor(List, Int32) Sets the Driver to an appropriate color for rendering the given idx of the current line . Override to provide custom coloring by calling SetAttribute(Attribute) Defaults to Focus . Declaration protected virtual void SetSelectionColor(List line, int idx) Parameters Type Name Description System.Collections.Generic.List < System.Rune > line System.Int32 idx | Improve this Doc View Source SetUsedColor(List, Int32) Sets the Driver to an appropriate color for rendering the given idx of the current line . Override to provide custom coloring by calling SetAttribute(Attribute) Defaults to HotFocus . Declaration protected virtual void SetUsedColor(List line, int idx) Parameters Type Name Description System.Collections.Generic.List < System.Rune > line System.Int32 idx Events | Improve this Doc View Source TextChanged Raised when the Text of the TextView changes. Declaration public event Action TextChanged Event Type Type Description System.Action | Improve this Doc View Source UnwrappedCursorPosition Invoked with the unwrapped CursorPosition . Declaration public event Action UnwrappedCursorPosition Event Type Type Description System.Action < Point > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html", - "title": "Class TextViewAutocomplete", - "keywords": "Class TextViewAutocomplete Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete' options. An implementation on a TextView. Inheritance System.Object Autocomplete TextViewAutocomplete Implements IAutocomplete Inherited Members Autocomplete.HostControl Autocomplete.PopupInsideContainer Autocomplete.MaxWidth Autocomplete.MaxHeight Autocomplete.Visible Autocomplete.Suggestions Autocomplete.AllSuggestions Autocomplete.SelectedIdx Autocomplete.ScrollOffset Autocomplete.ColorScheme Autocomplete.SelectionKey Autocomplete.CloseKey Autocomplete.Reopen Autocomplete.RenderOverlay(Point) Autocomplete.EnsureSelectedIdxIsValid() Autocomplete.ProcessKey(KeyEvent) Autocomplete.MouseEvent(MouseEvent, Boolean) Autocomplete.RenderSelectedIdxByMouse(MouseEvent) Autocomplete.ClearSuggestions() Autocomplete.GenerateSuggestions() Autocomplete.IsWordChar(Rune) Autocomplete.Select() Autocomplete.InsertSelection(String) Autocomplete.IdxToWord(List, Int32) Autocomplete.Close() Autocomplete.MoveUp() Autocomplete.MoveDown() Autocomplete.ReopenSuggestions() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TextViewAutocomplete : Autocomplete, IAutocomplete Methods | Improve this Doc View Source DeleteTextBackwards() Declaration protected override void DeleteTextBackwards() Overrides Autocomplete.DeleteTextBackwards() | Improve this Doc View Source GetCurrentWord() Declaration protected override string GetCurrentWord() Returns Type Description System.String Overrides Autocomplete.GetCurrentWord() | Improve this Doc View Source InsertText(String) Declaration protected override void InsertText(string accepted) Parameters Type Name Description System.String accepted Overrides Autocomplete.InsertText(String) Implements IAutocomplete" - }, - "api/Terminal.Gui/Terminal.Gui.Thickness.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Thickness.html", - "title": "Struct Thickness", - "keywords": "Struct Thickness Describes the thickness of a frame around a rectangle. Four System.Int32 values describe the Left , Top , Right , and Bottom sides of the rectangle, respectively. Inherited Members System.ValueType.Equals(System.Object) System.ValueType.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public struct Thickness Constructors | Improve this Doc View Source Thickness(Int32) Initializes a new instance of the Thickness structure that has the specified uniform length on each side. Declaration public Thickness(int length) Parameters Type Name Description System.Int32 length | Improve this Doc View Source Thickness(Int32, Int32, Int32, Int32) Initializes a new instance of the Thickness structure that has specific lengths (supplied as a System.Int32 ) applied to each side of the rectangle. Declaration public Thickness(int left, int top, int right, int bottom) Parameters Type Name Description System.Int32 left System.Int32 top System.Int32 right System.Int32 bottom Fields | Improve this Doc View Source Bottom Gets or sets the width, in integers, of the lower side of the bounding rectangle. Declaration public int Bottom Field Value Type Description System.Int32 | Improve this Doc View Source Left Gets or sets the width, in integers, of the left side of the bounding rectangle. Declaration public int Left Field Value Type Description System.Int32 | Improve this Doc View Source Right Gets or sets the width, in integers, of the right side of the bounding rectangle. Declaration public int Right Field Value Type Description System.Int32 | Improve this Doc View Source Top Gets or sets the width, in integers, of the upper side of the bounding rectangle. Declaration public int Top Field Value Type Description System.Int32 Methods | Improve this Doc View Source ToString() Returns the fully qualified type name of this instance. Declaration public override string ToString() Returns Type Description System.String The fully qualified type name. Overrides System.ValueType.ToString()" - }, - "api/Terminal.Gui/Terminal.Gui.TimeField.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TimeField.html", - "title": "Class TimeField", - "keywords": "Class TimeField Time editing View Inheritance System.Object Responder View TextField TimeField Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The TimeField View provides time editing functionality with mouse support. Inherited Members TextField.Used TextField.ReadOnly TextField.TextChanging TextField.TextChanged TextField.OnLeave(View) TextField.Autocomplete TextField.Frame TextField.Text TextField.Secret TextField.ScrollOffset TextField.IsDirty TextField.HasHistoryChanges TextField.ContextMenu TextField.PositionCursor() TextField.Redraw(Rect) TextField.GetNormalColor() TextField.CanFocus TextField.KillWordBackwards() TextField.KillWordForwards() TextField.SelectAll() TextField.DeleteAll() TextField.SelectedStart TextField.SelectedLength TextField.SelectedText TextField.ClearAllSelection() TextField.Copy() TextField.Cut() TextField.Paste() TextField.OnTextChanging(ustring) TextField.DesiredCursorVisibility TextField.OnEnter(View) TextField.InsertText(String, Boolean) TextField.ClearHistoryChanges() View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TimeField : TextField, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source TimeField() Initializes a new instance of TimeField using Computed positioning. Declaration public TimeField() | Improve this Doc View Source TimeField(Int32, Int32, TimeSpan, Boolean) Initializes a new instance of TimeField using Absolute positioning. Declaration public TimeField(int x, int y, TimeSpan time, bool isShort = false) Parameters Type Name Description System.Int32 x The x coordinate. System.Int32 y The y coordinate. System.TimeSpan time Initial time. System.Boolean isShort If true, the seconds are hidden. Sets the IsShortFormat property. | Improve this Doc View Source TimeField(TimeSpan) Initializes a new instance of TimeField using Computed positioning. Declaration public TimeField(TimeSpan time) Parameters Type Name Description System.TimeSpan time Initial time Properties | Improve this Doc View Source CursorPosition Declaration public override int CursorPosition { get; set; } Property Value Type Description System.Int32 Overrides TextField.CursorPosition | Improve this Doc View Source IsShortFormat Get or sets whether TimeField uses the short or long time format. Declaration public bool IsShortFormat { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Time Gets or sets the time of the TimeField . Declaration public TimeSpan Time { get; set; } Property Value Type Description System.TimeSpan Methods | Improve this Doc View Source DeleteCharLeft(Boolean) Declaration public override void DeleteCharLeft(bool useOldCursorPos = true) Parameters Type Name Description System.Boolean useOldCursorPos Overrides TextField.DeleteCharLeft(Boolean) | Improve this Doc View Source DeleteCharRight() Declaration public override void DeleteCharRight() Overrides TextField.DeleteCharRight() | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent ev) Parameters Type Name Description MouseEvent ev Returns Type Description System.Boolean Overrides TextField.MouseEvent(MouseEvent) | Improve this Doc View Source OnTimeChanged(DateTimeEventArgs) Event firing method that invokes the TimeChanged event. Declaration public virtual void OnTimeChanged(DateTimeEventArgs args) Parameters Type Name Description DateTimeEventArgs < System.TimeSpan > args The event arguments | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides TextField.ProcessKey(KeyEvent) Events | Improve this Doc View Source TimeChanged TimeChanged event, raised when the Date has changed. Declaration public event Action> TimeChanged Event Type Type Description System.Action < DateTimeEventArgs < System.TimeSpan >> Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Toplevel.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Toplevel.html", - "title": "Class Toplevel", - "keywords": "Class Toplevel Toplevel views can be modally executed. They are used for both an application's main view (filling the entire screeN and for pop-up views such as Dialog , MessageBox , and Wizard . Inheritance System.Object Responder View Toplevel Border.ToplevelContainer Window Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks Toplevels can be modally executing views, started by calling Run(Toplevel, Func) . They return control to the caller when RequestStop(Toplevel) has been called (which sets the Running property to false ). A Toplevel is created when an application initializes Terminal.Gui by calling Init(ConsoleDriver, IMainLoopDriver) . The application Toplevel can be accessed via Top . Additional Toplevels can be created and run (e.g. Dialog s. To run a Toplevel, create the Toplevel and call Run(Toplevel, Func) . Toplevels can also opt-in to more sophisticated initialization by implementing System.ComponentModel.ISupportInitialize . When they do so, the System.ComponentModel.ISupportInitialize.BeginInit() and System.ComponentModel.ISupportInitialize.EndInit() methods will be called before running the view. If first-run-only initialization is preferred, the System.ComponentModel.ISupportInitializeNotification can be implemented too, in which case the System.ComponentModel.ISupportInitialize methods will only be called if System.ComponentModel.ISupportInitializeNotification.IsInitialized is false . This allows proper View inheritance hierarchies to override base class layout code optimally by doing so only on first run, instead of on every run. Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Toplevel : View, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source Toplevel() Initializes a new instance of the Toplevel class with Computed layout, defaulting to full screen. Declaration public Toplevel() | Improve this Doc View Source Toplevel(Rect) Initializes a new instance of the Toplevel class with the specified Absolute layout. Declaration public Toplevel(Rect frame) Parameters Type Name Description Rect frame A superview-relative rectangle specifying the location and size for the new Toplevel Properties | Improve this Doc View Source CanFocus Gets or sets a value indicating whether this Toplevel can focus. Declaration public override bool CanFocus { get; } Property Value Type Description System.Boolean true if can focus; otherwise, false . Overrides View.CanFocus | Improve this Doc View Source IsMdiChild Gets or sets if this Toplevel is a Mdi child. Declaration public bool IsMdiChild { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsMdiContainer Gets or sets if this Toplevel is a Mdi container. Declaration public bool IsMdiContainer { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source MenuBar Gets or sets the menu for this Toplevel. Declaration public virtual MenuBar MenuBar { get; set; } Property Value Type Description MenuBar | Improve this Doc View Source Modal Determines whether the Toplevel is modal or not. If set to false (the default): ProcessKey(KeyEvent) events will propagate keys upwards. The Toplevel will act as an embedded view (not a modal/pop-up). If set to true : ProcessKey(KeyEvent) events will NOT propogate keys upwards. The Toplevel will and look like a modal (pop-up) (e.g. see Dialog . Declaration public bool Modal { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Running Gets or sets whether the MainLoop for this Toplevel is running or not. Declaration public bool Running { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source StatusBar Gets or sets the status bar for this Toplevel. Declaration public virtual StatusBar StatusBar { get; set; } Property Value Type Description StatusBar Methods | Improve this Doc View Source Add(View) Declaration public override void Add(View view) Parameters Type Name Description View view Overrides View.Add(View) | Improve this Doc View Source Create() Convenience factory method that creates a new Toplevel with the current terminal dimensions. Declaration public static Toplevel Create() Returns Type Description Toplevel The created Toplevel. | Improve this Doc View Source GetTopMdiChild(Type, String[]) Gets the current visible Toplevel Mdi child that matches the arguments pattern. Declaration public View GetTopMdiChild(Type type = null, string[] exclude = null) Parameters Type Name Description System.Type type The type. System.String [] exclude The strings to exclude. Returns Type Description View The matched view. | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source MoveNext() Move to the next Mdi child from the MdiTop . Declaration public virtual void MoveNext() | Improve this Doc View Source MovePrevious() Move to the previous Mdi child from the MdiTop . Declaration public virtual void MovePrevious() | Improve this Doc View Source OnAlternateBackwardKeyChanged(Key) Virtual method to invoke the AlternateBackwardKeyChanged event. Declaration public virtual void OnAlternateBackwardKeyChanged(Key oldKey) Parameters Type Name Description Key oldKey | Improve this Doc View Source OnAlternateForwardKeyChanged(Key) Virtual method to invoke the AlternateForwardKeyChanged event. Declaration public virtual void OnAlternateForwardKeyChanged(Key oldKey) Parameters Type Name Description Key oldKey | Improve this Doc View Source OnKeyDown(KeyEvent) Declaration public override bool OnKeyDown(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.OnKeyDown(KeyEvent) | Improve this Doc View Source OnKeyUp(KeyEvent) Declaration public override bool OnKeyUp(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.OnKeyUp(KeyEvent) | Improve this Doc View Source OnLoaded() Called from Begin(Toplevel) before the Toplevel redraws for the first time. Declaration public virtual void OnLoaded() | Improve this Doc View Source OnQuitKeyChanged(Key) Virtual method to invoke the QuitKeyChanged event. Declaration public virtual void OnQuitKeyChanged(Key oldKey) Parameters Type Name Description Key oldKey | Improve this Doc View Source PositionCursor() Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source PositionToplevel(Toplevel) Virtual method enabling implementation of specific positions for inherited Toplevel views. Declaration public virtual void PositionToplevel(Toplevel top) Parameters Type Name Description Toplevel top The toplevel. | Improve this Doc View Source ProcessColdKey(KeyEvent) Declaration public override bool ProcessColdKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessColdKey(KeyEvent) | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source Remove(View) Declaration public override void Remove(View view) Parameters Type Name Description View view Overrides View.Remove(View) | Improve this Doc View Source RemoveAll() Declaration public override void RemoveAll() Overrides View.RemoveAll() | Improve this Doc View Source RequestStop() Stops and closes this Toplevel . If this Toplevel is the top-most Toplevel, RequestStop(Toplevel) will be called, causing the application to exit. Declaration public virtual void RequestStop() | Improve this Doc View Source RequestStop(Toplevel) Stops and closes the Toplevel specified by top . If top is the top-most Toplevel, RequestStop(Toplevel) will be called, causing the application to exit. Declaration public virtual void RequestStop(Toplevel top) Parameters Type Name Description Toplevel top The toplevel to request stop. | Improve this Doc View Source ShowChild(Toplevel) Shows the Mdi child indicated by top , setting it as Current . Declaration public virtual bool ShowChild(Toplevel top = null) Parameters Type Name Description Toplevel top The Toplevel. Returns Type Description System.Boolean true if the toplevel can be shown or false if not. | Improve this Doc View Source WillPresent() Invoked by Begin(Toplevel) as part of Run(Toplevel, Func) after the views have been laid out, and before the views are drawn for the first time. Declaration public virtual void WillPresent() Events | Improve this Doc View Source Activate Invoked when the Toplevel Application.RunState becomes the Current Toplevel. Declaration public event Action Activate Event Type Type Description System.Action < Toplevel > | Improve this Doc View Source AllChildClosed Invoked when the last child of the Toplevel Application.RunState is closed from by Terminal.Gui.Application.End(Terminal.Gui.View) . Declaration public event Action AllChildClosed Event Type Type Description System.Action | Improve this Doc View Source AlternateBackwardKeyChanged Invoked when the AlternateBackwardKey is changed. Declaration public event Action AlternateBackwardKeyChanged Event Type Type Description System.Action < Key > | Improve this Doc View Source AlternateForwardKeyChanged Invoked when the AlternateForwardKey is changed. Declaration public event Action AlternateForwardKeyChanged Event Type Type Description System.Action < Key > | Improve this Doc View Source ChildClosed Invoked when a child of the Toplevel Application.RunState is closed by Terminal.Gui.Application.End(Terminal.Gui.View) . Declaration public event Action ChildClosed Event Type Type Description System.Action < Toplevel > | Improve this Doc View Source ChildLoaded Invoked when a child Toplevel's Application.RunState has been loaded. Declaration public event Action ChildLoaded Event Type Type Description System.Action < Toplevel > | Improve this Doc View Source ChildUnloaded Invoked when a cjhild Toplevel's Application.RunState has been unloaded. Declaration public event Action ChildUnloaded Event Type Type Description System.Action < Toplevel > | Improve this Doc View Source Closed Invoked when the Toplevel's Application.RunState is closed by Terminal.Gui.Application.End(Terminal.Gui.View) . Declaration public event Action Closed Event Type Type Description System.Action < Toplevel > | Improve this Doc View Source Closing Invoked when the Toplevel's Application.RunState is being closed by RequestStop(Toplevel) . Declaration public event Action Closing Event Type Type Description System.Action < ToplevelClosingEventArgs > | Improve this Doc View Source Deactivate Invoked when the Toplevel Application.RunState ceases to be the Current Toplevel. Declaration public event Action Deactivate Event Type Type Description System.Action < Toplevel > | Improve this Doc View Source Loaded Invoked when the Toplevel Application.RunState has begin loaded. A Loaded event handler is a good place to finalize initialization before calling RunLoop(Application.RunState, Boolean) . Declaration public event Action Loaded Event Type Type Description System.Action | Improve this Doc View Source QuitKeyChanged Invoked when the QuitKey is changed. Declaration public event Action QuitKeyChanged Event Type Type Description System.Action < Key > | Improve this Doc View Source Ready Invoked when the Toplevel MainLoop has started it's first iteration. Subscribe to this event to perform tasks when the Toplevel has been laid out and focus has been set. changes. A Ready event handler is a good place to finalize initialization after calling Run(Func) on this Toplevel. Declaration public event Action Ready Event Type Type Description System.Action | Improve this Doc View Source Resized Invoked when the terminal has been resized. The new Size of the terminal is provided. Declaration public event Action Resized Event Type Type Description System.Action < Size > | Improve this Doc View Source Unloaded Invoked when the Toplevel Application.RunState has been unloaded. A Unloaded event handler is a good place to dispose objects after calling End(Application.RunState) . Declaration public event Action Unloaded Event Type Type Description System.Action Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html", - "title": "Class ToplevelClosingEventArgs", - "keywords": "Class ToplevelClosingEventArgs System.EventArgs implementation for the Closing event. Inheritance System.Object System.EventArgs ToplevelClosingEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ToplevelClosingEventArgs : EventArgs Constructors | Improve this Doc View Source ToplevelClosingEventArgs(Toplevel) Initializes the event arguments with the requesting toplevel. Declaration public ToplevelClosingEventArgs(Toplevel requestingTop) Parameters Type Name Description Toplevel requestingTop The RequestingTop . Properties | Improve this Doc View Source Cancel Provides an event cancellation option. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source RequestingTop The toplevel requesting stop. Declaration public View RequestingTop { get; } Property Value Type Description View" - }, - "api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html", - "title": "Class ToplevelComparer", - "keywords": "Class ToplevelComparer Implements the System.Collections.Generic.IComparer to sort the Toplevel from the MdiChildes if needed. Inheritance System.Object ToplevelComparer Implements System.Collections.Generic.IComparer < Toplevel > Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public sealed class ToplevelComparer : IComparer Methods | Improve this Doc View Source Compare(Toplevel, Toplevel) Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. Declaration public int Compare(Toplevel x, Toplevel y) Parameters Type Name Description Toplevel x The first object to compare. Toplevel y The second object to compare. Returns Type Description System.Int32 A signed integer that indicates the relative values of x and y , as shown in the following table.Value Meaning Less than zero x is less than y .Zero x equals y .Greater than zero x is greater than y . Implements System.Collections.Generic.IComparer" - }, - "api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html": { - "href": "api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html", - "title": "Class ToplevelEqualityComparer", - "keywords": "Class ToplevelEqualityComparer Implements the System.Collections.Generic.IEqualityComparer for comparing two Toplevel s used by StackExtensions . Inheritance System.Object ToplevelEqualityComparer Implements System.Collections.Generic.IEqualityComparer < Toplevel > Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class ToplevelEqualityComparer : IEqualityComparer Methods | Improve this Doc View Source Equals(Toplevel, Toplevel) Determines whether the specified objects are equal. Declaration public bool Equals(Toplevel x, Toplevel y) Parameters Type Name Description Toplevel x The first object of type Toplevel to compare. Toplevel y The second object of type Toplevel to compare. Returns Type Description System.Boolean true if the specified objects are equal; otherwise, false . | Improve this Doc View Source GetHashCode(Toplevel) Returns a hash code for the specified object. Declaration public int GetHashCode(Toplevel obj) Parameters Type Name Description Toplevel obj The Toplevel for which a hash code is to be returned. Returns Type Description System.Int32 A hash code for the specified object. Exceptions Type Condition System.ArgumentNullException The type of obj is a reference type and obj is null . Implements System.Collections.Generic.IEqualityComparer" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html", - "title": "Delegate AspectGetterDelegate", - "keywords": "Delegate AspectGetterDelegate Delegates of this type are used to fetch string representations of user's model objects Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public delegate string AspectGetterDelegate(T toRender) where T : class; Parameters Type Name Description T toRender The object that is being rendered Returns Type Description System.String Type Parameters Name Description T" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html", - "title": "Class DelegateTreeBuilder", - "keywords": "Class DelegateTreeBuilder Implementation of ITreeBuilder that uses user defined functions Inheritance System.Object TreeBuilder DelegateTreeBuilder Implements ITreeBuilder Inherited Members TreeBuilder.SupportsCanExpand System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public class DelegateTreeBuilder : TreeBuilder, ITreeBuilder Type Parameters Name Description T Constructors | Improve this Doc View Source DelegateTreeBuilder(Func>) Constructs an implementation of ITreeBuilder that calls the user defined method childGetter to determine children Declaration public DelegateTreeBuilder(Func> childGetter) Parameters Type Name Description System.Func > childGetter | Improve this Doc View Source DelegateTreeBuilder(Func>, Func) Constructs an implementation of ITreeBuilder that calls the user defined method childGetter to determine children and canExpand to determine expandability Declaration public DelegateTreeBuilder(Func> childGetter, Func canExpand) Parameters Type Name Description System.Func > childGetter System.Func canExpand Methods | Improve this Doc View Source CanExpand(T) Returns whether a node can be expanded based on the delegate passed during construction Declaration public override bool CanExpand(T toExpand) Parameters Type Name Description T toExpand Returns Type Description System.Boolean Overrides Terminal.Gui.Trees.TreeBuilder.CanExpand(T) | Improve this Doc View Source GetChildren(T) Returns children using the delegate method passed during construction Declaration public override IEnumerable GetChildren(T forObject) Parameters Type Name Description T forObject Returns Type Description System.Collections.Generic.IEnumerable Overrides Terminal.Gui.Trees.TreeBuilder.GetChildren(T) Implements ITreeBuilder" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.html", - "title": "Namespace Terminal.Gui.Trees", - "keywords": "Namespace Terminal.Gui.Trees Classes DelegateTreeBuilder Implementation of ITreeBuilder that uses user defined functions ObjectActivatedEventArgs Event args for the ObjectActivated event SelectionChangedEventArgs Event arguments describing a change in selected object in a tree view TreeBuilder Abstract implementation of ITreeBuilder . TreeNode Simple class for representing nodes, use with regular (non generic) TreeView . TreeNodeBuilder ITreeBuilder implementation for ITreeNode objects TreeStyle Defines rendering options that affect how the tree is displayed Interfaces ITreeBuilder Interface for supplying data to a TreeView on demand as root level nodes are expanded by the user ITreeNode Interface to implement when you want the regular (non generic) TreeView to automatically determine children for your class (without having to specify an ITreeBuilder ) Delegates AspectGetterDelegate Delegates of this type are used to fetch string representations of user's model objects" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html", - "title": "Interface ITreeBuilder", - "keywords": "Interface ITreeBuilder Interface for supplying data to a TreeView on demand as root level nodes are expanded by the user Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public interface ITreeBuilder Type Parameters Name Description T Properties | Improve this Doc View Source SupportsCanExpand Returns true if CanExpand(T) is implemented by this class Declaration bool SupportsCanExpand { get; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source CanExpand(T) Returns true/false for whether a model has children. This method should be implemented when GetChildren(T) is an expensive operation otherwise SupportsCanExpand should return false (in which case this method will not be called) Declaration bool CanExpand(T toExpand) Parameters Type Name Description T toExpand Returns Type Description System.Boolean | Improve this Doc View Source GetChildren(T) Returns all children of a given forObject which should be added to the tree as new branches underneath it Declaration IEnumerable GetChildren(T forObject) Parameters Type Name Description T forObject Returns Type Description System.Collections.Generic.IEnumerable " - }, - "api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html", - "title": "Interface ITreeNode", - "keywords": "Interface ITreeNode Interface to implement when you want the regular (non generic) TreeView to automatically determine children for your class (without having to specify an ITreeBuilder ) Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public interface ITreeNode Properties | Improve this Doc View Source Children The children of your class which should be rendered underneath it when expanded Declaration IList Children { get; } Property Value Type Description System.Collections.Generic.IList < ITreeNode > | Improve this Doc View Source Tag Optionally allows you to store some custom data/class here. Declaration object Tag { get; set; } Property Value Type Description System.Object | Improve this Doc View Source Text Text to display when rendering the node Declaration string Text { get; set; } Property Value Type Description System.String" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html", - "title": "Class ObjectActivatedEventArgs", - "keywords": "Class ObjectActivatedEventArgs Event args for the ObjectActivated event Inheritance System.Object ObjectActivatedEventArgs Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public class ObjectActivatedEventArgs where T : class Type Parameters Name Description T Constructors | Improve this Doc View Source ObjectActivatedEventArgs(TreeView, T) Creates a new instance documenting activation of the activated object Declaration public ObjectActivatedEventArgs(TreeView tree, T activated) Parameters Type Name Description TreeView tree Tree in which the activation is happening T activated What object is being activated Properties | Improve this Doc View Source ActivatedObject The object that was selected at the time of activation Declaration public T ActivatedObject { get; } Property Value Type Description T | Improve this Doc View Source Tree The tree in which the activation occurred Declaration public TreeView Tree { get; } Property Value Type Description TreeView " - }, - "api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html", - "title": "Class SelectionChangedEventArgs", - "keywords": "Class SelectionChangedEventArgs Event arguments describing a change in selected object in a tree view Inheritance System.Object System.EventArgs SelectionChangedEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public class SelectionChangedEventArgs : EventArgs where T : class Type Parameters Name Description T Constructors | Improve this Doc View Source SelectionChangedEventArgs(TreeView, T, T) Creates a new instance of event args describing a change of selection in tree Declaration public SelectionChangedEventArgs(TreeView tree, T oldValue, T newValue) Parameters Type Name Description TreeView tree T oldValue T newValue Properties | Improve this Doc View Source NewValue The newly selected value in the Tree (can be null) Declaration public T NewValue { get; } Property Value Type Description T | Improve this Doc View Source OldValue The previously selected value (can be null) Declaration public T OldValue { get; } Property Value Type Description T | Improve this Doc View Source Tree The view in which the change occurred Declaration public TreeView Tree { get; } Property Value Type Description TreeView " - }, - "api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html", - "title": "Class TreeBuilder", - "keywords": "Class TreeBuilder Abstract implementation of ITreeBuilder . Inheritance System.Object TreeBuilder DelegateTreeBuilder TreeNodeBuilder Implements ITreeBuilder Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public abstract class TreeBuilder : ITreeBuilder Type Parameters Name Description T Constructors | Improve this Doc View Source TreeBuilder(Boolean) Constructs base and initializes SupportsCanExpand Declaration public TreeBuilder(bool supportsCanExpand) Parameters Type Name Description System.Boolean supportsCanExpand Pass true if you intend to implement CanExpand(T) otherwise false Properties | Improve this Doc View Source SupportsCanExpand Declaration public bool SupportsCanExpand { get; protected set; } Property Value Type Description System.Boolean Methods | Improve this Doc View Source CanExpand(T) Override this method to return a rapid answer as to whether GetChildren(T) returns results. If you are implementing this method ensure you passed true in base constructor or set SupportsCanExpand Declaration public virtual bool CanExpand(T toExpand) Parameters Type Name Description T toExpand Returns Type Description System.Boolean | Improve this Doc View Source GetChildren(T) Declaration public abstract IEnumerable GetChildren(T forObject) Parameters Type Name Description T forObject Returns Type Description System.Collections.Generic.IEnumerable Implements ITreeBuilder" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html", - "title": "Class TreeNode", - "keywords": "Class TreeNode Simple class for representing nodes, use with regular (non generic) TreeView . Inheritance System.Object TreeNode Implements ITreeNode Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public class TreeNode : ITreeNode Constructors | Improve this Doc View Source TreeNode() Initialises a new instance with no Text Declaration public TreeNode() | Improve this Doc View Source TreeNode(String) Initialises a new instance and sets starting Text Declaration public TreeNode(string text) Parameters Type Name Description System.String text Properties | Improve this Doc View Source Children Children of the current node Declaration public virtual IList Children { get; set; } Property Value Type Description System.Collections.Generic.IList < ITreeNode > | Improve this Doc View Source Tag Optionally allows you to store some custom data/class here. Declaration public object Tag { get; set; } Property Value Type Description System.Object | Improve this Doc View Source Text Text to display in tree node for current entry Declaration public virtual string Text { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source ToString() returns Text Declaration public override string ToString() Returns Type Description System.String Overrides System.Object.ToString() Implements ITreeNode" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html", - "title": "Class TreeNodeBuilder", - "keywords": "Class TreeNodeBuilder ITreeBuilder implementation for ITreeNode objects Inheritance System.Object TreeBuilder < ITreeNode > TreeNodeBuilder Implements ITreeBuilder < ITreeNode > Inherited Members TreeBuilder.SupportsCanExpand TreeBuilder.CanExpand(ITreeNode) System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public class TreeNodeBuilder : TreeBuilder, ITreeBuilder Constructors | Improve this Doc View Source TreeNodeBuilder() Initialises a new instance of builder for any model objects of Type ITreeNode Declaration public TreeNodeBuilder() Methods | Improve this Doc View Source GetChildren(ITreeNode) Returns Children from model Declaration public override IEnumerable GetChildren(ITreeNode model) Parameters Type Name Description ITreeNode model Returns Type Description System.Collections.Generic.IEnumerable < ITreeNode > Overrides Terminal.Gui.Trees.TreeBuilder.GetChildren(Terminal.Gui.Trees.ITreeNode) Implements ITreeBuilder" - }, - "api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html", - "title": "Class TreeStyle", - "keywords": "Class TreeStyle Defines rendering options that affect how the tree is displayed Inheritance System.Object TreeStyle Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui.Trees Assembly : Terminal.Gui.dll Syntax public class TreeStyle Properties | Improve this Doc View Source CollapseableSymbol Symbol to use for branch nodes that can be collapsed (are currently expanded). Defaults to '-'. Set to null to hide Declaration public Rune? CollapseableSymbol { get; set; } Property Value Type Description System.Nullable < System.Rune > | Improve this Doc View Source ColorExpandSymbol Set to true to highlight expand/collapse symbols in hot key color Declaration public bool ColorExpandSymbol { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ExpandableSymbol Symbol to use for branch nodes that can be expanded to indicate this to the user. Defaults to '+'. Set to null to hide Declaration public Rune? ExpandableSymbol { get; set; } Property Value Type Description System.Nullable < System.Rune > | Improve this Doc View Source InvertExpandSymbolColors Invert console colours used to render the expand symbol Declaration public bool InvertExpandSymbolColors { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source LeaveLastRow True to leave the last row of the control free for overwritting (e.g. by a scrollbar) When True scrolling will be triggered on the second last row of the control rather than the last. Declaration public bool LeaveLastRow { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ShowBranchLines True to render vertical lines under expanded nodes to show which node belongs to which parent. False to use only whitespace Declaration public bool ShowBranchLines { get; set; } Property Value Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.TreeView.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TreeView.html", - "title": "Class TreeView", - "keywords": "Class TreeView Convenience implementation of generic TreeView for any tree were all nodes implement ITreeNode . See TreeView Deep Dive for more information . Inheritance System.Object Responder View TreeView < ITreeNode > TreeView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize ITreeView Inherited Members TreeView.TreeBuilder TreeView.Style TreeView.MultiSelect TreeView.AllowLetterBasedNavigation TreeView.SelectedObject TreeView.ObjectActivated TreeView.ObjectActivationKey TreeView.ObjectActivationButton TreeView.ColorGetter TreeView.NoBuilderError TreeView.SelectionChanged TreeView.Objects TreeView.ScrollOffsetVertical TreeView.ScrollOffsetHorizontal TreeView.ContentHeight TreeView.AspectGetter TreeView.DesiredCursorVisibility TreeView.OnEnter(View) TreeView.AddObject(ITreeNode) TreeView.ClearObjects() TreeView.Remove(ITreeNode) TreeView.AddObjects(IEnumerable) TreeView.RefreshObject(ITreeNode, Boolean) TreeView.RebuildTree() TreeView.GetChildren(ITreeNode) TreeView.GetParent(ITreeNode) TreeView.Redraw(Rect) TreeView.GetScrollOffsetOf(ITreeNode) TreeView.GetContentWidth(Boolean) TreeView.ProcessKey(KeyEvent) TreeView.ActivateSelectedObjectIfAny() TreeView.GetObjectRow(ITreeNode) TreeView.AdjustSelectionToNextItemBeginningWith(Char, StringComparison) TreeView.MovePageUp(Boolean) TreeView.MovePageDown(Boolean) TreeView.ScrollDown() TreeView.ScrollUp() TreeView.OnObjectActivated(ObjectActivatedEventArgs) TreeView.GetObjectOnRow(Int32) TreeView.MouseEvent(MouseEvent) TreeView.PositionCursor() TreeView.CursorLeft(Boolean) TreeView.GoToFirst() TreeView.GoToEnd() TreeView.GoTo(ITreeNode) TreeView.AdjustSelection(Int32, Boolean) TreeView.AdjustSelectionToBranchStart() TreeView.AdjustSelectionToBranchEnd() TreeView.EnsureVisible(ITreeNode) TreeView.Expand() TreeView.Expand(ITreeNode) TreeView.ExpandAll(ITreeNode) TreeView.ExpandAll() TreeView.CanExpand(ITreeNode) TreeView.IsExpanded(ITreeNode) TreeView.Collapse() TreeView.Collapse(ITreeNode) TreeView.CollapseAll(ITreeNode) TreeView.CollapseAll() TreeView.CollapseImpl(ITreeNode, Boolean) TreeView.InvalidateLineMap() TreeView.IsSelected(ITreeNode) TreeView.GetAllSelectedObjects() TreeView.SelectAll() TreeView.OnSelectionChanged(SelectionChangedEventArgs) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TreeView : TreeView, IDisposable, ISupportInitializeNotification, ISupportInitialize, ITreeView Constructors | Improve this Doc View Source TreeView() Creates a new instance of the tree control with absolute positioning and initialises TreeBuilder with default ITreeNode based builder Declaration public TreeView() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize ITreeView" - }, - "api/Terminal.Gui/Terminal.Gui.TreeView-1.html": { - "href": "api/Terminal.Gui/Terminal.Gui.TreeView-1.html", - "title": "Class TreeView", - "keywords": "Class TreeView Hierarchical tree view with expandable branches. Branch objects are dynamically determined when expanded using a user defined ITreeBuilder See TreeView Deep Dive for more information . Inheritance System.Object Responder View TreeView TreeView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize ITreeView Inherited Members View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View) View.Add(View[]) View.RemoveAll() View.Remove(View) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TreeView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize, ITreeView where T : class Type Parameters Name Description T Constructors | Improve this Doc View Source TreeView() Creates a new tree view with absolute positioning. Use AddObjects(IEnumerable) to set set root objects for the tree. Children will not be rendered until you set TreeBuilder Declaration public TreeView() | Improve this Doc View Source TreeView(ITreeBuilder) Initialises TreeBuilder .Creates a new tree view with absolute positioning. Use AddObjects(IEnumerable) to set set root objects for the tree. Declaration public TreeView(ITreeBuilder builder) Parameters Type Name Description ITreeBuilder builder Fields | Improve this Doc View Source NoBuilderError Error message to display when the control is not properly initialized at draw time (nodes added but no tree builder set) Declaration public static ustring NoBuilderError Field Value Type Description NStack.ustring Properties | Improve this Doc View Source AllowLetterBasedNavigation True makes a letter key press navigate to the next visible branch that begins with that letter/digit Declaration public bool AllowLetterBasedNavigation { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source AspectGetter Returns the string representation of model objects hosted in the tree. Default implementation is to call System.Object.ToString() Declaration public AspectGetterDelegate AspectGetter { get; set; } Property Value Type Description AspectGetterDelegate | Improve this Doc View Source ColorGetter Delegate for multi colored tree views. Return the ColorScheme to use for each passed object or null to use the default. Declaration public Func ColorGetter { get; set; } Property Value Type Description System.Func | Improve this Doc View Source ContentHeight The current number of rows in the tree (ignoring the controls bounds) Declaration public int ContentHeight { get; } Property Value Type Description System.Int32 | Improve this Doc View Source DesiredCursorVisibility Get / Set the wished cursor when the tree is focused Declaration public CursorVisibility DesiredCursorVisibility { get; set; } Property Value Type Description CursorVisibility | Improve this Doc View Source MultiSelect True to allow multiple objects to be selected at once Declaration public bool MultiSelect { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source ObjectActivationButton Mouse event to trigger ObjectActivated . Defaults to double click ( Button1DoubleClicked ). Set to null to disable this feature. Declaration public MouseFlags? ObjectActivationButton { get; set; } Property Value Type Description System.Nullable < MouseFlags > | Improve this Doc View Source ObjectActivationKey Key which when pressed triggers ObjectActivated . Defaults to Enter Declaration public Key ObjectActivationKey { get; set; } Property Value Type Description Key | Improve this Doc View Source Objects The root objects in the tree, note that this collection is of root objects only Declaration public IEnumerable Objects { get; } Property Value Type Description System.Collections.Generic.IEnumerable | Improve this Doc View Source ScrollOffsetHorizontal The amount of tree view that has been scrolled to the right (horizontally) Declaration public int ScrollOffsetHorizontal { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source ScrollOffsetVertical The amount of tree view that has been scrolled off the top of the screen (by the user scrolling down) Declaration public int ScrollOffsetVertical { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source SelectedObject The currently selected object in the tree. When MultiSelect is true this is the object at which the cursor is at Declaration public T SelectedObject { get; set; } Property Value Type Description T | Improve this Doc View Source Style Contains options for changing how the tree is rendered Declaration public TreeStyle Style { get; set; } Property Value Type Description TreeStyle | Improve this Doc View Source TreeBuilder Determines how sub branches of the tree are dynamically built at runtime as the user expands root nodes Declaration public ITreeBuilder TreeBuilder { get; set; } Property Value Type Description ITreeBuilder Methods | Improve this Doc View Source ActivateSelectedObjectIfAny() Triggers the ObjectActivated event with the SelectedObject . This method also ensures that the selected object is visible Declaration public void ActivateSelectedObjectIfAny() | Improve this Doc View Source AddObject(T) Adds a new root level object unless it is already a root of the tree Declaration public void AddObject(T o) Parameters Type Name Description T o | Improve this Doc View Source AddObjects(IEnumerable) Adds many new root level objects. Objects that are already root objects are ignored Declaration public void AddObjects(IEnumerable collection) Parameters Type Name Description System.Collections.Generic.IEnumerable collection Objects to add as new root level objects | Improve this Doc View Source AdjustSelection(Int32, Boolean) The number of screen lines to move the currently selected object by. Supports negative offset . Each branch occupies 1 line on screen Declaration public void AdjustSelection(int offset, bool expandSelection = false) Parameters Type Name Description System.Int32 offset Positive to move the selection down the screen, negative to move it up System.Boolean expandSelection True to expand the selection (assuming MultiSelect is enabled). False to replace | Improve this Doc View Source AdjustSelectionToBranchEnd() Moves the selection to the last child in the currently selected level Declaration public void AdjustSelectionToBranchEnd() | Improve this Doc View Source AdjustSelectionToBranchStart() Moves the selection to the first child in the currently selected level Declaration public void AdjustSelectionToBranchStart() | Improve this Doc View Source AdjustSelectionToNextItemBeginningWith(Char, StringComparison) Moves the SelectedObject to the next item that begins with character This method will loop back to the start of the tree if reaching the end without finding a match Declaration public void AdjustSelectionToNextItemBeginningWith(char character, StringComparison caseSensitivity = StringComparison.CurrentCultureIgnoreCase) Parameters Type Name Description System.Char character The first character of the next item you want selected System.StringComparison caseSensitivity Case sensitivity of the search | Improve this Doc View Source CanExpand(T) Returns true if the given object o is exposed in the tree and can be expanded otherwise false Declaration public bool CanExpand(T o) Parameters Type Name Description T o Returns Type Description System.Boolean | Improve this Doc View Source ClearObjects() Removes all objects from the tree and clears SelectedObject Declaration public void ClearObjects() | Improve this Doc View Source Collapse() Collapses the SelectedObject Declaration public void Collapse() | Improve this Doc View Source Collapse(T) Collapses the supplied object if it is currently expanded Declaration public void Collapse(T toCollapse) Parameters Type Name Description T toCollapse The object to collapse | Improve this Doc View Source CollapseAll() Collapses all root nodes in the tree Declaration public void CollapseAll() | Improve this Doc View Source CollapseAll(T) Collapses the supplied object if it is currently expanded. Also collapses all children branches (this will only become apparent when/if the user expands it again) Declaration public void CollapseAll(T toCollapse) Parameters Type Name Description T toCollapse The object to collapse | Improve this Doc View Source CollapseImpl(T, Boolean) Implementation of Collapse(T) and CollapseAll(T) . Performs operation and updates selection if disapeared Declaration protected void CollapseImpl(T toCollapse, bool all) Parameters Type Name Description T toCollapse System.Boolean all | Improve this Doc View Source CursorLeft(Boolean) Determines systems behaviour when the left arrow key is pressed. Default behaviour is to collapse the current tree node if possible otherwise changes selection to current branches parent Declaration protected virtual void CursorLeft(bool ctrl) Parameters Type Name Description System.Boolean ctrl | Improve this Doc View Source EnsureVisible(T) Adjusts the ScrollOffsetVertical to ensure the given model is visible. Has no effect if already visible Declaration public void EnsureVisible(T model) Parameters Type Name Description T model | Improve this Doc View Source Expand() Expands the currently SelectedObject Declaration public void Expand() | Improve this Doc View Source Expand(T) Expands the supplied object if it is contained in the tree (either as a root object or as an exposed branch object) Declaration public void Expand(T toExpand) Parameters Type Name Description T toExpand The object to expand | Improve this Doc View Source ExpandAll() Fully expands all nodes in the tree, if the tree is very big and built dynamically this may take a while (e.g. for file system) Declaration public void ExpandAll() | Improve this Doc View Source ExpandAll(T) Expands the supplied object and all child objects Declaration public void ExpandAll(T toExpand) Parameters Type Name Description T toExpand The object to expand | Improve this Doc View Source GetAllSelectedObjects() Returns SelectedObject (if not null) and all multi selected objects if MultiSelect is true Declaration public IEnumerable GetAllSelectedObjects() Returns Type Description System.Collections.Generic.IEnumerable | Improve this Doc View Source GetChildren(T) Returns the currently expanded children of the passed object. Returns an empty collection if the branch is not exposed or not expanded Declaration public IEnumerable GetChildren(T o) Parameters Type Name Description T o An object in the tree Returns Type Description System.Collections.Generic.IEnumerable | Improve this Doc View Source GetContentWidth(Boolean) Returns the maximum width line in the tree including prefix and expansion symbols Declaration public int GetContentWidth(bool visible) Parameters Type Name Description System.Boolean visible True to consider only rows currently visible (based on window bounds and ScrollOffsetVertical . False to calculate the width of every exposed branch in the tree Returns Type Description System.Int32 | Improve this Doc View Source GetObjectOnRow(Int32) Returns the object in the tree list that is currently visible at the provided row. Returns null if no object is at that location. If you have screen coordinates then use ScreenToView(Int32, Int32) to translate these into the client area of the TreeView . Declaration public T GetObjectOnRow(int row) Parameters Type Name Description System.Int32 row The row of the Bounds of the TreeView Returns Type Description T The object currently displayed on this row or null | Improve this Doc View Source GetObjectRow(T) Returns the Y coordinate within the Bounds of the tree at which toFind would be displayed or null if it is not currently exposed (e.g. its parent is collapsed). Note that the returned value can be negative if the TreeView is scrolled down and the toFind object is off the top of the view. Declaration public int? GetObjectRow(T toFind) Parameters Type Name Description T toFind Returns Type Description System.Nullable < System.Int32 > | Improve this Doc View Source GetParent(T) Returns the parent object of o in the tree. Returns null if the object is not exposed in the tree Declaration public T GetParent(T o) Parameters Type Name Description T o An object in the tree Returns Type Description T | Improve this Doc View Source GetScrollOffsetOf(T) Returns the index of the object o if it is currently exposed (it's parent(s) have been expanded). This can be used with ScrollOffsetVertical and SetNeedsDisplay() to scroll to a specific object Declaration public int GetScrollOffsetOf(T o) Parameters Type Name Description T o An object that appears in your tree and is currently exposed Returns Type Description System.Int32 The index the object was found at or -1 if it is not currently revealed or not in the tree at all | Improve this Doc View Source GoTo(T) Changes the SelectedObject to toSelect and scrolls to ensure it is visible. Has no effect if toSelect is not exposed in the tree (e.g. its parents are collapsed) Declaration public void GoTo(T toSelect) Parameters Type Name Description T toSelect | Improve this Doc View Source GoToEnd() Changes the SelectedObject to the last object in the tree and scrolls so that it is visible Declaration public void GoToEnd() | Improve this Doc View Source GoToFirst() Changes the SelectedObject to the first root object and resets the ScrollOffsetVertical to 0 Declaration public void GoToFirst() | Improve this Doc View Source InvalidateLineMap() Clears any cached results of Terminal.Gui.TreeView`1.BuildLineMap Declaration protected void InvalidateLineMap() | Improve this Doc View Source IsExpanded(T) Returns true if the given object o is exposed in the tree and expanded otherwise false Declaration public bool IsExpanded(T o) Parameters Type Name Description T o Returns Type Description System.Boolean | Improve this Doc View Source IsSelected(T) Returns true if the model is either the SelectedObject or part of a MultiSelect Declaration public bool IsSelected(T model) Parameters Type Name Description T model Returns Type Description System.Boolean | Improve this Doc View Source MouseEvent(MouseEvent) Declaration public override bool MouseEvent(MouseEvent me) Parameters Type Name Description MouseEvent me Returns Type Description System.Boolean Overrides Responder.MouseEvent(MouseEvent) | Improve this Doc View Source MovePageDown(Boolean) Moves the selection down by the height of the control (1 page). Declaration public void MovePageDown(bool expandSelection = false) Parameters Type Name Description System.Boolean expandSelection True if the navigation should add the covered nodes to the selected current selection Exceptions Type Condition System.NotImplementedException | Improve this Doc View Source MovePageUp(Boolean) Moves the selection up by the height of the control (1 page). Declaration public void MovePageUp(bool expandSelection = false) Parameters Type Name Description System.Boolean expandSelection True if the navigation should add the covered nodes to the selected current selection Exceptions Type Condition System.NotImplementedException | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides View.OnEnter(View) | Improve this Doc View Source OnObjectActivated(ObjectActivatedEventArgs) Raises the ObjectActivated event Declaration protected virtual void OnObjectActivated(ObjectActivatedEventArgs e) Parameters Type Name Description ObjectActivatedEventArgs e | Improve this Doc View Source OnSelectionChanged(SelectionChangedEventArgs) Raises the SelectionChanged event Declaration protected virtual void OnSelectionChanged(SelectionChangedEventArgs e) Parameters Type Name Description SelectionChangedEventArgs e | Improve this Doc View Source PositionCursor() Positions the cursor at the start of the selected objects line (if visible) Declaration public override void PositionCursor() Overrides View.PositionCursor() | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides View.ProcessKey(KeyEvent) | Improve this Doc View Source RebuildTree() Rebuilds the tree structure for all exposed objects starting with the root objects. Call this method when you know there are changes to the tree but don't know which objects have changed (otherwise use RefreshObject(T, Boolean) ) Declaration public void RebuildTree() | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides View.Redraw(Rect) | Improve this Doc View Source RefreshObject(T, Boolean) Refreshes the state of the object o in the tree. This will recompute children, string representation etc Declaration public void RefreshObject(T o, bool startAtTop = false) Parameters Type Name Description T o System.Boolean startAtTop True to also refresh all ancestors of the objects branch (starting with the root). False to refresh only the passed node | Improve this Doc View Source Remove(T) Removes the given root object from the tree Declaration public void Remove(T o) Parameters Type Name Description T o | Improve this Doc View Source ScrollDown() Scrolls the view area down a single line without changing the current selection Declaration public void ScrollDown() | Improve this Doc View Source ScrollUp() Scrolls the view area up a single line without changing the current selection Declaration public void ScrollUp() | Improve this Doc View Source SelectAll() Selects all objects in the tree when MultiSelect is enabled otherwise does nothing Declaration public void SelectAll() Events | Improve this Doc View Source ObjectActivated This event is raised when an object is activated e.g. by double clicking or pressing ObjectActivationKey Declaration public event Action> ObjectActivated Event Type Type Description System.Action < ObjectActivatedEventArgs > | Improve this Doc View Source SelectionChanged Called when the SelectedObject changes Declaration public event EventHandler> SelectionChanged Event Type Type Description System.EventHandler < SelectionChangedEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize ITreeView" - }, - "api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html": { - "href": "api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html", - "title": "Enum VerticalTextAlignment", - "keywords": "Enum VerticalTextAlignment Vertical text alignment enumeration, controls how text is displayed. Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public enum VerticalTextAlignment Fields Name Description Bottom Aligns the text to the bottom of the frame. Justified Shows the text as justified text in the frame. Middle Centers the text verticaly in the frame. Top Aligns the text to the top of the frame." - }, - "api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html", - "title": "Class View.FocusEventArgs", - "keywords": "Class View.FocusEventArgs Defines the event arguments for Terminal.Gui.View.SetFocus(Terminal.Gui.View) Inheritance System.Object System.EventArgs View.FocusEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class FocusEventArgs : EventArgs Constructors | Improve this Doc View Source FocusEventArgs(View) Constructs. Declaration public FocusEventArgs(View view) Parameters Type Name Description View view The view that gets or loses focus. Properties | Improve this Doc View Source Handled Indicates if the current focus event has already been processed and the driver should stop notifying any other event subscriber. Its important to set this value to true specially when updating any View's layout from inside the subscriber method. Declaration public bool Handled { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source View Indicates the current view that gets or loses focus. Declaration public View View { get; set; } Property Value Type Description View" - }, - "api/Terminal.Gui/Terminal.Gui.View.html": { - "href": "api/Terminal.Gui/Terminal.Gui.View.html", - "title": "Class View", - "keywords": "Class View View is the base class for all views on the screen and represents a visible element that can render itself and contains zero or more nested views. Inheritance System.Object Responder View Button CheckBox ColorPicker ComboBox FrameView GraphView HexView Label LineView ListView MenuBar PanelView ProgressBar RadioGroup ScrollBarView ScrollView StatusBar TableView TabView TextField TextValidateField TextView Toplevel TreeView Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The View defines the base functionality for user interface elements in Terminal.Gui. Views can contain one or more subviews, can respond to user input and render themselves on the screen. Views supports two layout styles: Absolute or Computed. The choice as to which layout style is used by the View is determined when the View is initialized. To create a View using Absolute layout, call a constructor that takes a Rect parameter to specify the absolute position and size (the View. Frame )/. To create a View using Computed layout use a constructor that does not take a Rect parameter and set the X, Y, Width and Height properties on the view. Both approaches use coordinates that are relative to the container they are being added to. To switch between Absolute and Computed layout, use the LayoutStyle property. Computed layout is more flexible and supports dynamic console apps where controls adjust layout as the terminal resizes or other Views change size or position. The X, Y, Width and Height properties are Dim and Pos objects that dynamically update the position of a view. The X and Y properties are of type Pos and you can use either absolute positions, percentages or anchor points. The Width and Height properties are of type Dim and can use absolute position, percentages and anchors. These are useful as they will take care of repositioning views when view's frames are resized or if the terminal size changes. Absolute layout requires specifying coordinates and sizes of Views explicitly, and the View will typically stay in a fixed position and size. To change the position and size use the Frame property. Subviews (child views) can be added to a View by calling the Add(View) method. The container of a View can be accessed with the SuperView property. To flag a region of the View's Bounds to be redrawn call SetNeedsDisplay(Rect) . To flag the entire view for redraw call SetNeedsDisplay() . Views have a ColorScheme property that defines the default colors that subviews should use for rendering. This ensures that the views fit in the context where they are being used, and allows for themes to be plugged in. For example, the default colors for windows and toplevels uses a blue background, while it uses a white background for dialog boxes and a red background for errors. Subclasses should not rely on ColorScheme being set at construction time. If a ColorScheme is not set on a view, the view will inherit the value from its SuperView and the value might only be valid once a view has been added to a SuperView. By using ColorScheme applications will work both in color as well as black and white displays. Views that are focusable should implement the PositionCursor() to make sure that the cursor is placed in a location that makes sense. Unix terminals do not have a way of hiding the cursor, so it can be distracting to have the cursor left at the last focused view. So views should make sure that they place the cursor in a visually sensible place. The LayoutSubviews() method is invoked when the size or layout of a view has changed. The default processing system will keep the size and dimensions for views that use the Absolute , and will recompute the frames for the vies that use Computed . Inherited Members Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class View : Responder, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source View() Initializes a new instance of View using Computed layout. Declaration public View() | Improve this Doc View Source View(ustring, TextDirection, Border) Initializes a new instance of View using Computed layout. Declaration public View(ustring text, TextDirection direction = TextDirection.LeftRight_TopBottom, Border border = null) Parameters Type Name Description NStack.ustring text text to initialize the Text property with. TextDirection direction The text direction. Border border The Border . | Improve this Doc View Source View(Int32, Int32, ustring) Initializes a new instance of View using Absolute layout. Declaration public View(int x, int y, ustring text) Parameters Type Name Description System.Int32 x column to locate the Label. System.Int32 y row to locate the Label. NStack.ustring text text to initialize the Text property with. | Improve this Doc View Source View(Rect) Initializes a new instance of a Absolute View class with the absolute dimensions specified in the frame parameter. Declaration public View(Rect frame) Parameters Type Name Description Rect frame The region covered by this view. | Improve this Doc View Source View(Rect, ustring, Border) Initializes a new instance of View using Absolute layout. Declaration public View(Rect rect, ustring text, Border border = null) Parameters Type Name Description Rect rect Location. NStack.ustring text text to initialize the Text property with. Border border The Border . Properties | Improve this Doc View Source AutoSize Gets or sets a flag that determines whether the View will be automatically resized to fit the Text . The default is `false`. Set to `true` to turn on AutoSize. If AutoSize is `true` the Width and Height will always be used if the text size is lower. If the text size is higher the bounds will be resized to fit it. In addition, if ForceValidatePosDim is `true` the new values of Width and Height must be of the same types of the existing one to avoid breaking the Dim settings. Declaration public virtual bool AutoSize { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Border Declaration public virtual Border Border { get; set; } Property Value Type Description Border | Improve this Doc View Source Bounds The bounds represent the View-relative rectangle used for this view; the area inside of the view. Declaration public Rect Bounds { get; set; } Property Value Type Description Rect The bounds. | Improve this Doc View Source CanFocus Declaration public override bool CanFocus { get; set; } Property Value Type Description System.Boolean Overrides Responder.CanFocus | Improve this Doc View Source ColorScheme The color scheme for this view, if it is not defined, it returns the SuperView 's color scheme. Declaration public virtual ColorScheme ColorScheme { get; set; } Property Value Type Description ColorScheme | Improve this Doc View Source Data Gets or sets arbitrary data for the view. Declaration public object Data { get; set; } Property Value Type Description System.Object | Improve this Doc View Source Driver Points to the current driver in use by the view, it is a convenience property for simplifying the development of new views. Declaration public static ConsoleDriver Driver { get; } Property Value Type Description ConsoleDriver | Improve this Doc View Source Enabled Declaration public override bool Enabled { get; set; } Property Value Type Description System.Boolean Overrides Responder.Enabled | Improve this Doc View Source Focused Returns the currently focused view inside this view, or null if nothing is focused. Declaration public View Focused { get; } Property Value Type Description View The focused. | Improve this Doc View Source ForceValidatePosDim Forces validation with Computed layout to avoid breaking the Pos and Dim settings. Declaration public bool ForceValidatePosDim { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Frame Gets or sets the frame for the view. The frame is relative to the view's container ( SuperView ). Declaration public virtual Rect Frame { get; set; } Property Value Type Description Rect The frame. | Improve this Doc View Source HasFocus Declaration public override bool HasFocus { get; } Property Value Type Description System.Boolean Overrides Responder.HasFocus | Improve this Doc View Source Height Gets or sets the height of the view. Only used the LayoutStyle is Computed . Declaration public Dim Height { get; set; } Property Value Type Description Dim The height. | Improve this Doc View Source HotKey Gets or sets the HotKey defined for this view. A user pressing HotKey on the keyboard while this view has focus will cause the Clicked event to fire. Declaration public virtual Key HotKey { get; set; } Property Value Type Description Key | Improve this Doc View Source HotKeySpecifier Gets or sets the specifier character for the hotkey (e.g. '_'). Set to '\\xffff' to disable hotkey support for this View instance. The default is '\\xffff'. Declaration public virtual Rune HotKeySpecifier { get; set; } Property Value Type Description System.Rune | Improve this Doc View Source Id Gets or sets an identifier for the view; Declaration public ustring Id { get; set; } Property Value Type Description NStack.ustring The identifier. | Improve this Doc View Source IsAdded Gets information if the view was already added to the SuperView . Declaration public bool IsAdded { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsCurrentTop Returns a value indicating if this View is currently on Top (Active) Declaration public bool IsCurrentTop { get; } Property Value Type Description System.Boolean | Improve this Doc View Source IsInitialized Get or sets if the View was already initialized. This derived from System.ComponentModel.ISupportInitializeNotification to allow notify all the views that are being initialized. Declaration public virtual bool IsInitialized { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source LayoutStyle Controls how the View's Frame is computed during the LayoutSubviews method, if the style is set to Absolute , LayoutSubviews does not change the Frame . If the style is Computed the Frame is updated using the X , Y , Width , and Height properties. Declaration public LayoutStyle LayoutStyle { get; set; } Property Value Type Description LayoutStyle The layout style. | Improve this Doc View Source MostFocused Returns the most focused view in the chain of subviews (the leaf view that has the focus). Declaration public View MostFocused { get; } Property Value Type Description View The most focused. | Improve this Doc View Source PreserveTrailingSpaces Gets or sets a flag that determines whether Text will have trailing spaces preserved or not when WordWrap(ustring, Int32, Boolean, Int32, TextDirection) is enabled. If `true` any trailing spaces will be trimmed when either the Text property is changed or when WordWrap(ustring, Int32, Boolean, Int32, TextDirection) is set to `true`. The default is `false`. Declaration public virtual bool PreserveTrailingSpaces { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Shortcut This is the global setting that can be used as a global shortcut to invoke an action if provided. Declaration public Key Shortcut { get; set; } Property Value Type Description Key | Improve this Doc View Source ShortcutAction The action to run if the Shortcut is defined. Declaration public virtual Action ShortcutAction { get; set; } Property Value Type Description System.Action | Improve this Doc View Source ShortcutTag The keystroke combination used in the Shortcut as string. Declaration public ustring ShortcutTag { get; } Property Value Type Description NStack.ustring | Improve this Doc View Source Subviews This returns a list of the subviews contained by this view. Declaration public IList Subviews { get; } Property Value Type Description System.Collections.Generic.IList < View > The subviews. | Improve this Doc View Source SuperView Returns the container for this view, or null if this view has not been added to a container. Declaration public View SuperView { get; } Property Value Type Description View The super view. | Improve this Doc View Source TabIndex Indicates the index of the current View from the TabIndexes list. Declaration public int TabIndex { get; set; } Property Value Type Description System.Int32 | Improve this Doc View Source TabIndexes This returns a tab index list of the subviews contained by this view. Declaration public IList TabIndexes { get; } Property Value Type Description System.Collections.Generic.IList < View > The tabIndexes. | Improve this Doc View Source TabStop This only be true if the CanFocus is also true and the focus can be avoided by setting this to false Declaration public bool TabStop { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source Text The text displayed by the View . Declaration public virtual ustring Text { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source TextAlignment Gets or sets how the View's Text is aligned horizontally when drawn. Changing this property will redisplay the View . Declaration public virtual TextAlignment TextAlignment { get; set; } Property Value Type Description TextAlignment The text alignment. | Improve this Doc View Source TextDirection Gets or sets the direction of the View's Text . Changing this property will redisplay the View . Declaration public virtual TextDirection TextDirection { get; set; } Property Value Type Description TextDirection The text alignment. | Improve this Doc View Source TextFormatter Gets or sets the TextFormatter which can be handled differently by any derived class. Declaration public TextFormatter TextFormatter { get; set; } Property Value Type Description TextFormatter | Improve this Doc View Source VerticalTextAlignment Gets or sets how the View's Text is aligned verticaly when drawn. Changing this property will redisplay the View . Declaration public virtual VerticalTextAlignment VerticalTextAlignment { get; set; } Property Value Type Description VerticalTextAlignment The text alignment. | Improve this Doc View Source Visible Declaration public override bool Visible { get; set; } Property Value Type Description System.Boolean Overrides Responder.Visible | Improve this Doc View Source WantContinuousButtonPressed Gets or sets a value indicating whether this View want continuous button pressed event. Declaration public virtual bool WantContinuousButtonPressed { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source WantMousePositionReports Gets or sets a value indicating whether this View wants mouse position reports. Declaration public virtual bool WantMousePositionReports { get; set; } Property Value Type Description System.Boolean true if want mouse position reports; otherwise, false . | Improve this Doc View Source Width Gets or sets the width of the view. Only used the LayoutStyle is Computed . Declaration public Dim Width { get; set; } Property Value Type Description Dim The width. | Improve this Doc View Source X Gets or sets the X position for the view (the column). Only used the LayoutStyle is Computed . Declaration public Pos X { get; set; } Property Value Type Description Pos The X Position. | Improve this Doc View Source Y Gets or sets the Y position for the view (the row). Only used the LayoutStyle is Computed . Declaration public Pos Y { get; set; } Property Value Type Description Pos The y position (line). Methods | Improve this Doc View Source Add(View) Adds a subview (child) to this view. Declaration public virtual void Add(View view) Parameters Type Name Description View view | Improve this Doc View Source Add(View[]) Adds the specified views (children) to the view. Declaration public void Add(params View[] views) Parameters Type Name Description View [] views Array of one or more views (can be optional parameter). | Improve this Doc View Source AddCommand(Command, Func>) States that the given View supports a given command and what f to perform to make that command happen If the command already has an implementation the f will replace the old one Declaration protected void AddCommand(Command command, Func f) Parameters Type Name Description Command command The command. System.Func < System.Nullable < System.Boolean >> f The function. | Improve this Doc View Source AddKeyBinding(Key, Command[]) Adds a new key combination that will trigger the given command (if supported by the View - see GetSupportedCommands() ) If the key is already bound to a different Command it will be rebound to this one Commands are only ever applied to the current View (i.e. this feature cannot be used to switch focus to another view and perform multiple commands there) Declaration public void AddKeyBinding(Key key, params Command[] command) Parameters Type Name Description Key key Command [] command The command(s) to run on the View when key is pressed. When specifying multiple, all commands will be applied in sequence. The bound key strike will be consumed if any took effect. | Improve this Doc View Source AddRune(Int32, Int32, Rune) Displays the specified character in the specified column and row of the View. Declaration public void AddRune(int col, int row, Rune ch) Parameters Type Name Description System.Int32 col Column (view-relative). System.Int32 row Row (view-relative). System.Rune ch Ch. | Improve this Doc View Source BeginInit() This derived from System.ComponentModel.ISupportInitializeNotification to allow notify all the views that are beginning initialized. Declaration public void BeginInit() | Improve this Doc View Source BringSubviewForward(View) Moves the subview backwards in the hierarchy, only one step Declaration public void BringSubviewForward(View subview) Parameters Type Name Description View subview The subview to send backwards | Improve this Doc View Source BringSubviewToFront(View) Brings the specified subview to the front so it is drawn on top of any other views. Declaration public void BringSubviewToFront(View subview) Parameters Type Name Description View subview The subview to send to the front | Improve this Doc View Source Clear() Clears the view region with the current color. Declaration public void Clear() | Improve this Doc View Source Clear(Rect) Clears the specified region with the current color. Declaration public void Clear(Rect regionScreen) Parameters Type Name Description Rect regionScreen The screen-relative region to clear. | Improve this Doc View Source ClearKeybinding(Command[]) Removes all key bindings that trigger the given command. Views can have multiple different keys bound to the same command and this method will clear all of them. Declaration public void ClearKeybinding(params Command[] command) Parameters Type Name Description Command [] command | Improve this Doc View Source ClearKeybinding(Key) Clears the existing keybinding (if any) for the given key Declaration public void ClearKeybinding(Key key) Parameters Type Name Description Key key | Improve this Doc View Source ClearKeybindings() Removes all bound keys from the View making including the default key combinations such as cursor navigation, scrolling etc Declaration public void ClearKeybindings() | Improve this Doc View Source ClearLayoutNeeded() Removes the Terminal.Gui.View.SetNeedsLayout setting on this view. Declaration protected void ClearLayoutNeeded() | Improve this Doc View Source ClearNeedsDisplay() Removes the SetNeedsDisplay() and the Terminal.Gui.View.ChildNeedsDisplay setting on this view. Declaration protected void ClearNeedsDisplay() | Improve this Doc View Source ClipToBounds() Sets the ConsoleDriver 's clip region to the current View's Bounds . Declaration public Rect ClipToBounds() Returns Type Description Rect The existing driver's clip region, which can be then re-applied by setting Driver .Clip ( Clip ). | Improve this Doc View Source ContainsKeyBinding(Key) Checks if key combination already exist. Declaration public bool ContainsKeyBinding(Key key) Parameters Type Name Description Key key The key to check. Returns Type Description System.Boolean true If the key already exist, false otherwise. | Improve this Doc View Source Dispose(Boolean) Declaration protected override void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing Overrides Responder.Dispose(Boolean) | Improve this Doc View Source DrawFrame(Rect, Int32, Boolean) Draws a frame in the current view, clipped by the boundary of this view Declaration public void DrawFrame(Rect region, int padding = 0, bool fill = false) Parameters Type Name Description Rect region View-relative region for the frame to be drawn. System.Int32 padding The padding to add around the outside of the drawn frame. System.Boolean fill If set to true it fill will the contents. | Improve this Doc View Source DrawHotString(ustring, Boolean, ColorScheme) Utility function to draw strings that contains a hotkey using a ColorScheme and the \"focused\" state. Declaration public void DrawHotString(ustring text, bool focused, ColorScheme scheme) Parameters Type Name Description NStack.ustring text String to display, the underscore before a letter flags the next letter as the hotkey. System.Boolean focused If set to true this uses the focused colors from the color scheme, otherwise the regular ones. ColorScheme scheme The color scheme to use. | Improve this Doc View Source DrawHotString(ustring, Attribute, Attribute) Utility function to draw strings that contain a hotkey. Declaration public void DrawHotString(ustring text, Attribute hotColor, Attribute normalColor) Parameters Type Name Description NStack.ustring text String to display, the hotkey specifier before a letter flags the next letter as the hotkey. Attribute hotColor Hot color. Attribute normalColor Normal color. | Improve this Doc View Source EndInit() This derived from System.ComponentModel.ISupportInitializeNotification to allow notify all the views that are ending initialized. Declaration public void EndInit() | Improve this Doc View Source EnsureFocus() Finds the first view in the hierarchy that wants to get the focus if nothing is currently focused, otherwise, it does nothing. Declaration public void EnsureFocus() | Improve this Doc View Source FocusFirst() Focuses the first focusable subview if one exists. Declaration public void FocusFirst() | Improve this Doc View Source FocusLast() Focuses the last focusable subview if one exists. Declaration public void FocusLast() | Improve this Doc View Source FocusNext() Focuses the next view. Declaration public bool FocusNext() Returns Type Description System.Boolean true , if next was focused, false otherwise. | Improve this Doc View Source FocusPrev() Focuses the previous view. Declaration public bool FocusPrev() Returns Type Description System.Boolean true , if previous was focused, false otherwise. | Improve this Doc View Source GetAutoSize() Gets the size to fit all text if AutoSize is true. Declaration public Size GetAutoSize() Returns Type Description Size The Size | Improve this Doc View Source GetBoundsTextFormatterSize() Gets the text formatter size from a Bounds size. Declaration public Size GetBoundsTextFormatterSize() Returns Type Description Size The text formatter size more the HotKeySpecifier length. | Improve this Doc View Source GetCurrentHeight(out Int32) Calculate the height based on the Height settings. Declaration public bool GetCurrentHeight(out int currentHeight) Parameters Type Name Description System.Int32 currentHeight The real current height. Returns Type Description System.Boolean true if the height can be directly assigned, false otherwise. | Improve this Doc View Source GetCurrentWidth(out Int32) Gets the current width based on the Width settings. Declaration public bool GetCurrentWidth(out int currentWidth) Parameters Type Name Description System.Int32 currentWidth The real current width. Returns Type Description System.Boolean true if the width can be directly assigned, false otherwise. | Improve this Doc View Source GetHotKeySpecifierLength(Boolean) Get the width or height of the HotKeySpecifier length. Declaration public int GetHotKeySpecifierLength(bool isWidth = true) Parameters Type Name Description System.Boolean isWidth true if is the width (default) false if is the height. Returns Type Description System.Int32 The length of the HotKeySpecifier . | Improve this Doc View Source GetKeyFromCommand(Command[]) Gets the key used by a command. Declaration public Key GetKeyFromCommand(params Command[] command) Parameters Type Name Description Command [] command The command to search. Returns Type Description Key The Key used by a Command | Improve this Doc View Source GetMinWidthHeight(out Size) Verifies if the minimum width or height can be sets in the view. Declaration public bool GetMinWidthHeight(out Size size) Parameters Type Name Description Size size The size. Returns Type Description System.Boolean true if the size can be set, false otherwise. | Improve this Doc View Source GetNormalColor() Determines the current ColorScheme based on the Enabled value. Declaration public virtual Attribute GetNormalColor() Returns Type Description Attribute Normal if Enabled is true or Disabled if Enabled is false . If it's overridden can return other values. | Improve this Doc View Source GetSupportedCommands() Returns all commands that are supported by this View Declaration public IEnumerable GetSupportedCommands() Returns Type Description System.Collections.Generic.IEnumerable < Command > | Improve this Doc View Source GetTextFormatterBoundsSize() Gets the bounds size from a Size . Declaration public Size GetTextFormatterBoundsSize() Returns Type Description Size The bounds size minus the HotKeySpecifier length. | Improve this Doc View Source GetTopSuperView() Get the top superview of a given View . Declaration public View GetTopSuperView() Returns Type Description View The superview view. | Improve this Doc View Source InvokeKeybindings(KeyEvent) Invokes any binding that is registered on this View and matches the keyEvent Declaration protected bool? InvokeKeybindings(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent The key event passed. Returns Type Description System.Nullable < System.Boolean > | Improve this Doc View Source LayoutSubviews() Invoked when a view starts executing or when the dimensions of the view have changed, for example in response to the container view or terminal resizing. Declaration public virtual void LayoutSubviews() | Improve this Doc View Source Move(Int32, Int32, Boolean) This moves the cursor to the specified column and row in the view. Declaration public void Move(int col, int row, bool clipped = true) Parameters Type Name Description System.Int32 col Col. System.Int32 row Row. System.Boolean clipped Whether to clip the result of the ViewToScreen method, if set to true , the col, row values are clamped to the screen (terminal) dimensions (0..TerminalDim-1). | Improve this Doc View Source OnAdded(View) Method invoked when a subview is being added to this view. Declaration public virtual void OnAdded(View view) Parameters Type Name Description View view The subview being added. | Improve this Doc View Source OnCanFocusChanged() Declaration public override void OnCanFocusChanged() Overrides Responder.OnCanFocusChanged() | Improve this Doc View Source OnDrawContent(Rect) Enables overrides to draw infinitely scrolled content and/or a background behind added controls. Declaration public virtual void OnDrawContent(Rect viewport) Parameters Type Name Description Rect viewport The view-relative rectangle describing the currently visible viewport into the View | Improve this Doc View Source OnDrawContentComplete(Rect) Enables overrides after completed drawing infinitely scrolled content and/or a background behind removed controls. Declaration public virtual void OnDrawContentComplete(Rect viewport) Parameters Type Name Description Rect viewport The view-relative rectangle describing the currently visible viewport into the View | Improve this Doc View Source OnEnabledChanged() Declaration public override void OnEnabledChanged() Overrides Responder.OnEnabledChanged() | Improve this Doc View Source OnEnter(View) Declaration public override bool OnEnter(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides Responder.OnEnter(View) | Improve this Doc View Source OnKeyDown(KeyEvent) Declaration public override bool OnKeyDown(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides Responder.OnKeyDown(KeyEvent) | Improve this Doc View Source OnKeyUp(KeyEvent) Declaration public override bool OnKeyUp(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides Responder.OnKeyUp(KeyEvent) | Improve this Doc View Source OnLeave(View) Declaration public override bool OnLeave(View view) Parameters Type Name Description View view Returns Type Description System.Boolean Overrides Responder.OnLeave(View) | Improve this Doc View Source OnMouseClick(View.MouseEventArgs) Invokes the MouseClick event. Declaration protected bool OnMouseClick(View.MouseEventArgs args) Parameters Type Name Description View.MouseEventArgs args Returns Type Description System.Boolean | Improve this Doc View Source OnMouseEnter(MouseEvent) Declaration public override bool OnMouseEnter(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean Overrides Responder.OnMouseEnter(MouseEvent) | Improve this Doc View Source OnMouseEvent(MouseEvent) Method invoked when a mouse event is generated Declaration public virtual bool OnMouseEvent(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean true , if the event was handled, false otherwise. | Improve this Doc View Source OnMouseLeave(MouseEvent) Declaration public override bool OnMouseLeave(MouseEvent mouseEvent) Parameters Type Name Description MouseEvent mouseEvent Returns Type Description System.Boolean Overrides Responder.OnMouseLeave(MouseEvent) | Improve this Doc View Source OnRemoved(View) Method invoked when a subview is being removed from this view. Declaration public virtual void OnRemoved(View view) Parameters Type Name Description View view The subview being removed. | Improve this Doc View Source OnVisibleChanged() Declaration public override void OnVisibleChanged() Overrides Responder.OnVisibleChanged() | Improve this Doc View Source PositionCursor() Positions the cursor in the right position based on the currently focused view in the chain. Declaration public virtual void PositionCursor() | Improve this Doc View Source ProcessColdKey(KeyEvent) Declaration public override bool ProcessColdKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides Responder.ProcessColdKey(KeyEvent) | Improve this Doc View Source ProcessHotKey(KeyEvent) Declaration public override bool ProcessHotKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides Responder.ProcessHotKey(KeyEvent) | Improve this Doc View Source ProcessKey(KeyEvent) Declaration public override bool ProcessKey(KeyEvent keyEvent) Parameters Type Name Description KeyEvent keyEvent Returns Type Description System.Boolean Overrides Responder.ProcessKey(KeyEvent) | Improve this Doc View Source ProcessResizeView() Can be overridden if the view resize behavior is different than the default. Declaration protected virtual void ProcessResizeView() | Improve this Doc View Source Redraw(Rect) Redraws this view and its subviews; only redraws the views that have been flagged for a re-display. Declaration public virtual void Redraw(Rect bounds) Parameters Type Name Description Rect bounds The bounds (view-relative region) to redraw. | Improve this Doc View Source Remove(View) Removes a subview added via Add(View) or Add(View[]) from this View. Declaration public virtual void Remove(View view) Parameters Type Name Description View view | Improve this Doc View Source RemoveAll() Removes all subviews (children) added via Add(View) or Add(View[]) from this View. Declaration public virtual void RemoveAll() | Improve this Doc View Source ReplaceKeyBinding(Key, Key) Replaces a key combination already bound to Command . Declaration protected void ReplaceKeyBinding(Key fromKey, Key toKey) Parameters Type Name Description Key fromKey The key to be replaced. Key toKey The new key to be used. | Improve this Doc View Source ScreenToView(Int32, Int32) Converts a point from screen-relative coordinates to view-relative coordinates. Declaration public Point ScreenToView(int x, int y) Parameters Type Name Description System.Int32 x X screen-coordinate point. System.Int32 y Y screen-coordinate point. Returns Type Description Point The mapped point. | Improve this Doc View Source SendSubviewBackwards(View) Moves the subview backwards in the hierarchy, only one step Declaration public void SendSubviewBackwards(View subview) Parameters Type Name Description View subview The subview to send backwards | Improve this Doc View Source SendSubviewToBack(View) Sends the specified subview to the front so it is the first view drawn Declaration public void SendSubviewToBack(View subview) Parameters Type Name Description View subview The subview to send to the front | Improve this Doc View Source SetChildNeedsDisplay() Indicates that any child views (in the Subviews list) need to be repainted. Declaration public void SetChildNeedsDisplay() | Improve this Doc View Source SetClip(Rect) Sets the clip region to the specified view-relative region. Declaration public Rect SetClip(Rect region) Parameters Type Name Description Rect region View-relative clip region. Returns Type Description Rect The previous screen-relative clip region. | Improve this Doc View Source SetFocus() Causes the specified view and the entire parent hierarchy to have the focused order updated. Declaration public void SetFocus() | Improve this Doc View Source SetHeight(Int32, out Int32) Calculate the height based on the Height settings. Declaration public bool SetHeight(int desiredHeight, out int resultHeight) Parameters Type Name Description System.Int32 desiredHeight The desired height. System.Int32 resultHeight The real result height. Returns Type Description System.Boolean true if the height can be directly assigned, false otherwise. | Improve this Doc View Source SetMinWidthHeight() Sets the minimum width or height if the view can be resized. Declaration public bool SetMinWidthHeight() Returns Type Description System.Boolean true if the size can be set, false otherwise. | Improve this Doc View Source SetNeedsDisplay() Sets a flag indicating this view needs to be redisplayed because its state has changed. Declaration public void SetNeedsDisplay() | Improve this Doc View Source SetNeedsDisplay(Rect) Flags the view-relative region on this View as needing to be repainted. Declaration public void SetNeedsDisplay(Rect region) Parameters Type Name Description Rect region The view-relative region that must be flagged for repaint. | Improve this Doc View Source SetWidth(Int32, out Int32) Calculate the width based on the Width settings. Declaration public bool SetWidth(int desiredWidth, out int resultWidth) Parameters Type Name Description System.Int32 desiredWidth The desired width. System.Int32 resultWidth The real result width. Returns Type Description System.Boolean true if the width can be directly assigned, false otherwise. | Improve this Doc View Source ToString() Pretty prints the View Declaration public override string ToString() Returns Type Description System.String Overrides System.Object.ToString() | Improve this Doc View Source UpdateTextFormatterText() Can be overridden if the Text has different format than the default. Declaration protected virtual void UpdateTextFormatterText() Events | Improve this Doc View Source Added Event fired when a subview is being added to this view. Declaration public event Action Added Event Type Type Description System.Action < View > | Improve this Doc View Source CanFocusChanged Event fired when the CanFocus value is being changed. Declaration public event Action CanFocusChanged Event Type Type Description System.Action | Improve this Doc View Source DrawContent Event invoked when the content area of the View is to be drawn. Declaration public event Action DrawContent Event Type Type Description System.Action < Rect > | Improve this Doc View Source DrawContentComplete Event invoked when the content area of the View is completed drawing. Declaration public event Action DrawContentComplete Event Type Type Description System.Action < Rect > | Improve this Doc View Source EnabledChanged Event fired when the Enabled value is being changed. Declaration public event Action EnabledChanged Event Type Type Description System.Action | Improve this Doc View Source Enter Event fired when the view gets focus. Declaration public event Action Enter Event Type Type Description System.Action < View.FocusEventArgs > | Improve this Doc View Source HotKeyChanged Event invoked when the HotKey is changed. Declaration public event Action HotKeyChanged Event Type Type Description System.Action < Key > | Improve this Doc View Source Initialized Event called only once when the View is being initialized for the first time. Allows configurations and assignments to be performed before the View being shown. This derived from System.ComponentModel.ISupportInitializeNotification to allow notify all the views that are being initialized. Declaration public event EventHandler Initialized Event Type Type Description System.EventHandler | Improve this Doc View Source KeyDown Invoked when a key is pressed Declaration public event Action KeyDown Event Type Type Description System.Action < View.KeyEventEventArgs > | Improve this Doc View Source KeyPress Invoked when a character key is pressed and occurs after the key up event. Declaration public event Action KeyPress Event Type Type Description System.Action < View.KeyEventEventArgs > | Improve this Doc View Source KeyUp Invoked when a key is released Declaration public event Action KeyUp Event Type Type Description System.Action < View.KeyEventEventArgs > | Improve this Doc View Source LayoutComplete Fired after the Views's LayoutSubviews() method has completed. Declaration public event Action LayoutComplete Event Type Type Description System.Action < View.LayoutEventArgs > | Improve this Doc View Source LayoutStarted Fired after the Views's LayoutSubviews() method has completed. Declaration public event Action LayoutStarted Event Type Type Description System.Action < View.LayoutEventArgs > | Improve this Doc View Source Leave Event fired when the view looses focus. Declaration public event Action Leave Event Type Type Description System.Action < View.FocusEventArgs > | Improve this Doc View Source MouseClick Event fired when a mouse event is generated. Declaration public event Action MouseClick Event Type Type Description System.Action < View.MouseEventArgs > | Improve this Doc View Source MouseEnter Event fired when the view receives the mouse event for the first time. Declaration public event Action MouseEnter Event Type Type Description System.Action < View.MouseEventArgs > | Improve this Doc View Source MouseLeave Event fired when the view receives a mouse event for the last time. Declaration public event Action MouseLeave Event Type Type Description System.Action < View.MouseEventArgs > | Improve this Doc View Source Removed Event fired when a subview is being removed from this view. Declaration public event Action Removed Event Type Type Description System.Action < View > | Improve this Doc View Source VisibleChanged Event fired when the Visible value is being changed. Declaration public event Action VisibleChanged Event Type Type Description System.Action Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html", - "title": "Class View.KeyEventEventArgs", - "keywords": "Class View.KeyEventEventArgs Defines the event arguments for KeyEvent Inheritance System.Object System.EventArgs View.KeyEventEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class KeyEventEventArgs : EventArgs Constructors | Improve this Doc View Source KeyEventEventArgs(KeyEvent) Constructs. Declaration public KeyEventEventArgs(KeyEvent ke) Parameters Type Name Description KeyEvent ke Properties | Improve this Doc View Source Handled Indicates if the current Key event has already been processed and the driver should stop notifying any other event subscriber. Its important to set this value to true specially when updating any View's layout from inside the subscriber method. Declaration public bool Handled { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source KeyEvent The KeyEvent for the event. Declaration public KeyEvent KeyEvent { get; set; } Property Value Type Description KeyEvent" - }, - "api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html", - "title": "Class View.LayoutEventArgs", - "keywords": "Class View.LayoutEventArgs Event arguments for the LayoutComplete event. Inheritance System.Object System.EventArgs View.LayoutEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class LayoutEventArgs : EventArgs Properties | Improve this Doc View Source OldBounds The view-relative bounds of the View before it was laid out. Declaration public Rect OldBounds { get; set; } Property Value Type Description Rect" - }, - "api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html", - "title": "Class View.MouseEventArgs", - "keywords": "Class View.MouseEventArgs Specifies the event arguments for MouseEvent Inheritance System.Object System.EventArgs View.MouseEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class MouseEventArgs : EventArgs Constructors | Improve this Doc View Source MouseEventArgs(MouseEvent) Constructs. Declaration public MouseEventArgs(MouseEvent me) Parameters Type Name Description MouseEvent me Properties | Improve this Doc View Source Handled Indicates if the current mouse event has already been processed and the driver should stop notifying any other event subscriber. Its important to set this value to true specially when updating any View's layout from inside the subscriber method. Declaration public bool Handled { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source MouseEvent The MouseEvent for the event. Declaration public MouseEvent MouseEvent { get; set; } Property Value Type Description MouseEvent" - }, - "api/Terminal.Gui/Terminal.Gui.Window.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Window.html", - "title": "Class Window", - "keywords": "Class Window A Toplevel View that draws a border around its Frame with a Title at the top. Inheritance System.Object Responder View Toplevel Window Dialog Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The 'client area' of a Window is a rectangle deflated by one or more rows/columns from Bounds . A this time there is no API to determine this rectangle. Inherited Members Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessKey(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Window : Toplevel, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source Window() Initializes a new instance of the Window class using Computed positioning. Declaration public Window() | Improve this Doc View Source Window(ustring) Initializes a new instance of the Window class with an optional title using Computed positioning. Declaration public Window(ustring title = null) Parameters Type Name Description NStack.ustring title Title. | Improve this Doc View Source Window(ustring, Int32, Border) Initializes a new instance of the Window using Computed positioning, and an optional title. Declaration public Window(ustring title = null, int padding = 0, Border border = null) Parameters Type Name Description NStack.ustring title Title. System.Int32 padding Number of characters to use for padding of the drawn frame. Border border The Border . | Improve this Doc View Source Window(Rect, ustring) Initializes a new instance of the Window class with an optional title using Absolute positioning. Declaration public Window(Rect frame, ustring title = null) Parameters Type Name Description Rect frame Superview-relative rectangle specifying the location and size NStack.ustring title Title | Improve this Doc View Source Window(Rect, ustring, Int32, Border) Initializes a new instance of the Window using Absolute positioning with the specified frame for its location, with the specified frame padding, and an optional title. Declaration public Window(Rect frame, ustring title = null, int padding = 0, Border border = null) Parameters Type Name Description Rect frame Superview-relative rectangle specifying the location and size NStack.ustring title Title System.Int32 padding Number of characters to use for padding of the drawn frame. Border border The Border . Properties | Improve this Doc View Source Border Declaration public override Border Border { get; set; } Property Value Type Description Border Overrides View.Border | Improve this Doc View Source Text The text displayed by the Label . Declaration public override ustring Text { get; set; } Property Value Type Description NStack.ustring Overrides View.Text | Improve this Doc View Source TextAlignment Controls the text-alignment property of the label, changing it will redisplay the Label . Declaration public override TextAlignment TextAlignment { get; set; } Property Value Type Description TextAlignment The text alignment. Overrides View.TextAlignment | Improve this Doc View Source Title The title to be displayed for this window. Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring The title Methods | Improve this Doc View Source Add(View) Declaration public override void Add(View view) Parameters Type Name Description View view Overrides Toplevel.Add(View) | Improve this Doc View Source OnCanFocusChanged() Declaration public override void OnCanFocusChanged() Overrides View.OnCanFocusChanged() | Improve this Doc View Source OnTitleChanged(ustring, ustring) Called when the Title has been changed. Invokes the TitleChanged event. Declaration public virtual void OnTitleChanged(ustring oldTitle, ustring newTitle) Parameters Type Name Description NStack.ustring oldTitle The Title that is/has been replaced. NStack.ustring newTitle The new Title to be replaced. | Improve this Doc View Source OnTitleChanging(ustring, ustring) Called before the Title changes. Invokes the TitleChanging event, which can be cancelled. Declaration public virtual bool OnTitleChanging(ustring oldTitle, ustring newTitle) Parameters Type Name Description NStack.ustring oldTitle The Title that is/has been replaced. NStack.ustring newTitle The new Title to be replaced. Returns Type Description System.Boolean `true` if an event handler cancelled the Title change. | Improve this Doc View Source Redraw(Rect) Declaration public override void Redraw(Rect bounds) Parameters Type Name Description Rect bounds Overrides Toplevel.Redraw(Rect) | Improve this Doc View Source Remove(View) Declaration public override void Remove(View view) Parameters Type Name Description View view Overrides Toplevel.Remove(View) | Improve this Doc View Source RemoveAll() Declaration public override void RemoveAll() Overrides Toplevel.RemoveAll() Events | Improve this Doc View Source TitleChanged Event fired after the Title has been changed. Declaration public event Action TitleChanged Event Type Type Description System.Action < Window.TitleEventArgs > | Improve this Doc View Source TitleChanging Event fired when the Title is changing. Set Cancel to `true` to cancel the Title change. Declaration public event Action TitleChanging Event Type Type Description System.Action < Window.TitleEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html", - "title": "Class Window.TitleEventArgs", - "keywords": "Class Window.TitleEventArgs An System.EventArgs which allows passing a cancelable new Title value event. Inheritance System.Object System.EventArgs Window.TitleEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TitleEventArgs : EventArgs Constructors | Improve this Doc View Source TitleEventArgs(ustring, ustring) Initializes a new instance of Window.TitleEventArgs Declaration public TitleEventArgs(ustring oldTitle, ustring newTitle) Parameters Type Name Description NStack.ustring oldTitle The Title that is/has been replaced. NStack.ustring newTitle The new Title to be replaced. Properties | Improve this Doc View Source Cancel Flag which allows cancelling the Title change. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source NewTitle The new Window Title. Declaration public ustring NewTitle { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source OldTitle The old Window Title. Declaration public ustring OldTitle { get; set; } Property Value Type Description NStack.ustring" - }, - "api/Terminal.Gui/Terminal.Gui.Wizard.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Wizard.html", - "title": "Class Wizard", - "keywords": "Class Wizard Provides navigation and a user interface (UI) to collect related data across multiple steps. Each step ( Wizard.WizardStep ) can host arbitrary View s, much like a Dialog . Each step also has a pane for help text. Along the bottom of the Wizard view are customizable buttons enabling the user to navigate forward and backward through the Wizard. Inheritance System.Object Responder View Toplevel Window Dialog Wizard Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks The Wizard can be displayed either as a modal (pop-up) Window (like Dialog ) or as an embedded View . By default, Modal is true . In this case launch the Wizard with Application.Run(wizard) . See Modal for more details. Examples using Terminal.Gui; using NStack; Application.Init(); var wizard = new Wizard ($\"Setup Wizard\"); // Add 1st step var firstStep = new Wizard.WizardStep (\"End User License Agreement\"); wizard.AddStep(firstStep); firstStep.NextButtonText = \"Accept!\"; firstStep.HelpText = \"This is the End User License Agreement.\"; // Add 2nd step var secondStep = new Wizard.WizardStep (\"Second Step\"); wizard.AddStep(secondStep); secondStep.HelpText = \"This is the help text for the Second Step.\"; var lbl = new Label (\"Name:\") { AutoSize = true }; secondStep.Add(lbl); var name = new TextField () { X = Pos.Right (lbl) + 1, Width = Dim.Fill () - 1 }; secondStep.Add(name); wizard.Finished += (args) => { MessageBox.Query(\"Wizard\", $\"Finished. The Name entered is '{name.Text}'\", \"Ok\"); Application.RequestStop(); }; Application.Top.Add (wizard); Application.Run (); Application.Shutdown (); Inherited Members Dialog.AddButton(Button) Dialog.ButtonAlignment Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class Wizard : Dialog, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source Wizard() Initializes a new instance of the Wizard class using Computed positioning. Declaration public Wizard() | Improve this Doc View Source Wizard(ustring) Initializes a new instance of the Wizard class using Computed positioning. Declaration public Wizard(ustring title) Parameters Type Name Description NStack.ustring title Sets the Title for the Wizard. Properties | Improve this Doc View Source BackButton If the CurrentStep is not the first step in the wizard, this button causes the MovingBack event to be fired and the wizard moves to the previous step. Declaration public Button BackButton { get; } Property Value Type Description Button | Improve this Doc View Source CurrentStep Gets or sets the currently active Wizard.WizardStep . Declaration public Wizard.WizardStep CurrentStep { get; set; } Property Value Type Description Wizard.WizardStep | Improve this Doc View Source Modal Determines whether the Wizard is displayed as modal pop-up or not. The default is true . The Wizard will be shown with a frame with Title and will behave like any Toplevel window. If set to false the Wizard will have no frame and will behave like any embedded View . To use Wizard as an embedded View Set Modal to false . Add the Wizard to a containing view with Add(View) . If a non-Modal Wizard is added to the application after Run(Func) has been called the first step must be explicitly set by setting CurrentStep to GetNextStep() : wizard.CurrentStep = wizard.GetNextStep(); Declaration public bool Modal { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source NextFinishButton If the CurrentStep is the last step in the wizard, this button causes the Finished event to be fired and the wizard to close. If the step is not the last step, the MovingNext event will be fired and the wizard will move next step. Declaration public Button NextFinishButton { get; } Property Value Type Description Button | Improve this Doc View Source Title The title of the Wizard, shown at the top of the Wizard with \" - currentStep.Title\" appended. Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source AddStep(Wizard.WizardStep) Adds a step to the wizard. The Next and Back buttons navigate through the added steps in the order they were added. Declaration public void AddStep(Wizard.WizardStep newStep) Parameters Type Name Description Wizard.WizardStep newStep | Improve this Doc View Source GetFirstStep() Returns the first enabled step in the Wizard Declaration public Wizard.WizardStep GetFirstStep() Returns Type Description Wizard.WizardStep The last enabled step | Improve this Doc View Source GetLastStep() Returns the last enabled step in the Wizard Declaration public Wizard.WizardStep GetLastStep() Returns Type Description Wizard.WizardStep The last enabled step | Improve this Doc View Source GetNextStep() Returns the next enabled Wizard.WizardStep after the current step. Takes into account steps which are disabled. If CurrentStep is null returns the first enabled step. Declaration public Wizard.WizardStep GetNextStep() Returns Type Description Wizard.WizardStep The next step after the current step, if there is one; otherwise returns null , which indicates either there are no enabled steps or the current step is the last enabled step. | Improve this Doc View Source GetPreviousStep() Returns the first enabled Wizard.WizardStep before the current step. Takes into account steps which are disabled. If CurrentStep is null returns the last enabled step. Declaration public Wizard.WizardStep GetPreviousStep() Returns Type Description Wizard.WizardStep The first step ahead of the current step, if there is one; otherwise returns null , which indicates either there are no enabled steps or the current step is the first enabled step. | Improve this Doc View Source GoBack() Causes the wizad to move to the previous enabled step (or first step if CurrentStep is not set). If there is no previous step, does nothing. Declaration public void GoBack() | Improve this Doc View Source GoNext() Causes the wizad to move to the next enabled step (or last step if CurrentStep is not set). If there is no previous step, does nothing. Declaration public void GoNext() | Improve this Doc View Source GoToStep(Wizard.WizardStep) Changes to the specified Wizard.WizardStep . Declaration public bool GoToStep(Wizard.WizardStep newStep) Parameters Type Name Description Wizard.WizardStep newStep The step to go to. Returns Type Description System.Boolean True if the transition to the step succeeded. False if the step was not found or the operation was cancelled. | Improve this Doc View Source OnStepChanged(Wizard.WizardStep, Wizard.WizardStep) Called when the Wizard has completed transition to a new Wizard.WizardStep . Fires the StepChanged event. Declaration public virtual bool OnStepChanged(Wizard.WizardStep oldStep, Wizard.WizardStep newStep) Parameters Type Name Description Wizard.WizardStep oldStep The step the Wizard changed from Wizard.WizardStep newStep The step the Wizard has changed to Returns Type Description System.Boolean True if the change is to be cancelled. | Improve this Doc View Source OnStepChanging(Wizard.WizardStep, Wizard.WizardStep) Called when the Wizard is about to transition to another Wizard.WizardStep . Fires the StepChanging event. Declaration public virtual bool OnStepChanging(Wizard.WizardStep oldStep, Wizard.WizardStep newStep) Parameters Type Name Description Wizard.WizardStep oldStep The step the Wizard is about to change from Wizard.WizardStep newStep The step the Wizard is about to change to Returns Type Description System.Boolean True if the change is to be cancelled. | Improve this Doc View Source ProcessKey(KeyEvent) Wizard is derived from Dialog and Dialog causes Esc to call RequestStop(Toplevel) , closing the Dialog. Wizard overrides ProcessKey(KeyEvent) to instead fire the Cancelled event when Wizard is being used as a non-modal (see Modal . See ProcessKey(KeyEvent) for more. Declaration public override bool ProcessKey(KeyEvent kb) Parameters Type Name Description KeyEvent kb Returns Type Description System.Boolean Overrides Dialog.ProcessKey(KeyEvent) Events | Improve this Doc View Source Cancelled Raised when the user has cancelled the Wizard by pressin the Esc key. To prevent a modal ( Modal is true ) Wizard from closing, cancel the event by setting Cancel to true before returning from the event handler. Declaration public event Action Cancelled Event Type Type Description System.Action < Wizard.WizardButtonEventArgs > | Improve this Doc View Source Finished Raised when the Next/Finish button in the Wizard is clicked. The Next/Finish button is always the last button in the array of Buttons passed to the Wizard constructor, if any. This event is only raised if the CurrentStep is the last Step in the Wizard flow (otherwise the Finished event is raised). Declaration public event Action Finished Event Type Type Description System.Action < Wizard.WizardButtonEventArgs > | Improve this Doc View Source MovingBack Raised when the Back button in the Wizard is clicked. The Back button is always the first button in the array of Buttons passed to the Wizard constructor, if any. Declaration public event Action MovingBack Event Type Type Description System.Action < Wizard.WizardButtonEventArgs > | Improve this Doc View Source MovingNext Raised when the Next/Finish button in the Wizard is clicked (or the user presses Enter). The Next/Finish button is always the last button in the array of Buttons passed to the Wizard constructor, if any. This event is only raised if the CurrentStep is the last Step in the Wizard flow (otherwise the Finished event is raised). Declaration public event Action MovingNext Event Type Type Description System.Action < Wizard.WizardButtonEventArgs > | Improve this Doc View Source StepChanged This event is raised after the Wizard has changed the CurrentStep . Declaration public event Action StepChanged Event Type Type Description System.Action < Wizard.StepChangeEventArgs > | Improve this Doc View Source StepChanging This event is raised when the current CurrentStep ) is about to change. Use Cancel to abort the transition. Declaration public event Action StepChanging Event Type Type Description System.Action < Wizard.StepChangeEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html", - "title": "Class Wizard.StepChangeEventArgs", - "keywords": "Class Wizard.StepChangeEventArgs System.EventArgs for Wizard.WizardStep events. Inheritance System.Object System.EventArgs Wizard.StepChangeEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class StepChangeEventArgs : EventArgs Constructors | Improve this Doc View Source StepChangeEventArgs(Wizard.WizardStep, Wizard.WizardStep) Initializes a new instance of Wizard.StepChangeEventArgs Declaration public StepChangeEventArgs(Wizard.WizardStep oldStep, Wizard.WizardStep newStep) Parameters Type Name Description Wizard.WizardStep oldStep The current Wizard.WizardStep . Wizard.WizardStep newStep The new Wizard.WizardStep . Properties | Improve this Doc View Source Cancel Event handlers can set to true before returning to cancel the step transition. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source NewStep The Wizard.WizardStep the Wizard is changing to or has changed to. Declaration public Wizard.WizardStep NewStep { get; } Property Value Type Description Wizard.WizardStep | Improve this Doc View Source OldStep The current (or previous) Wizard.WizardStep . Declaration public Wizard.WizardStep OldStep { get; } Property Value Type Description Wizard.WizardStep" - }, - "api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html", - "title": "Class Wizard.WizardButtonEventArgs", - "keywords": "Class Wizard.WizardButtonEventArgs System.EventArgs for Wizard.WizardStep transition events. Inheritance System.Object System.EventArgs Wizard.WizardButtonEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class WizardButtonEventArgs : EventArgs Constructors | Improve this Doc View Source WizardButtonEventArgs() Initializes a new instance of Wizard.WizardButtonEventArgs Declaration public WizardButtonEventArgs() Properties | Improve this Doc View Source Cancel Set to true to cancel the transition to the next step. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean" - }, - "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html", - "title": "Class Wizard.WizardStep", - "keywords": "Class Wizard.WizardStep Represents a basic step that is displayed in a Wizard . The Wizard.WizardStep view is divided horizontally in two. On the left is the content view where View s can be added, On the right is the help for the step. Set HelpText to set the help text. If the help text is empty the help pane will not be shown. If there are no Views added to the WizardStep the HelpText (if not empty) will fill the wizard step. Inheritance System.Object Responder View FrameView Wizard.WizardStep Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Remarks If Button s are added, do not set IsDefault to true as this will conflict with the Next button of the Wizard. Subscribe to the VisibleChanged event to be notified when the step is active; see also: StepChanged . To enable or disable a step from being shown to the user, set Enabled . Inherited Members FrameView.Border FrameView.Redraw(Rect) FrameView.Text FrameView.TextAlignment FrameView.OnEnter(View) FrameView.OnCanFocusChanged() View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class WizardStep : FrameView, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source WizardStep(ustring) Initializes a new instance of the Wizard class using Computed positioning. Declaration public WizardStep(ustring title) Parameters Type Name Description NStack.ustring title Title for the Step. Will be appended to the containing Wizard's title as \"Wizard Title - Wizard Step Title\" when this step is active. Properties | Improve this Doc View Source BackButtonText Sets or gets the text for the back button. The back button will only be visible on steps after the first step. Declaration public ustring BackButtonText { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source HelpText Sets or gets help text for the Wizard.WizardStep .If HelpText is empty the help pane will not be visible and the content will fill the entire WizardStep. Declaration public ustring HelpText { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source NextButtonText Sets or gets the text for the next/finish button. Declaration public ustring NextButtonText { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source Title The title of the Wizard.WizardStep . Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source Add(View) Add the specified View to the Wizard.WizardStep . Declaration public override void Add(View view) Parameters Type Name Description View view View to add to this container Overrides FrameView.Add(View) | Improve this Doc View Source OnTitleChanged(ustring, ustring) Called when the Title has been changed. Invokes the TitleChanged event. Declaration public virtual void OnTitleChanged(ustring oldTitle, ustring newTitle) Parameters Type Name Description NStack.ustring oldTitle The Title that is/has been replaced. NStack.ustring newTitle The new Title to be replaced. | Improve this Doc View Source OnTitleChanging(ustring, ustring) Called before the Title changes. Invokes the TitleChanging event, which can be cancelled. Declaration public virtual bool OnTitleChanging(ustring oldTitle, ustring newTitle) Parameters Type Name Description NStack.ustring oldTitle The Title that is/has been replaced. NStack.ustring newTitle The new Title to be replaced. Returns Type Description System.Boolean true if an event handler cancelled the Title change. | Improve this Doc View Source Remove(View) Removes a View from Wizard.WizardStep . Declaration public override void Remove(View view) Parameters Type Name Description View view Overrides FrameView.Remove(View) | Improve this Doc View Source RemoveAll() Removes all View s from the Wizard.WizardStep . Declaration public override void RemoveAll() Overrides FrameView.RemoveAll() Events | Improve this Doc View Source TitleChanged Event fired after the Title has been changed. Declaration public event Action TitleChanged Event Type Type Description System.Action < Wizard.WizardStep.TitleEventArgs > | Improve this Doc View Source TitleChanging Event fired when the Title is changing. Set Cancel to true to cancel the Title change. Declaration public event Action TitleChanging Event Type Type Description System.Action < Wizard.WizardStep.TitleEventArgs > Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html": { - "href": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html", - "title": "Class Wizard.WizardStep.TitleEventArgs", - "keywords": "Class Wizard.WizardStep.TitleEventArgs An System.EventArgs which allows passing a cancelable new Title value event. Inheritance System.Object System.EventArgs Wizard.WizardStep.TitleEventArgs Inherited Members System.EventArgs.Empty System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Terminal.Gui Assembly : Terminal.Gui.dll Syntax public class TitleEventArgs : EventArgs Constructors | Improve this Doc View Source TitleEventArgs(ustring, ustring) Initializes a new instance of Wizard.WizardStep.TitleEventArgs Declaration public TitleEventArgs(ustring oldTitle, ustring newTitle) Parameters Type Name Description NStack.ustring oldTitle The Title that is/has been replaced. NStack.ustring newTitle The new Title to be replaced. Properties | Improve this Doc View Source Cancel Flag which allows cancelling the Title change. Declaration public bool Cancel { get; set; } Property Value Type Description System.Boolean | Improve this Doc View Source NewTitle The new Window Title. Declaration public ustring NewTitle { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source OldTitle The old Window Title. Declaration public ustring OldTitle { get; set; } Property Value Type Description NStack.ustring" - }, - "api/Terminal.Gui/Unix.Terminal.Curses.Event.html": { - "href": "api/Terminal.Gui/Unix.Terminal.Curses.Event.html", - "title": "Enum Curses.Event", - "keywords": "Enum Curses.Event Namespace : Unix.Terminal Assembly : Terminal.Gui.dll Syntax [Flags] public enum Event : long Fields Name Description AllEvents Button1Clicked Button1DoubleClicked Button1Pressed Button1Released Button1TripleClicked Button2Clicked Button2DoubleClicked Button2Pressed Button2Released Button2TrippleClicked Button3Clicked Button3DoubleClicked Button3Pressed Button3Released Button3TripleClicked Button4Clicked Button4DoubleClicked Button4Pressed Button4Released Button4TripleClicked ButtonAlt ButtonCtrl ButtonShift ButtonWheeledDown ButtonWheeledUp ReportMousePosition" - }, - "api/Terminal.Gui/Unix.Terminal.Curses.html": { - "href": "api/Terminal.Gui/Unix.Terminal.Curses.html", - "title": "Class Curses", - "keywords": "Class Curses Inheritance System.Object Curses Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Unix.Terminal Assembly : Terminal.Gui.dll Syntax public class Curses Fields | Improve this Doc View Source A_BLINK Declaration public const int A_BLINK = 524288 Field Value Type Description System.Int32 | Improve this Doc View Source A_BOLD Declaration public const int A_BOLD = 2097152 Field Value Type Description System.Int32 | Improve this Doc View Source A_DIM Declaration public const int A_DIM = 1048576 Field Value Type Description System.Int32 | Improve this Doc View Source A_INVIS Declaration public const int A_INVIS = 8388608 Field Value Type Description System.Int32 | Improve this Doc View Source A_NORMAL Declaration public const int A_NORMAL = 0 Field Value Type Description System.Int32 | Improve this Doc View Source A_PROTECT Declaration public const int A_PROTECT = 16777216 Field Value Type Description System.Int32 | Improve this Doc View Source A_REVERSE Declaration public const int A_REVERSE = 262144 Field Value Type Description System.Int32 | Improve this Doc View Source A_STANDOUT Declaration public const int A_STANDOUT = 65536 Field Value Type Description System.Int32 | Improve this Doc View Source A_UNDERLINE Declaration public const int A_UNDERLINE = 131072 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_BLOCK Declaration public const int ACS_BLOCK = 4194352 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_BOARD Declaration public const int ACS_BOARD = 4194408 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_BTEE Declaration public const int ACS_BTEE = 4194422 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_BULLET Declaration public const int ACS_BULLET = 4194430 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_CKBOARD Declaration public const int ACS_CKBOARD = 4194401 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_DARROW Declaration public const int ACS_DARROW = 4194350 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_DEGREE Declaration public const int ACS_DEGREE = 4194406 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_DIAMOND Declaration public const int ACS_DIAMOND = 4194400 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_HLINE Declaration public const int ACS_HLINE = 4194417 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_LANTERN Declaration public const int ACS_LANTERN = 4194409 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_LARROW Declaration public const int ACS_LARROW = 4194348 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_LLCORNER Declaration public const int ACS_LLCORNER = 4194413 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_LRCORNER Declaration public const int ACS_LRCORNER = 4194410 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_LTEE Declaration public const int ACS_LTEE = 4194420 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_PLMINUS Declaration public const int ACS_PLMINUS = 4194407 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_PLUS Declaration public const int ACS_PLUS = 4194414 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_RARROW Declaration public const int ACS_RARROW = 4194347 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_RTEE Declaration public const int ACS_RTEE = 4194421 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_S1 Declaration public const int ACS_S1 = 4194415 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_S9 Declaration public const int ACS_S9 = 4194419 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_TTEE Declaration public const int ACS_TTEE = 4194423 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_UARROW Declaration public const int ACS_UARROW = 4194349 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_ULCORNER Declaration public const int ACS_ULCORNER = 4194412 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_URCORNER Declaration public const int ACS_URCORNER = 4194411 Field Value Type Description System.Int32 | Improve this Doc View Source ACS_VLINE Declaration public const int ACS_VLINE = 4194424 Field Value Type Description System.Int32 | Improve this Doc View Source AltCtrlKeyEnd Declaration public const int AltCtrlKeyEnd = 532 Field Value Type Description System.Int32 | Improve this Doc View Source AltCtrlKeyHome Declaration public const int AltCtrlKeyHome = 537 Field Value Type Description System.Int32 | Improve this Doc View Source AltCtrlKeyNPage Declaration public const int AltCtrlKeyNPage = 552 Field Value Type Description System.Int32 | Improve this Doc View Source AltCtrlKeyPPage Declaration public const int AltCtrlKeyPPage = 557 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyDown Declaration public const int AltKeyDown = 523 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyEnd Declaration public const int AltKeyEnd = 528 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyHome Declaration public const int AltKeyHome = 533 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyLeft Declaration public const int AltKeyLeft = 543 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyNPage Declaration public const int AltKeyNPage = 548 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyPPage Declaration public const int AltKeyPPage = 553 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyRight Declaration public const int AltKeyRight = 558 Field Value Type Description System.Int32 | Improve this Doc View Source AltKeyUp Declaration public const int AltKeyUp = 564 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_BLACK Declaration public const int COLOR_BLACK = 0 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_BLUE Declaration public const int COLOR_BLUE = 4 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_CYAN Declaration public const int COLOR_CYAN = 6 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_GRAY Declaration public const int COLOR_GRAY = 8 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_GREEN Declaration public const int COLOR_GREEN = 2 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_MAGENTA Declaration public const int COLOR_MAGENTA = 5 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_RED Declaration public const int COLOR_RED = 1 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_WHITE Declaration public const int COLOR_WHITE = 7 Field Value Type Description System.Int32 | Improve this Doc View Source COLOR_YELLOW Declaration public const int COLOR_YELLOW = 3 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyDown Declaration public const int CtrlKeyDown = 525 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyEnd Declaration public const int CtrlKeyEnd = 530 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyHome Declaration public const int CtrlKeyHome = 535 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyLeft Declaration public const int CtrlKeyLeft = 545 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyNPage Declaration public const int CtrlKeyNPage = 550 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyPPage Declaration public const int CtrlKeyPPage = 555 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyRight Declaration public const int CtrlKeyRight = 560 Field Value Type Description System.Int32 | Improve this Doc View Source CtrlKeyUp Declaration public const int CtrlKeyUp = 566 Field Value Type Description System.Int32 | Improve this Doc View Source DownEnd Declaration public const int DownEnd = 0 Field Value Type Description System.Int32 | Improve this Doc View Source ERR Declaration public const int ERR = -1 Field Value Type Description System.Int32 | Improve this Doc View Source Home Declaration public const int Home = 0 Field Value Type Description System.Int32 | Improve this Doc View Source KEY_CODE_SEQ Declaration public const int KEY_CODE_SEQ = 91 Field Value Type Description System.Int32 | Improve this Doc View Source KEY_CODE_YES Declaration public const int KEY_CODE_YES = 256 Field Value Type Description System.Int32 | Improve this Doc View Source KeyAlt Declaration public const int KeyAlt = 8192 Field Value Type Description System.Int32 | Improve this Doc View Source KeyBackspace Declaration public const int KeyBackspace = 263 Field Value Type Description System.Int32 | Improve this Doc View Source KeyBackTab Declaration public const int KeyBackTab = 353 Field Value Type Description System.Int32 | Improve this Doc View Source KeyDeleteChar Declaration public const int KeyDeleteChar = 330 Field Value Type Description System.Int32 | Improve this Doc View Source KeyDown Declaration public const int KeyDown = 258 Field Value Type Description System.Int32 | Improve this Doc View Source KeyEnd Declaration public const int KeyEnd = 360 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF1 Declaration public const int KeyF1 = 265 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF10 Declaration public const int KeyF10 = 274 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF11 Declaration public const int KeyF11 = 275 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF12 Declaration public const int KeyF12 = 276 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF2 Declaration public const int KeyF2 = 266 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF3 Declaration public const int KeyF3 = 267 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF4 Declaration public const int KeyF4 = 268 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF5 Declaration public const int KeyF5 = 269 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF6 Declaration public const int KeyF6 = 270 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF7 Declaration public const int KeyF7 = 271 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF8 Declaration public const int KeyF8 = 272 Field Value Type Description System.Int32 | Improve this Doc View Source KeyF9 Declaration public const int KeyF9 = 273 Field Value Type Description System.Int32 | Improve this Doc View Source KeyHome Declaration public const int KeyHome = 262 Field Value Type Description System.Int32 | Improve this Doc View Source KeyInsertChar Declaration public const int KeyInsertChar = 331 Field Value Type Description System.Int32 | Improve this Doc View Source KeyLeft Declaration public const int KeyLeft = 260 Field Value Type Description System.Int32 | Improve this Doc View Source KeyMouse Declaration public const int KeyMouse = 409 Field Value Type Description System.Int32 | Improve this Doc View Source KeyNPage Declaration public const int KeyNPage = 338 Field Value Type Description System.Int32 | Improve this Doc View Source KeyPPage Declaration public const int KeyPPage = 339 Field Value Type Description System.Int32 | Improve this Doc View Source KeyResize Declaration public const int KeyResize = 410 Field Value Type Description System.Int32 | Improve this Doc View Source KeyRight Declaration public const int KeyRight = 261 Field Value Type Description System.Int32 | Improve this Doc View Source KeyTab Declaration public const int KeyTab = 9 Field Value Type Description System.Int32 | Improve this Doc View Source KeyUp Declaration public const int KeyUp = 259 Field Value Type Description System.Int32 | Improve this Doc View Source LeftRightUpNPagePPage Declaration public const int LeftRightUpNPagePPage = 0 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyDown Declaration public const int ShiftAltKeyDown = 524 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyEnd Declaration public const int ShiftAltKeyEnd = 529 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyHome Declaration public const int ShiftAltKeyHome = 534 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyLeft Declaration public const int ShiftAltKeyLeft = 544 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyNPage Declaration public const int ShiftAltKeyNPage = 549 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyPPage Declaration public const int ShiftAltKeyPPage = 554 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyRight Declaration public const int ShiftAltKeyRight = 559 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftAltKeyUp Declaration public const int ShiftAltKeyUp = 565 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyDown Declaration public const int ShiftCtrlKeyDown = 526 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyEnd Declaration public const int ShiftCtrlKeyEnd = 531 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyHome Declaration public const int ShiftCtrlKeyHome = 536 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyLeft Declaration public const int ShiftCtrlKeyLeft = 546 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyNPage Declaration public const int ShiftCtrlKeyNPage = 551 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyPPage Declaration public const int ShiftCtrlKeyPPage = 556 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyRight Declaration public const int ShiftCtrlKeyRight = 561 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftCtrlKeyUp Declaration public const int ShiftCtrlKeyUp = 567 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyDown Declaration public const int ShiftKeyDown = 336 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyEnd Declaration public const int ShiftKeyEnd = 386 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyHome Declaration public const int ShiftKeyHome = 391 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyLeft Declaration public const int ShiftKeyLeft = 393 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyNPage Declaration public const int ShiftKeyNPage = 396 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyPPage Declaration public const int ShiftKeyPPage = 398 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyRight Declaration public const int ShiftKeyRight = 402 Field Value Type Description System.Int32 | Improve this Doc View Source ShiftKeyUp Declaration public const int ShiftKeyUp = 337 Field Value Type Description System.Int32 | Improve this Doc View Source TIOCGWINSZ Declaration public const int TIOCGWINSZ = 21523 Field Value Type Description System.Int32 | Improve this Doc View Source TIOCGWINSZ_MAC Declaration public const int TIOCGWINSZ_MAC = 1074295912 Field Value Type Description System.Int32 Properties | Improve this Doc View Source ColorPairs Declaration public static int ColorPairs { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Cols Declaration public static int Cols { get; } Property Value Type Description System.Int32 | Improve this Doc View Source HasColors Declaration public static bool HasColors { get; } Property Value Type Description System.Boolean | Improve this Doc View Source LC_ALL Declaration public static int LC_ALL { get; } Property Value Type Description System.Int32 | Improve this Doc View Source Lines Declaration public static int Lines { get; } Property Value Type Description System.Int32 Methods | Improve this Doc View Source addch(Int32) Declaration public static int addch(int ch) Parameters Type Name Description System.Int32 ch Returns Type Description System.Int32 | Improve this Doc View Source addstr(String, Object[]) Declaration public static int addstr(string format, params object[] args) Parameters Type Name Description System.String format System.Object [] args Returns Type Description System.Int32 | Improve this Doc View Source addwstr(String) Declaration public static int addwstr(string s) Parameters Type Name Description System.String s Returns Type Description System.Int32 | Improve this Doc View Source attroff(Int32) Declaration public static int attroff(int attrs) Parameters Type Name Description System.Int32 attrs Returns Type Description System.Int32 | Improve this Doc View Source attron(Int32) Declaration public static int attron(int attrs) Parameters Type Name Description System.Int32 attrs Returns Type Description System.Int32 | Improve this Doc View Source attrset(Int32) Declaration public static int attrset(int attrs) Parameters Type Name Description System.Int32 attrs Returns Type Description System.Int32 | Improve this Doc View Source cbreak() Declaration public static int cbreak() Returns Type Description System.Int32 | Improve this Doc View Source CheckWinChange() Declaration public static bool CheckWinChange() Returns Type Description System.Boolean | Improve this Doc View Source clearok(IntPtr, Boolean) Declaration public static int clearok(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source COLOR_PAIRS() Declaration public static int COLOR_PAIRS() Returns Type Description System.Int32 | Improve this Doc View Source ColorPair(Int32) Declaration public static int ColorPair(int n) Parameters Type Name Description System.Int32 n Returns Type Description System.Int32 | Improve this Doc View Source curs_set(Int32) Declaration public static int curs_set(int visibility) Parameters Type Name Description System.Int32 visibility Returns Type Description System.Int32 | Improve this Doc View Source def_prog_mode() Declaration public static int def_prog_mode() Returns Type Description System.Int32 | Improve this Doc View Source def_shell_mode() Declaration public static int def_shell_mode() Returns Type Description System.Int32 | Improve this Doc View Source doupdate() Declaration public static int doupdate() Returns Type Description System.Int32 | Improve this Doc View Source echo() Declaration public static int echo() Returns Type Description System.Int32 | Improve this Doc View Source endwin() Declaration public static int endwin() Returns Type Description System.Int32 | Improve this Doc View Source flushinp() Declaration public static int flushinp() Returns Type Description System.Int32 | Improve this Doc View Source get_wch(out Int32) Declaration public static int get_wch(out int sequence) Parameters Type Name Description System.Int32 sequence Returns Type Description System.Int32 | Improve this Doc View Source getch() Declaration public static int getch() Returns Type Description System.Int32 | Improve this Doc View Source getmouse(out Curses.MouseEvent) Declaration public static uint getmouse(out Curses.MouseEvent ev) Parameters Type Name Description Curses.MouseEvent ev Returns Type Description System.UInt32 | Improve this Doc View Source halfdelay(Int32) Declaration public static int halfdelay(int t) Parameters Type Name Description System.Int32 t Returns Type Description System.Int32 | Improve this Doc View Source has_colors() Declaration public static bool has_colors() Returns Type Description System.Boolean | Improve this Doc View Source idcok(IntPtr, Boolean) Declaration public static void idcok(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf | Improve this Doc View Source idlok(IntPtr, Boolean) Declaration public static int idlok(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source immedok(IntPtr, Boolean) Declaration public static void immedok(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf | Improve this Doc View Source init_pair(Int16, Int16, Int16) Declaration public static int init_pair(short pair, short f, short b) Parameters Type Name Description System.Int16 pair System.Int16 f System.Int16 b Returns Type Description System.Int32 | Improve this Doc View Source InitColorPair(Int16, Int16, Int16) Declaration public static int InitColorPair(short pair, short foreground, short background) Parameters Type Name Description System.Int16 pair System.Int16 foreground System.Int16 background Returns Type Description System.Int32 | Improve this Doc View Source initscr() Declaration public static Curses.Window initscr() Returns Type Description Curses.Window | Improve this Doc View Source intrflush(IntPtr, Boolean) Declaration public static int intrflush(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source is_term_resized(Int32, Int32) Declaration public static bool is_term_resized(int lines, int columns) Parameters Type Name Description System.Int32 lines System.Int32 columns Returns Type Description System.Boolean | Improve this Doc View Source IsAlt(Int32) Declaration public static int IsAlt(int key) Parameters Type Name Description System.Int32 key Returns Type Description System.Int32 | Improve this Doc View Source isendwin() Declaration public static bool isendwin() Returns Type Description System.Boolean | Improve this Doc View Source keypad(IntPtr, Boolean) Declaration public static int keypad(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source leaveok(IntPtr, Boolean) Declaration public static int leaveok(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source meta(IntPtr, Boolean) Declaration public static int meta(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source mouseinterval(Int32) Declaration public static int mouseinterval(int interval) Parameters Type Name Description System.Int32 interval Returns Type Description System.Int32 | Improve this Doc View Source mousemask(Curses.Event, out Curses.Event) Declaration public static Curses.Event mousemask(Curses.Event newmask, out Curses.Event oldmask) Parameters Type Name Description Curses.Event newmask Curses.Event oldmask Returns Type Description Curses.Event | Improve this Doc View Source move(Int32, Int32) Declaration public static int move(int line, int col) Parameters Type Name Description System.Int32 line System.Int32 col Returns Type Description System.Int32 | Improve this Doc View Source mvaddch(Int32, Int32, Int32) Declaration public static int mvaddch(int y, int x, int ch) Parameters Type Name Description System.Int32 y System.Int32 x System.Int32 ch Returns Type Description System.Int32 | Improve this Doc View Source mvaddwstr(Int32, Int32, String) Declaration public static int mvaddwstr(int y, int x, string s) Parameters Type Name Description System.Int32 y System.Int32 x System.String s Returns Type Description System.Int32 | Improve this Doc View Source mvgetch(Int32, Int32) Declaration public static int mvgetch(int y, int x) Parameters Type Name Description System.Int32 y System.Int32 x Returns Type Description System.Int32 | Improve this Doc View Source nl() Declaration public static int nl() Returns Type Description System.Int32 | Improve this Doc View Source nocbreak() Declaration public static int nocbreak() Returns Type Description System.Int32 | Improve this Doc View Source noecho() Declaration public static int noecho() Returns Type Description System.Int32 | Improve this Doc View Source nonl() Declaration public static int nonl() Returns Type Description System.Int32 | Improve this Doc View Source noqiflush() Declaration public static void noqiflush() | Improve this Doc View Source noraw() Declaration public static int noraw() Returns Type Description System.Int32 | Improve this Doc View Source notimeout(IntPtr, Boolean) Declaration public static int notimeout(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source qiflush() Declaration public static void qiflush() | Improve this Doc View Source raw() Declaration public static int raw() Returns Type Description System.Int32 | Improve this Doc View Source redrawwin(IntPtr) Declaration public static int redrawwin(IntPtr win) Parameters Type Name Description System.IntPtr win Returns Type Description System.Int32 | Improve this Doc View Source refresh() Declaration public static int refresh() Returns Type Description System.Int32 | Improve this Doc View Source reset_prog_mode() Declaration public static int reset_prog_mode() Returns Type Description System.Int32 | Improve this Doc View Source reset_shell_mode() Declaration public static int reset_shell_mode() Returns Type Description System.Int32 | Improve this Doc View Source resetty() Declaration public static int resetty() Returns Type Description System.Int32 | Improve this Doc View Source resize_term(Int32, Int32) Declaration public static int resize_term(int lines, int columns) Parameters Type Name Description System.Int32 lines System.Int32 columns Returns Type Description System.Int32 | Improve this Doc View Source resizeterm(Int32, Int32) Declaration public static int resizeterm(int lines, int columns) Parameters Type Name Description System.Int32 lines System.Int32 columns Returns Type Description System.Int32 | Improve this Doc View Source savetty() Declaration public static int savetty() Returns Type Description System.Int32 | Improve this Doc View Source scrollok(IntPtr, Boolean) Declaration public static int scrollok(IntPtr win, bool bf) Parameters Type Name Description System.IntPtr win System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source set_escdelay(Int32) Declaration public static int set_escdelay(int size) Parameters Type Name Description System.Int32 size Returns Type Description System.Int32 setlocale(Int32, String) Declaration public static extern int setlocale(int cate, string locale) Parameters Type Name Description System.Int32 cate System.String locale Returns Type Description System.Int32 | Improve this Doc View Source setscrreg(Int32, Int32) Declaration public static int setscrreg(int top, int bot) Parameters Type Name Description System.Int32 top System.Int32 bot Returns Type Description System.Int32 | Improve this Doc View Source start_color() Declaration public static int start_color() Returns Type Description System.Int32 | Improve this Doc View Source StartColor() Declaration public static int StartColor() Returns Type Description System.Int32 | Improve this Doc View Source timeout(Int32) Declaration public static int timeout(int delay) Parameters Type Name Description System.Int32 delay Returns Type Description System.Int32 | Improve this Doc View Source typeahead(IntPtr) Declaration public static int typeahead(IntPtr fd) Parameters Type Name Description System.IntPtr fd Returns Type Description System.Int32 | Improve this Doc View Source ungetch(Int32) Declaration public static int ungetch(int ch) Parameters Type Name Description System.Int32 ch Returns Type Description System.Int32 | Improve this Doc View Source ungetmouse(ref Curses.MouseEvent) Declaration public static uint ungetmouse(ref Curses.MouseEvent ev) Parameters Type Name Description Curses.MouseEvent ev Returns Type Description System.UInt32 | Improve this Doc View Source use_default_colors() Declaration public static int use_default_colors() Returns Type Description System.Int32 | Improve this Doc View Source use_env(Boolean) Declaration public static void use_env(bool f) Parameters Type Name Description System.Boolean f | Improve this Doc View Source UseDefaultColors() Declaration public static int UseDefaultColors() Returns Type Description System.Int32 | Improve this Doc View Source waddch(IntPtr, Int32) Declaration public static int waddch(IntPtr win, int ch) Parameters Type Name Description System.IntPtr win System.Int32 ch Returns Type Description System.Int32 | Improve this Doc View Source wmove(IntPtr, Int32, Int32) Declaration public static int wmove(IntPtr win, int line, int col) Parameters Type Name Description System.IntPtr win System.Int32 line System.Int32 col Returns Type Description System.Int32 | Improve this Doc View Source wnoutrefresh(IntPtr) Declaration public static int wnoutrefresh(IntPtr win) Parameters Type Name Description System.IntPtr win Returns Type Description System.Int32 | Improve this Doc View Source wrefresh(IntPtr) Declaration public static int wrefresh(IntPtr win) Parameters Type Name Description System.IntPtr win Returns Type Description System.Int32 | Improve this Doc View Source wsetscrreg(IntPtr, Int32, Int32) Declaration public static int wsetscrreg(IntPtr win, int top, int bot) Parameters Type Name Description System.IntPtr win System.Int32 top System.Int32 bot Returns Type Description System.Int32 | Improve this Doc View Source wtimeout(IntPtr, Int32) Declaration public static int wtimeout(IntPtr win, int delay) Parameters Type Name Description System.IntPtr win System.Int32 delay Returns Type Description System.Int32" - }, - "api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html": { - "href": "api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html", - "title": "Struct Curses.MouseEvent", - "keywords": "Struct Curses.MouseEvent Inherited Members System.ValueType.Equals(System.Object) System.ValueType.GetHashCode() System.ValueType.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Unix.Terminal Assembly : Terminal.Gui.dll Syntax public struct MouseEvent Fields | Improve this Doc View Source ButtonState Declaration public Curses.Event ButtonState Field Value Type Description Curses.Event | Improve this Doc View Source ID Declaration public short ID Field Value Type Description System.Int16 | Improve this Doc View Source X Declaration public int X Field Value Type Description System.Int32 | Improve this Doc View Source Y Declaration public int Y Field Value Type Description System.Int32 | Improve this Doc View Source Z Declaration public int Z Field Value Type Description System.Int32" - }, - "api/Terminal.Gui/Unix.Terminal.Curses.Window.html": { - "href": "api/Terminal.Gui/Unix.Terminal.Curses.Window.html", - "title": "Class Curses.Window", - "keywords": "Class Curses.Window Inheritance System.Object Curses.Window Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : Unix.Terminal Assembly : Terminal.Gui.dll Syntax public class Window Fields | Improve this Doc View Source Handle Declaration public readonly IntPtr Handle Field Value Type Description System.IntPtr Properties | Improve this Doc View Source Current Declaration public static Curses.Window Current { get; } Property Value Type Description Curses.Window | Improve this Doc View Source Standard Declaration public static Curses.Window Standard { get; } Property Value Type Description Curses.Window Methods | Improve this Doc View Source addch(Char) Declaration public int addch(char ch) Parameters Type Name Description System.Char ch Returns Type Description System.Int32 | Improve this Doc View Source clearok(Boolean) Declaration public int clearok(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source idcok(Boolean) Declaration public void idcok(bool bf) Parameters Type Name Description System.Boolean bf | Improve this Doc View Source idlok(Boolean) Declaration public int idlok(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source immedok(Boolean) Declaration public void immedok(bool bf) Parameters Type Name Description System.Boolean bf | Improve this Doc View Source intrflush(Boolean) Declaration public int intrflush(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source keypad(Boolean) Declaration public int keypad(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source leaveok(Boolean) Declaration public int leaveok(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source meta(Boolean) Declaration public int meta(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source move(Int32, Int32) Declaration public int move(int line, int col) Parameters Type Name Description System.Int32 line System.Int32 col Returns Type Description System.Int32 | Improve this Doc View Source notimeout(Boolean) Declaration public int notimeout(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source redrawwin() Declaration public int redrawwin() Returns Type Description System.Int32 | Improve this Doc View Source refresh() Declaration public int refresh() Returns Type Description System.Int32 | Improve this Doc View Source scrollok(Boolean) Declaration public int scrollok(bool bf) Parameters Type Name Description System.Boolean bf Returns Type Description System.Int32 | Improve this Doc View Source setscrreg(Int32, Int32) Declaration public int setscrreg(int top, int bot) Parameters Type Name Description System.Int32 top System.Int32 bot Returns Type Description System.Int32 | Improve this Doc View Source wnoutrefresh() Declaration public int wnoutrefresh() Returns Type Description System.Int32 | Improve this Doc View Source wrefresh() Declaration public int wrefresh() Returns Type Description System.Int32 | Improve this Doc View Source wtimeout(Int32) Declaration public int wtimeout(int delay) Parameters Type Name Description System.Int32 delay Returns Type Description System.Int32" - }, - "api/Terminal.Gui/Unix.Terminal.html": { - "href": "api/Terminal.Gui/Unix.Terminal.html", - "title": "Namespace Unix.Terminal", - "keywords": "Namespace Unix.Terminal Classes Curses Curses.Window Structs Curses.MouseEvent Enums Curses.Event" - }, - "api/UICatalog/UICatalog.html": { - "href": "api/UICatalog/UICatalog.html", - "title": "Namespace UICatalog", - "keywords": "Namespace UICatalog Classes NumberToWords Scenario Base class for each demo/scenario. To define a new scenario: Create a new .cs file in the Scenarios directory that derives from Scenario . Annotate the Scenario derived class with a Scenario.ScenarioMetadata attribute specifying the scenario's name and description. Add one or more Scenario.ScenarioCategory attributes to the class specifying which categories the scenario belongs to. If you don't specify a category the scenario will show up in \"_All\". Implement the Setup() override which will be called when a user selects the scenario to run. Optionally, implement the Init(Toplevel, ColorScheme) and/or Run() overrides to provide a custom implementation. The UI Catalog program uses reflection to find all scenarios and adds them to the ListViews. Press ENTER to run the selected scenario. Press CTRL-Q to exit it. / Scenario.ScenarioCategory Defines the category names used to catagorize a Scenario Scenario.ScenarioMetadata Defines the metadata (Name and Description) for a Scenario UICatalogApp UI Catalog is a comprehensive sample app and scenario library for Terminal.Gui" - }, - "api/UICatalog/UICatalog.NumberToWords.html": { - "href": "api/UICatalog/UICatalog.NumberToWords.html", - "title": "Class NumberToWords", - "keywords": "Class NumberToWords Inheritance System.Object NumberToWords Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog Assembly : UICatalog.dll Syntax public static class NumberToWords Methods | Improve this Doc View Source Convert(Int64) Declaration public static string Convert(long i) Parameters Type Name Description System.Int64 i Returns Type Description System.String | Improve this Doc View Source ConvertAmount(Double) Declaration public static string ConvertAmount(double amount) Parameters Type Name Description System.Double amount Returns Type Description System.String" - }, - "api/UICatalog/UICatalog.Scenario.html": { - "href": "api/UICatalog/UICatalog.Scenario.html", - "title": "Class Scenario", - "keywords": "Class Scenario Base class for each demo/scenario. To define a new scenario: Create a new .cs file in the Scenarios directory that derives from Scenario . Annotate the Scenario derived class with a Scenario.ScenarioMetadata attribute specifying the scenario's name and description. Add one or more Scenario.ScenarioCategory attributes to the class specifying which categories the scenario belongs to. If you don't specify a category the scenario will show up in \"_All\". Implement the Setup() override which will be called when a user selects the scenario to run. Optionally, implement the Init(Toplevel, ColorScheme) and/or Run() overrides to provide a custom implementation. The UI Catalog program uses reflection to find all scenarios and adds them to the ListViews. Press ENTER to run the selected scenario. Press CTRL-Q to exit it. / Inheritance System.Object Scenario AllViewsTester AutoSizeAndDirectionText BackgroundWorkerCollection BasicColors Borders BordersComparisons BordersOnFrameView BordersOnToplevel BordersOnWindow Buttons CharacterMap ClassExplorer Clipping ColorPickers ComboBoxIteration ComputedLayout ContextMenus CsvEditor Dialogs DynamicMenuBar DynamicStatusBar Editor GraphViewExample HexEditor InteractiveTree InvertColors Keys LabelsAsLabels LineViewExample ListsAndCombos ListViewWithSelection MessageBoxes Mouse MultiColouredTable MyScenario Notepad Progress ProgressBarStyles RuneWidthGreaterThanOne Scrolling SendKeys SingleBackgroundWorker SyntaxHighlighting TableEditor TabViewExample Text TextAlignments TextAlignmentsAndDirections TextFormatterDemo TextViewAutocompletePopup Threading TimeAndDate TreeUseCases TreeViewFileSystem UnicodeInMenu WindowsAndFrameViews WizardAsView Wizards Implements System.IDisposable Examples The example below is provided in the Scenarios directory as a generic sample that can be copied and re-named: using Terminal.Gui; namespace UICatalog { [ScenarioMetadata (Name: \"Generic\", Description: \"Generic sample - A template for creating new Scenarios\")] [ScenarioCategory (\"Controls\")] class MyScenario : Scenario { public override void Setup () { // Put your scenario code here, e.g. Win.Add (new Button (\"Press me!\") { X = Pos.Center (), Y = Pos.Center (), Clicked = () => MessageBox.Query (20, 7, \"Hi\", \"Neat?\", \"Yes\", \"No\") }); } } } Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog Assembly : UICatalog.dll Syntax public class Scenario : IDisposable Properties | Improve this Doc View Source Top The Top level for the Scenario . This should be set to Top in most cases. Declaration public Toplevel Top { get; set; } Property Value Type Description Toplevel | Improve this Doc View Source Win The Window for the Scenario . This should be set within the Top in most cases. Declaration public Window Win { get; set; } Property Value Type Description Window Methods | Improve this Doc View Source Dispose() Declaration public void Dispose() | Improve this Doc View Source Dispose(Boolean) Declaration protected virtual void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing | Improve this Doc View Source GetCategories() Helper function to get the list of categories a Scenario belongs to (defined in Scenario.ScenarioCategory ) Declaration public List GetCategories() Returns Type Description System.Collections.Generic.List < System.String > list of category names | Improve this Doc View Source GetDerivedClasses() Returns an instance of each Scenario defined in the project. https://stackoverflow.com/questions/5411694/get-all-inherited-classes-of-an-abstract-class Declaration public static List GetDerivedClasses() Returns Type Description System.Collections.Generic.List < System.Type > Type Parameters Name Description T | Improve this Doc View Source GetDescription() Helper to get the Scenario Description (defined in Scenario.ScenarioMetadata ) Declaration public string GetDescription() Returns Type Description System.String | Improve this Doc View Source GetName() Helper to get the Scenario Name (defined in Scenario.ScenarioMetadata ) Declaration public string GetName() Returns Type Description System.String | Improve this Doc View Source Init(Toplevel, ColorScheme) Helper that provides the default Window implementation with a frame and label showing the name of the Scenario and logic to exit back to the Scenario picker UI. Override Init(Toplevel, ColorScheme) to provide any Toplevel behavior needed. Declaration public virtual void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top The Toplevel created by the UI Catalog host. ColorScheme colorScheme The colorscheme to use. | Improve this Doc View Source RequestStop() Stops the scenario. Override to change shutdown behavior for the Scenario . Declaration public virtual void RequestStop() | Improve this Doc View Source Run() Runs the Scenario . Override to start the Scenario using a Toplevel different than Top . Declaration public virtual void Run() | Improve this Doc View Source Setup() Override this to implement the Scenario setup logic (create controls, etc...). Declaration public virtual void Setup() | Improve this Doc View Source ToString() Declaration public override string ToString() Returns Type Description System.String Overrides System.Object.ToString() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenario.ScenarioCategory.html": { - "href": "api/UICatalog/UICatalog.Scenario.ScenarioCategory.html", - "title": "Class Scenario.ScenarioCategory", - "keywords": "Class Scenario.ScenarioCategory Defines the category names used to catagorize a Scenario Inheritance System.Object System.Attribute Scenario.ScenarioCategory Inherited Members System.Attribute.Equals(System.Object) System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, System.Boolean) System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, System.Boolean) System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, System.Boolean) System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Assembly) System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Module) System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, System.Boolean) System.Attribute.GetHashCode() System.Attribute.IsDefaultAttribute() System.Attribute.IsDefined(System.Reflection.Assembly, System.Type) System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, System.Boolean) System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type) System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, System.Boolean) System.Attribute.IsDefined(System.Reflection.Module, System.Type) System.Attribute.IsDefined(System.Reflection.Module, System.Type, System.Boolean) System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type) System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, System.Boolean) System.Attribute.Match(System.Object) System.Attribute.TypeId System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog Assembly : UICatalog.dll Syntax [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public class ScenarioCategory : Attribute Constructors | Improve this Doc View Source ScenarioCategory(String) Declaration public ScenarioCategory(string Name) Parameters Type Name Description System.String Name Properties | Improve this Doc View Source Name Category Name Declaration public string Name { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source GetCategories(Type) Static helper function to get the Scenario Categories given a Type Declaration public static List GetCategories(Type t) Parameters Type Name Description System.Type t Returns Type Description System.Collections.Generic.List < System.String > list of category names | Improve this Doc View Source GetName(Type) Static helper function to get the Scenario Name given a Type Declaration public static string GetName(Type t) Parameters Type Name Description System.Type t Returns Type Description System.String Name of the category" - }, - "api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html": { - "href": "api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html", - "title": "Class Scenario.ScenarioMetadata", - "keywords": "Class Scenario.ScenarioMetadata Defines the metadata (Name and Description) for a Scenario Inheritance System.Object System.Attribute Scenario.ScenarioMetadata Inherited Members System.Attribute.Equals(System.Object) System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, System.Boolean) System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, System.Boolean) System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, System.Boolean) System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type) System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Assembly) System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Module) System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Boolean) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type) System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, System.Boolean) System.Attribute.GetHashCode() System.Attribute.IsDefaultAttribute() System.Attribute.IsDefined(System.Reflection.Assembly, System.Type) System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, System.Boolean) System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type) System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, System.Boolean) System.Attribute.IsDefined(System.Reflection.Module, System.Type) System.Attribute.IsDefined(System.Reflection.Module, System.Type, System.Boolean) System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type) System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, System.Boolean) System.Attribute.Match(System.Object) System.Attribute.TypeId System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog Assembly : UICatalog.dll Syntax [AttributeUsage(AttributeTargets.Class)] public class ScenarioMetadata : Attribute Constructors | Improve this Doc View Source ScenarioMetadata(String, String) Declaration public ScenarioMetadata(string Name, string Description) Parameters Type Name Description System.String Name System.String Description Properties | Improve this Doc View Source Description Scenario Description Declaration public string Description { get; set; } Property Value Type Description System.String | Improve this Doc View Source Name Scenario Name Declaration public string Name { get; set; } Property Value Type Description System.String Methods | Improve this Doc View Source GetDescription(Type) Static helper function to get the Scenario Description given a Type Declaration public static string GetDescription(Type t) Parameters Type Name Description System.Type t Returns Type Description System.String | Improve this Doc View Source GetName(Type) Static helper function to get the Scenario Name given a Type Declaration public static string GetName(Type t) Parameters Type Name Description System.Type t Returns Type Description System.String" - }, - "api/UICatalog/UICatalog.Scenarios.AllViewsTester.html": { - "href": "api/UICatalog/UICatalog.Scenarios.AllViewsTester.html", - "title": "Class AllViewsTester", - "keywords": "Class AllViewsTester Inheritance System.Object Scenario AllViewsTester Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"All Views Tester\", \"Provides a test UI for all classes derived from View.\")] [Scenario.ScenarioCategory(\"Layout\")] [Scenario.ScenarioCategory(\"Tests\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] public class AllViewsTester : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html": { - "href": "api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html", - "title": "Class AutoSizeAndDirectionText", - "keywords": "Class AutoSizeAndDirectionText Inheritance System.Object Scenario AutoSizeAndDirectionText Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Text Direction and AutoSize\", \"Demos TextFormatter Direction and View AutoSize.\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class AutoSizeAndDirectionText : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html": { - "href": "api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html", - "title": "Class BackgroundWorkerCollection", - "keywords": "Class BackgroundWorkerCollection Inheritance System.Object Scenario BackgroundWorkerCollection Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"BackgroundWorker Collection\", \"A persisting multi Toplevel BackgroundWorker threading\")] [Scenario.ScenarioCategory(\"Threading\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Controls\")] public class BackgroundWorkerCollection : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.BasicColors.html": { - "href": "api/UICatalog/UICatalog.Scenarios.BasicColors.html", - "title": "Class BasicColors", - "keywords": "Class BasicColors Inheritance System.Object Scenario BasicColors Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Basic Colors\", \"Show all basic colors.\")] [Scenario.ScenarioCategory(\"Colors\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class BasicColors : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Borders.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Borders.html", - "title": "Class Borders", - "keywords": "Class Borders Inheritance System.Object Scenario Borders Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Borders with/without PanelView\", \"Demonstrate with/without PanelView borders manipulation.\")] [Scenario.ScenarioCategory(\"Layout\")] [Scenario.ScenarioCategory(\"Borders\")] public class Borders : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.BordersComparisons.html": { - "href": "api/UICatalog/UICatalog.Scenarios.BordersComparisons.html", - "title": "Class BordersComparisons", - "keywords": "Class BordersComparisons Inheritance System.Object Scenario BordersComparisons Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Borders Comparisons\", \"Compares Window, Toplevel and FrameView borders.\")] [Scenario.ScenarioCategory(\"Layout\")] [Scenario.ScenarioCategory(\"Borders\")] public class BordersComparisons : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html": { - "href": "api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html", - "title": "Class BordersOnFrameView", - "keywords": "Class BordersOnFrameView Inheritance System.Object Scenario BordersOnFrameView Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Borders on FrameView\", \"Demonstrate FrameView borders manipulation.\")] [Scenario.ScenarioCategory(\"Layout\")] [Scenario.ScenarioCategory(\"Borders\")] public class BordersOnFrameView : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html": { - "href": "api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html", - "title": "Class BordersOnToplevel", - "keywords": "Class BordersOnToplevel Inheritance System.Object Scenario BordersOnToplevel Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Borders on Toplevel\", \"Demonstrates Toplevel borders manipulation.\")] [Scenario.ScenarioCategory(\"Layout\")] [Scenario.ScenarioCategory(\"Borders\")] public class BordersOnToplevel : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html": { - "href": "api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html", - "title": "Class BordersOnWindow", - "keywords": "Class BordersOnWindow Inheritance System.Object Scenario BordersOnWindow Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Borders on Window\", \"Demonstrates Window borders manipulation.\")] [Scenario.ScenarioCategory(\"Layout\")] [Scenario.ScenarioCategory(\"Borders\")] public class BordersOnWindow : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Buttons.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Buttons.html", - "title": "Class Buttons", - "keywords": "Class Buttons Inheritance System.Object Scenario Buttons Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Buttons\", \"Demonstrates all sorts of Buttons.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Layout\")] public class Buttons : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.CharacterMap.html": { - "href": "api/UICatalog/UICatalog.Scenarios.CharacterMap.html", - "title": "Class CharacterMap", - "keywords": "Class CharacterMap This Scenario demonstrates building a custom control (a class deriving from View) that: Provides a simple \"Character Map\" application (like Windows' charmap.exe). Helps test unicode character rendering in Terminal.Gui Illustrates how to use ScrollView to do infinite scrolling Inheritance System.Object Scenario CharacterMap Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Character Map\", \"A Unicode character set viewier built as a custom control using the ScrollView control.\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"ScrollView\")] public class CharacterMap : Scenario, IDisposable Methods | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ClassExplorer.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ClassExplorer.html", - "title": "Class ClassExplorer", - "keywords": "Class ClassExplorer Inheritance System.Object Scenario ClassExplorer Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Class Explorer\", \"Tree view explorer for classes by namespace based on TreeView.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TreeView\")] public class ClassExplorer : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Clipping.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Clipping.html", - "title": "Class Clipping", - "keywords": "Class Clipping Inheritance System.Object Scenario Clipping Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Clipping\", \"Used to test that things clip correctly\")] [Scenario.ScenarioCategory(\"Tests\")] public class Clipping : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ColorPickers.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ColorPickers.html", - "title": "Class ColorPickers", - "keywords": "Class ColorPickers Inheritance System.Object Scenario ColorPickers Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Color Picker\", \"Color Picker.\")] [Scenario.ScenarioCategory(\"Colors\")] [Scenario.ScenarioCategory(\"Controls\")] public class ColorPickers : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Setup the scenario. Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html", - "title": "Class ComboBoxIteration", - "keywords": "Class ComboBoxIteration Inheritance System.Object Scenario ComboBoxIteration Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"ComboBoxIteration\", \"ComboBox iteration.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"ComboBox\")] public class ComboBoxIteration : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ComputedLayout.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ComputedLayout.html", - "title": "Class ComputedLayout", - "keywords": "Class ComputedLayout This Scenario demonstrates how to use Termina.gui's Dim and Pos Layout System. [x] - Using Dim.Fill to fill a window [x] - Using Dim.Fill and Dim.Pos to automatically align controls based on an initial control [ ] - ... Inheritance System.Object Scenario ComputedLayout Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Computed Layout\", \"Demonstrates the Computed (Dim and Pos) Layout System.\")] [Scenario.ScenarioCategory(\"Layout\")] public class ComputedLayout : Scenario, IDisposable Methods | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ContextMenus.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ContextMenus.html", - "title": "Class ContextMenus", - "keywords": "Class ContextMenus Inheritance System.Object Scenario ContextMenus Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"ContextMenus\", \"Context Menu Sample.\")] [Scenario.ScenarioCategory(\"Menus\")] public class ContextMenus : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.CsvEditor.html": { - "href": "api/UICatalog/UICatalog.Scenarios.CsvEditor.html", - "title": "Class CsvEditor", - "keywords": "Class CsvEditor Inheritance System.Object Scenario CsvEditor Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Csv Editor\", \"Open and edit simple CSV files using the TableView class.\")] [Scenario.ScenarioCategory(\"TableView\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] [Scenario.ScenarioCategory(\"Files and IO\")] public class CsvEditor : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Dialogs.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Dialogs.html", - "title": "Class Dialogs", - "keywords": "Class Dialogs Inheritance System.Object Scenario Dialogs Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Dialogs\", \"Demonstrates how to the Dialog class\")] [Scenario.ScenarioCategory(\"Dialogs\")] public class Dialogs : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html", - "title": "Class DynamicMenuBar.Binding", - "keywords": "Class DynamicMenuBar.Binding Inheritance System.Object DynamicMenuBar.Binding Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class Binding Constructors | Improve this Doc View Source Binding(View, String, View, String, DynamicMenuBar.IValueConverter) Declaration public Binding(View source, string sourcePropertyName, View target, string targetPropertyName, DynamicMenuBar.IValueConverter valueConverter = null) Parameters Type Name Description View source System.String sourcePropertyName View target System.String targetPropertyName DynamicMenuBar.IValueConverter valueConverter Properties | Improve this Doc View Source Source Declaration public View Source { get; } Property Value Type Description View | Improve this Doc View Source SourcePropertyName Declaration public string SourcePropertyName { get; } Property Value Type Description System.String | Improve this Doc View Source Target Declaration public View Target { get; } Property Value Type Description View | Improve this Doc View Source TargetPropertyName Declaration public string TargetPropertyName { get; } Property Value Type Description System.String" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html", - "title": "Class DynamicMenuBar.DynamicMenuBarDetails", - "keywords": "Class DynamicMenuBar.DynamicMenuBarDetails Inheritance System.Object Responder View FrameView DynamicMenuBar.DynamicMenuBarDetails Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members FrameView.Title FrameView.Border FrameView.Add(View) FrameView.Remove(View) FrameView.RemoveAll() FrameView.Redraw(Rect) FrameView.Text FrameView.TextAlignment FrameView.OnEnter(View) FrameView.OnCanFocusChanged() View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicMenuBarDetails : FrameView, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source DynamicMenuBarDetails(ustring) Declaration public DynamicMenuBarDetails(ustring title) Parameters Type Name Description NStack.ustring title | Improve this Doc View Source DynamicMenuBarDetails(MenuItem, Boolean) Declaration public DynamicMenuBarDetails(MenuItem menuItem = null, bool hasParent = false) Parameters Type Name Description MenuItem menuItem System.Boolean hasParent Fields | Improve this Doc View Source _ckbIsTopLevel Declaration public CheckBox _ckbIsTopLevel Field Value Type Description CheckBox | Improve this Doc View Source _ckbSubMenu Declaration public CheckBox _ckbSubMenu Field Value Type Description CheckBox | Improve this Doc View Source _menuItem Declaration public MenuItem _menuItem Field Value Type Description MenuItem | Improve this Doc View Source _rbChkStyle Declaration public RadioGroup _rbChkStyle Field Value Type Description RadioGroup | Improve this Doc View Source _txtAction Declaration public TextView _txtAction Field Value Type Description TextView | Improve this Doc View Source _txtHelp Declaration public TextField _txtHelp Field Value Type Description TextField | Improve this Doc View Source _txtShortcut Declaration public TextField _txtShortcut Field Value Type Description TextField | Improve this Doc View Source _txtTitle Declaration public TextField _txtTitle Field Value Type Description TextField Methods | Improve this Doc View Source CreateAction(MenuItem, DynamicMenuBar.DynamicMenuItem) Declaration public Action CreateAction(MenuItem menuItem, DynamicMenuBar.DynamicMenuItem item) Parameters Type Name Description MenuItem menuItem DynamicMenuBar.DynamicMenuItem item Returns Type Description System.Action | Improve this Doc View Source EditMenuBarItem(MenuItem) Declaration public void EditMenuBarItem(MenuItem menuItem) Parameters Type Name Description MenuItem menuItem | Improve this Doc View Source EnterMenuItem() Declaration public DynamicMenuBar.DynamicMenuItem EnterMenuItem() Returns Type Description DynamicMenuBar.DynamicMenuItem | Improve this Doc View Source UpdateParent(ref MenuItem) Declaration public void UpdateParent(ref MenuItem menuItem) Parameters Type Name Description MenuItem menuItem Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html", - "title": "Class DynamicMenuBar.DynamicMenuBarSample", - "keywords": "Class DynamicMenuBar.DynamicMenuBarSample Inheritance System.Object Responder View Toplevel Window DynamicMenuBar.DynamicMenuBarSample Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessKey(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicMenuBarSample : Window, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source DynamicMenuBarSample(ustring) Declaration public DynamicMenuBarSample(ustring title) Parameters Type Name Description NStack.ustring title Properties | Improve this Doc View Source DataContext Declaration public DynamicMenuBar.DynamicMenuItemModel DataContext { get; set; } Property Value Type Description DynamicMenuBar.DynamicMenuItemModel Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html", - "title": "Class DynamicMenuBar.DynamicMenuItem", - "keywords": "Class DynamicMenuBar.DynamicMenuItem Inheritance System.Object DynamicMenuBar.DynamicMenuItem Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicMenuItem Constructors | Improve this Doc View Source DynamicMenuItem() Declaration public DynamicMenuItem() | Improve this Doc View Source DynamicMenuItem(ustring, ustring, ustring, Boolean, Boolean, MenuItemCheckStyle, ustring) Declaration public DynamicMenuItem(ustring title, ustring help, ustring action, bool isTopLevel, bool hasSubMenu, MenuItemCheckStyle checkStyle = MenuItemCheckStyle.NoCheck, ustring shortcut = null) Parameters Type Name Description NStack.ustring title NStack.ustring help NStack.ustring action System.Boolean isTopLevel System.Boolean hasSubMenu MenuItemCheckStyle checkStyle NStack.ustring shortcut | Improve this Doc View Source DynamicMenuItem(ustring, Boolean) Declaration public DynamicMenuItem(ustring title, bool hasSubMenu = false) Parameters Type Name Description NStack.ustring title System.Boolean hasSubMenu Fields | Improve this Doc View Source action Declaration public ustring action Field Value Type Description NStack.ustring | Improve this Doc View Source checkStyle Declaration public MenuItemCheckStyle checkStyle Field Value Type Description MenuItemCheckStyle | Improve this Doc View Source hasSubMenu Declaration public bool hasSubMenu Field Value Type Description System.Boolean | Improve this Doc View Source help Declaration public ustring help Field Value Type Description NStack.ustring | Improve this Doc View Source isTopLevel Declaration public bool isTopLevel Field Value Type Description System.Boolean | Improve this Doc View Source shortcut Declaration public ustring shortcut Field Value Type Description NStack.ustring | Improve this Doc View Source title Declaration public ustring title Field Value Type Description NStack.ustring" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html", - "title": "Class DynamicMenuBar.DynamicMenuItemList", - "keywords": "Class DynamicMenuBar.DynamicMenuItemList Inheritance System.Object DynamicMenuBar.DynamicMenuItemList Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicMenuItemList Constructors | Improve this Doc View Source DynamicMenuItemList() Declaration public DynamicMenuItemList() | Improve this Doc View Source DynamicMenuItemList(ustring, MenuItem) Declaration public DynamicMenuItemList(ustring title, MenuItem menuItem) Parameters Type Name Description NStack.ustring title MenuItem menuItem Properties | Improve this Doc View Source MenuItem Declaration public MenuItem MenuItem { get; set; } Property Value Type Description MenuItem | Improve this Doc View Source Title Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source ToString() Declaration public override string ToString() Returns Type Description System.String Overrides System.Object.ToString()" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html", - "title": "Class DynamicMenuBar.DynamicMenuItemModel", - "keywords": "Class DynamicMenuBar.DynamicMenuItemModel Inheritance System.Object DynamicMenuBar.DynamicMenuItemModel Implements System.ComponentModel.INotifyPropertyChanged Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicMenuItemModel : INotifyPropertyChanged Constructors | Improve this Doc View Source DynamicMenuItemModel() Declaration public DynamicMenuItemModel() Properties | Improve this Doc View Source MenuBar Declaration public ustring MenuBar { get; set; } Property Value Type Description NStack.ustring | Improve this Doc View Source Menus Declaration public List Menus { get; set; } Property Value Type Description System.Collections.Generic.List < DynamicMenuBar.DynamicMenuItemList > | Improve this Doc View Source Parent Declaration public ustring Parent { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source GetPropertyName(String) Declaration public string GetPropertyName(string propertyName = null) Parameters Type Name Description System.String propertyName Returns Type Description System.String Events | Improve this Doc View Source PropertyChanged Declaration public event PropertyChangedEventHandler PropertyChanged Event Type Type Description System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html", - "title": "Class DynamicMenuBar", - "keywords": "Class DynamicMenuBar Inheritance System.Object Scenario DynamicMenuBar Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Dynamic MenuBar\", \"Demonstrates how to change a MenuBar dynamically.\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] [Scenario.ScenarioCategory(\"Menus\")] public class DynamicMenuBar : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html", - "title": "Interface DynamicMenuBar.IValueConverter", - "keywords": "Interface DynamicMenuBar.IValueConverter Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public interface IValueConverter Methods | Improve this Doc View Source Convert(Object, Object) Declaration object Convert(object value, object parameter = null) Parameters Type Name Description System.Object value System.Object parameter Returns Type Description System.Object" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html", - "title": "Class DynamicMenuBar.ListWrapperConverter", - "keywords": "Class DynamicMenuBar.ListWrapperConverter Inheritance System.Object DynamicMenuBar.ListWrapperConverter Implements DynamicMenuBar.IValueConverter Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class ListWrapperConverter : DynamicMenuBar.IValueConverter Methods | Improve this Doc View Source Convert(Object, Object) Declaration public object Convert(object value, object parameter = null) Parameters Type Name Description System.Object value System.Object parameter Returns Type Description System.Object Implements DynamicMenuBar.IValueConverter" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html", - "title": "Class DynamicMenuBar.UStringValueConverter", - "keywords": "Class DynamicMenuBar.UStringValueConverter Inheritance System.Object DynamicMenuBar.UStringValueConverter Implements DynamicMenuBar.IValueConverter Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class UStringValueConverter : DynamicMenuBar.IValueConverter Methods | Improve this Doc View Source Convert(Object, Object) Declaration public object Convert(object value, object parameter = null) Parameters Type Name Description System.Object value System.Object parameter Returns Type Description System.Object Implements DynamicMenuBar.IValueConverter" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html", - "title": "Class DynamicStatusBar.Binding", - "keywords": "Class DynamicStatusBar.Binding Inheritance System.Object DynamicStatusBar.Binding Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class Binding Constructors | Improve this Doc View Source Binding(View, String, View, String, DynamicStatusBar.IValueConverter) Declaration public Binding(View source, string sourcePropertyName, View target, string targetPropertyName, DynamicStatusBar.IValueConverter valueConverter = null) Parameters Type Name Description View source System.String sourcePropertyName View target System.String targetPropertyName DynamicStatusBar.IValueConverter valueConverter Properties | Improve this Doc View Source Source Declaration public View Source { get; } Property Value Type Description View | Improve this Doc View Source SourcePropertyName Declaration public string SourcePropertyName { get; } Property Value Type Description System.String | Improve this Doc View Source Target Declaration public View Target { get; } Property Value Type Description View | Improve this Doc View Source TargetPropertyName Declaration public string TargetPropertyName { get; } Property Value Type Description System.String" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html", - "title": "Class DynamicStatusBar.DynamicStatusBarDetails", - "keywords": "Class DynamicStatusBar.DynamicStatusBarDetails Inheritance System.Object Responder View FrameView DynamicStatusBar.DynamicStatusBarDetails Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members FrameView.Title FrameView.Border FrameView.Add(View) FrameView.Remove(View) FrameView.RemoveAll() FrameView.Redraw(Rect) FrameView.Text FrameView.TextAlignment FrameView.OnEnter(View) FrameView.OnCanFocusChanged() View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.CanFocus View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.PositionCursor() View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.ProcessKey(KeyEvent) View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.ProcessColdKey(KeyEvent) View.KeyDown View.OnKeyDown(KeyEvent) View.KeyUp View.OnKeyUp(KeyEvent) View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.MouseEvent(MouseEvent) Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicStatusBarDetails : FrameView, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source DynamicStatusBarDetails(ustring) Declaration public DynamicStatusBarDetails(ustring title) Parameters Type Name Description NStack.ustring title | Improve this Doc View Source DynamicStatusBarDetails(StatusItem) Declaration public DynamicStatusBarDetails(StatusItem statusItem = null) Parameters Type Name Description StatusItem statusItem Fields | Improve this Doc View Source _statusItem Declaration public StatusItem _statusItem Field Value Type Description StatusItem | Improve this Doc View Source _txtAction Declaration public TextView _txtAction Field Value Type Description TextView | Improve this Doc View Source _txtShortcut Declaration public TextField _txtShortcut Field Value Type Description TextField | Improve this Doc View Source _txtTitle Declaration public TextField _txtTitle Field Value Type Description TextField Methods | Improve this Doc View Source CreateAction(DynamicStatusBar.DynamicStatusItem) Declaration public Action CreateAction(DynamicStatusBar.DynamicStatusItem item) Parameters Type Name Description DynamicStatusBar.DynamicStatusItem item Returns Type Description System.Action | Improve this Doc View Source EditStatusItem(StatusItem) Declaration public void EditStatusItem(StatusItem statusItem) Parameters Type Name Description StatusItem statusItem | Improve this Doc View Source EnterStatusItem() Declaration public DynamicStatusBar.DynamicStatusItem EnterStatusItem() Returns Type Description DynamicStatusBar.DynamicStatusItem Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html", - "title": "Class DynamicStatusBar.DynamicStatusBarSample", - "keywords": "Class DynamicStatusBar.DynamicStatusBarSample Inheritance System.Object Responder View Toplevel Window DynamicStatusBar.DynamicStatusBarSample Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessKey(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicStatusBarSample : Window, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source DynamicStatusBarSample(ustring) Declaration public DynamicStatusBarSample(ustring title) Parameters Type Name Description NStack.ustring title Properties | Improve this Doc View Source DataContext Declaration public DynamicStatusBar.DynamicStatusItemModel DataContext { get; set; } Property Value Type Description DynamicStatusBar.DynamicStatusItemModel Methods | Improve this Doc View Source SetTitleText(ustring, ustring) Declaration public static ustring SetTitleText(ustring title, ustring shortcut) Parameters Type Name Description NStack.ustring title NStack.ustring shortcut Returns Type Description NStack.ustring Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html", - "title": "Class DynamicStatusBar.DynamicStatusItem", - "keywords": "Class DynamicStatusBar.DynamicStatusItem Inheritance System.Object DynamicStatusBar.DynamicStatusItem Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicStatusItem Constructors | Improve this Doc View Source DynamicStatusItem() Declaration public DynamicStatusItem() | Improve this Doc View Source DynamicStatusItem(ustring) Declaration public DynamicStatusItem(ustring title) Parameters Type Name Description NStack.ustring title | Improve this Doc View Source DynamicStatusItem(ustring, ustring, ustring) Declaration public DynamicStatusItem(ustring title, ustring action, ustring shortcut = null) Parameters Type Name Description NStack.ustring title NStack.ustring action NStack.ustring shortcut Fields | Improve this Doc View Source action Declaration public ustring action Field Value Type Description NStack.ustring | Improve this Doc View Source shortcut Declaration public ustring shortcut Field Value Type Description NStack.ustring | Improve this Doc View Source title Declaration public ustring title Field Value Type Description NStack.ustring" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html", - "title": "Class DynamicStatusBar.DynamicStatusItemList", - "keywords": "Class DynamicStatusBar.DynamicStatusItemList Inheritance System.Object DynamicStatusBar.DynamicStatusItemList Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicStatusItemList Constructors | Improve this Doc View Source DynamicStatusItemList() Declaration public DynamicStatusItemList() | Improve this Doc View Source DynamicStatusItemList(ustring, StatusItem) Declaration public DynamicStatusItemList(ustring title, StatusItem statusItem) Parameters Type Name Description NStack.ustring title StatusItem statusItem Properties | Improve this Doc View Source StatusItem Declaration public StatusItem StatusItem { get; set; } Property Value Type Description StatusItem | Improve this Doc View Source Title Declaration public ustring Title { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source ToString() Declaration public override string ToString() Returns Type Description System.String Overrides System.Object.ToString()" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html", - "title": "Class DynamicStatusBar.DynamicStatusItemModel", - "keywords": "Class DynamicStatusBar.DynamicStatusItemModel Inheritance System.Object DynamicStatusBar.DynamicStatusItemModel Implements System.ComponentModel.INotifyPropertyChanged Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class DynamicStatusItemModel : INotifyPropertyChanged Constructors | Improve this Doc View Source DynamicStatusItemModel() Declaration public DynamicStatusItemModel() Properties | Improve this Doc View Source Items Declaration public List Items { get; set; } Property Value Type Description System.Collections.Generic.List < DynamicStatusBar.DynamicStatusItemList > | Improve this Doc View Source StatusBar Declaration public ustring StatusBar { get; set; } Property Value Type Description NStack.ustring Methods | Improve this Doc View Source GetPropertyName(String) Declaration public string GetPropertyName(string propertyName = null) Parameters Type Name Description System.String propertyName Returns Type Description System.String Events | Improve this Doc View Source PropertyChanged Declaration public event PropertyChangedEventHandler PropertyChanged Event Type Type Description System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html", - "title": "Class DynamicStatusBar", - "keywords": "Class DynamicStatusBar Inheritance System.Object Scenario DynamicStatusBar Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Dynamic StatusBar\", \"Demonstrates how to add and remove a StatusBar and change items dynamically.\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] public class DynamicStatusBar : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html", - "title": "Interface DynamicStatusBar.IValueConverter", - "keywords": "Interface DynamicStatusBar.IValueConverter Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public interface IValueConverter Methods | Improve this Doc View Source Convert(Object, Object) Declaration object Convert(object value, object parameter = null) Parameters Type Name Description System.Object value System.Object parameter Returns Type Description System.Object" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html", - "title": "Class DynamicStatusBar.ListWrapperConverter", - "keywords": "Class DynamicStatusBar.ListWrapperConverter Inheritance System.Object DynamicStatusBar.ListWrapperConverter Implements DynamicStatusBar.IValueConverter Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class ListWrapperConverter : DynamicStatusBar.IValueConverter Methods | Improve this Doc View Source Convert(Object, Object) Declaration public object Convert(object value, object parameter = null) Parameters Type Name Description System.Object value System.Object parameter Returns Type Description System.Object Implements DynamicStatusBar.IValueConverter" - }, - "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html": { - "href": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html", - "title": "Class DynamicStatusBar.UStringValueConverter", - "keywords": "Class DynamicStatusBar.UStringValueConverter Inheritance System.Object DynamicStatusBar.UStringValueConverter Implements DynamicStatusBar.IValueConverter Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class UStringValueConverter : DynamicStatusBar.IValueConverter Methods | Improve this Doc View Source Convert(Object, Object) Declaration public object Convert(object value, object parameter = null) Parameters Type Name Description System.Object value System.Object parameter Returns Type Description System.Object Implements DynamicStatusBar.IValueConverter" - }, - "api/UICatalog/UICatalog.Scenarios.Editor.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Editor.html", - "title": "Class Editor", - "keywords": "Class Editor Inheritance System.Object Scenario Editor Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Editor\", \"A Text Editor using the TextView control.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] [Scenario.ScenarioCategory(\"Files and IO\")] [Scenario.ScenarioCategory(\"TextView\")] public class Editor : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.GraphViewExample.html": { - "href": "api/UICatalog/UICatalog.Scenarios.GraphViewExample.html", - "title": "Class GraphViewExample", - "keywords": "Class GraphViewExample Inheritance System.Object Scenario GraphViewExample Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Graph View\", \"Demos the GraphView control.\")] [Scenario.ScenarioCategory(\"Controls\")] public class GraphViewExample : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.HexEditor.html": { - "href": "api/UICatalog/UICatalog.Scenarios.HexEditor.html", - "title": "Class HexEditor", - "keywords": "Class HexEditor Inheritance System.Object Scenario HexEditor Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"HexEditor\", \"A binary (hex) editor using the HexView control.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] [Scenario.ScenarioCategory(\"Files and IO\")] public class HexEditor : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.html": { - "href": "api/UICatalog/UICatalog.Scenarios.html", - "title": "Namespace UICatalog.Scenarios", - "keywords": "Namespace UICatalog.Scenarios Classes AllViewsTester AutoSizeAndDirectionText BackgroundWorkerCollection BasicColors Borders BordersComparisons BordersOnFrameView BordersOnToplevel BordersOnWindow Buttons CharacterMap This Scenario demonstrates building a custom control (a class deriving from View) that: Provides a simple \"Character Map\" application (like Windows' charmap.exe). Helps test unicode character rendering in Terminal.Gui Illustrates how to use ScrollView to do infinite scrolling ClassExplorer Clipping ColorPickers ComboBoxIteration ComputedLayout This Scenario demonstrates how to use Termina.gui's Dim and Pos Layout System. [x] - Using Dim.Fill to fill a window [x] - Using Dim.Fill and Dim.Pos to automatically align controls based on an initial control [ ] - ... ContextMenus CsvEditor Dialogs DynamicMenuBar DynamicMenuBar.Binding DynamicMenuBar.DynamicMenuBarDetails DynamicMenuBar.DynamicMenuBarSample DynamicMenuBar.DynamicMenuItem DynamicMenuBar.DynamicMenuItemList DynamicMenuBar.DynamicMenuItemModel DynamicMenuBar.ListWrapperConverter DynamicMenuBar.UStringValueConverter DynamicStatusBar DynamicStatusBar.Binding DynamicStatusBar.DynamicStatusBarDetails DynamicStatusBar.DynamicStatusBarSample DynamicStatusBar.DynamicStatusItem DynamicStatusBar.DynamicStatusItemList DynamicStatusBar.DynamicStatusItemModel DynamicStatusBar.ListWrapperConverter DynamicStatusBar.UStringValueConverter Editor GraphViewExample HexEditor InteractiveTree InvertColors Keys LabelsAsLabels LineViewExample ListsAndCombos ListViewWithSelection MessageBoxes Mouse MultiColouredTable MyScenario Notepad Progress ProgressBarStyles RuneWidthGreaterThanOne Scrolling SendKeys SingleBackgroundWorker SingleBackgroundWorker.MainApp SingleBackgroundWorker.StagingUIController SyntaxHighlighting TableEditor TabViewExample Text TextAlignments TextAlignmentsAndDirections TextFormatterDemo TextViewAutocompletePopup Threading TimeAndDate TreeUseCases TreeViewFileSystem UnicodeInMenu WindowsAndFrameViews WizardAsView Wizards Interfaces DynamicMenuBar.IValueConverter DynamicStatusBar.IValueConverter" - }, - "api/UICatalog/UICatalog.Scenarios.InteractiveTree.html": { - "href": "api/UICatalog/UICatalog.Scenarios.InteractiveTree.html", - "title": "Class InteractiveTree", - "keywords": "Class InteractiveTree Inheritance System.Object Scenario InteractiveTree Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Interactive Tree\", \"Create nodes and child nodes in TreeView.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TreeView\")] public class InteractiveTree : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.InvertColors.html": { - "href": "api/UICatalog/UICatalog.Scenarios.InvertColors.html", - "title": "Class InvertColors", - "keywords": "Class InvertColors Inheritance System.Object Scenario InvertColors Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Invert Colors\", \"Invert the foreground and the background colors.\")] [Scenario.ScenarioCategory(\"Colors\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class InvertColors : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Keys.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Keys.html", - "title": "Class Keys", - "keywords": "Class Keys Inheritance System.Object Scenario Keys Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Keys\", \"Shows how to handle keyboard input\")] [Scenario.ScenarioCategory(\"Mouse and Keyboard\")] public class Keys : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html": { - "href": "api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html", - "title": "Class LabelsAsLabels", - "keywords": "Class LabelsAsLabels Inheritance System.Object Scenario LabelsAsLabels Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Labels As Buttons\", \"Illustrates that Button is really just a Label++\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Proof of Concept\")] public class LabelsAsLabels : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.LineViewExample.html": { - "href": "api/UICatalog/UICatalog.Scenarios.LineViewExample.html", - "title": "Class LineViewExample", - "keywords": "Class LineViewExample Inheritance System.Object Scenario LineViewExample Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Line View\", \"Demonstrates drawing lines using the LineView control.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"LineView\")] public class LineViewExample : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html", - "title": "Class ListsAndCombos", - "keywords": "Class ListsAndCombos Inheritance System.Object Scenario ListsAndCombos Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"ListView & ComboBox\", \"Demonstrates a ListView populating a ComboBox that acts as a filter.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"ListView\")] [Scenario.ScenarioCategory(\"ComboBox\")] public class ListsAndCombos : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html", - "title": "Class ListViewWithSelection", - "keywords": "Class ListViewWithSelection Inheritance System.Object Scenario ListViewWithSelection Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"List View With Selection\", \"ListView with columns and selection\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"ListView\")] public class ListViewWithSelection : Scenario, IDisposable Fields | Improve this Doc View Source _allowMarkingCB Declaration public CheckBox _allowMarkingCB Field Value Type Description CheckBox | Improve this Doc View Source _allowMultipleCB Declaration public CheckBox _allowMultipleCB Field Value Type Description CheckBox | Improve this Doc View Source _customRenderCB Declaration public CheckBox _customRenderCB Field Value Type Description CheckBox | Improve this Doc View Source _listView Declaration public ListView _listView Field Value Type Description ListView | Improve this Doc View Source _scenarios Declaration public List _scenarios Field Value Type Description System.Collections.Generic.List < System.Type > Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.MessageBoxes.html": { - "href": "api/UICatalog/UICatalog.Scenarios.MessageBoxes.html", - "title": "Class MessageBoxes", - "keywords": "Class MessageBoxes Inheritance System.Object Scenario MessageBoxes Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"MessageBoxes\", \"Demonstrates how to use the MessageBox class.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Dialogs\")] public class MessageBoxes : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Mouse.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Mouse.html", - "title": "Class Mouse", - "keywords": "Class Mouse Inheritance System.Object Scenario Mouse Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Mouse\", \"Demonstrates how to capture mouse events\")] [Scenario.ScenarioCategory(\"Mouse and Keyboard\")] public class Mouse : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html": { - "href": "api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html", - "title": "Class MultiColouredTable", - "keywords": "Class MultiColouredTable Inheritance System.Object Scenario MultiColouredTable Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"MultiColouredTable\", \"Demonstrates how to multi color cell contents.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Colors\")] [Scenario.ScenarioCategory(\"TableView\")] public class MultiColouredTable : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.MyScenario.html": { - "href": "api/UICatalog/UICatalog.Scenarios.MyScenario.html", - "title": "Class MyScenario", - "keywords": "Class MyScenario Inheritance System.Object Scenario MyScenario Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Generic\", \"Generic sample - A template for creating new Scenarios\")] [Scenario.ScenarioCategory(\"Controls\")] public class MyScenario : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Notepad.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Notepad.html", - "title": "Class Notepad", - "keywords": "Class Notepad Inheritance System.Object Scenario Notepad Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Notepad\", \"Multi tab text editor uising the TabView control.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TabView\")] public class Notepad : Scenario, IDisposable Methods | Improve this Doc View Source Save() Declaration public void Save() | Improve this Doc View Source SaveAs() Declaration public bool SaveAs() Returns Type Description System.Boolean | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Progress.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Progress.html", - "title": "Class Progress", - "keywords": "Class Progress Inheritance System.Object Scenario Progress Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Progress\", \"Shows off ProgressBar and Threading.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Threading\")] [Scenario.ScenarioCategory(\"ProgressBar\")] public class Progress : Scenario, IDisposable Methods | Improve this Doc View Source Dispose(Boolean) Declaration protected override void Dispose(bool disposing) Parameters Type Name Description System.Boolean disposing Overrides Scenario.Dispose(Boolean) | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html": { - "href": "api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html", - "title": "Class ProgressBarStyles", - "keywords": "Class ProgressBarStyles Inheritance System.Object Scenario ProgressBarStyles Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"ProgressBar Styles\", \"Shows the ProgressBar Styles.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"ProgressBar\")] [Scenario.ScenarioCategory(\"Threading\")] public class ProgressBarStyles : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html": { - "href": "api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html", - "title": "Class RuneWidthGreaterThanOne", - "keywords": "Class RuneWidthGreaterThanOne Inheritance System.Object Scenario RuneWidthGreaterThanOne Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"RuneWidthGreaterThanOne\", \"Test rune width greater than one\")] [Scenario.ScenarioCategory(\"Controls\")] public class RuneWidthGreaterThanOne : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Scrolling.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Scrolling.html", - "title": "Class Scrolling", - "keywords": "Class Scrolling Inheritance System.Object Scenario Scrolling Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Scrolling\", \"Demonstrates ScrollView etc...\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"ScrollView\")] public class Scrolling : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.SendKeys.html": { - "href": "api/UICatalog/UICatalog.Scenarios.SendKeys.html", - "title": "Class SendKeys", - "keywords": "Class SendKeys Inheritance System.Object Scenario SendKeys Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"SendKeys\", \"SendKeys sample - Send key combinations.\")] [Scenario.ScenarioCategory(\"Mouse and Keyboard\")] public class SendKeys : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html": { - "href": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html", - "title": "Class SingleBackgroundWorker", - "keywords": "Class SingleBackgroundWorker Inheritance System.Object Scenario SingleBackgroundWorker Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Single BackgroundWorker\", \"A single BackgroundWorker threading opening another Toplevel\")] [Scenario.ScenarioCategory(\"Threading\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] public class SingleBackgroundWorker : Scenario, IDisposable Methods | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html": { - "href": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html", - "title": "Class SingleBackgroundWorker.MainApp", - "keywords": "Class SingleBackgroundWorker.MainApp Inheritance System.Object Responder View Toplevel SingleBackgroundWorker.MainApp Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessKey(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.Add(View) Toplevel.Remove(View) Toplevel.RemoveAll() Toplevel.PositionToplevel(Toplevel) Toplevel.Redraw(Rect) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.Text View.AutoSize View.PreserveTrailingSpaces View.TextAlignment View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.Border View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnCanFocusChanged() View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class MainApp : Toplevel, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source MainApp() Declaration public MainApp() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html": { - "href": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html", - "title": "Class SingleBackgroundWorker.StagingUIController", - "keywords": "Class SingleBackgroundWorker.StagingUIController Inheritance System.Object Responder View Toplevel Window SingleBackgroundWorker.StagingUIController Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize Inherited Members Window.Title Window.Border Window.Add(View) Window.Remove(View) Window.RemoveAll() Window.Redraw(Rect) Window.OnCanFocusChanged() Window.Text Window.TextAlignment Window.OnTitleChanging(ustring, ustring) Window.TitleChanging Window.OnTitleChanged(ustring, ustring) Window.TitleChanged Toplevel.Running Toplevel.Loaded Toplevel.Ready Toplevel.Unloaded Toplevel.Activate Toplevel.Deactivate Toplevel.ChildClosed Toplevel.AllChildClosed Toplevel.Closing Toplevel.Closed Toplevel.ChildLoaded Toplevel.ChildUnloaded Toplevel.Resized Toplevel.OnLoaded() Toplevel.AlternateForwardKeyChanged Toplevel.OnAlternateForwardKeyChanged(Key) Toplevel.AlternateBackwardKeyChanged Toplevel.OnAlternateBackwardKeyChanged(Key) Toplevel.QuitKeyChanged Toplevel.OnQuitKeyChanged(Key) Toplevel.Create() Toplevel.CanFocus Toplevel.Modal Toplevel.MenuBar Toplevel.StatusBar Toplevel.IsMdiContainer Toplevel.IsMdiChild Toplevel.OnKeyDown(KeyEvent) Toplevel.OnKeyUp(KeyEvent) Toplevel.ProcessKey(KeyEvent) Toplevel.ProcessColdKey(KeyEvent) Toplevel.PositionToplevel(Toplevel) Toplevel.MouseEvent(MouseEvent) Toplevel.WillPresent() Toplevel.MoveNext() Toplevel.MovePrevious() Toplevel.RequestStop() Toplevel.RequestStop(Toplevel) Toplevel.PositionCursor() Toplevel.GetTopMdiChild(Type, String[]) Toplevel.ShowChild(Toplevel) View.Added View.Removed View.Enter View.Leave View.MouseEnter View.MouseLeave View.MouseClick View.CanFocusChanged View.EnabledChanged View.VisibleChanged View.HotKeyChanged View.HotKey View.HotKeySpecifier View.Shortcut View.ShortcutTag View.ShortcutAction View.Data View.Driver View.Subviews View.TabIndexes View.TabIndex View.TabStop View.Id View.IsCurrentTop View.WantMousePositionReports View.WantContinuousButtonPressed View.Frame View.LayoutStyle View.Bounds View.X View.Y View.Width View.Height View.ForceValidatePosDim View.GetMinWidthHeight(Size) View.SetMinWidthHeight() View.TextFormatter View.SuperView View.UpdateTextFormatterText() View.ProcessResizeView() View.SetNeedsDisplay() View.ClearLayoutNeeded() View.SetNeedsDisplay(Rect) View.SetChildNeedsDisplay() View.Add(View[]) View.BringSubviewToFront(View) View.SendSubviewToBack(View) View.SendSubviewBackwards(View) View.BringSubviewForward(View) View.Clear() View.Clear(Rect) View.ScreenToView(Int32, Int32) View.ClipToBounds() View.SetClip(Rect) View.DrawFrame(Rect, Int32, Boolean) View.DrawHotString(ustring, Attribute, Attribute) View.DrawHotString(ustring, Boolean, ColorScheme) View.Move(Int32, Int32, Boolean) View.HasFocus View.OnAdded(View) View.OnRemoved(View) View.OnEnter(View) View.OnLeave(View) View.Focused View.MostFocused View.ColorScheme View.AddRune(Int32, Int32, Rune) View.ClearNeedsDisplay() View.DrawContent View.OnDrawContent(Rect) View.DrawContentComplete View.OnDrawContentComplete(Rect) View.SetFocus() View.KeyPress View.InvokeKeybindings(KeyEvent) View.AddKeyBinding(Key, Command[]) View.ReplaceKeyBinding(Key, Key) View.ContainsKeyBinding(Key) View.ClearKeybindings() View.ClearKeybinding(Key) View.ClearKeybinding(Command[]) View.AddCommand(Command, Func>) View.GetSupportedCommands() View.GetKeyFromCommand(Command[]) View.ProcessHotKey(KeyEvent) View.KeyDown View.KeyUp View.EnsureFocus() View.FocusFirst() View.FocusLast() View.FocusPrev() View.FocusNext() View.LayoutStarted View.LayoutComplete View.Initialized View.LayoutSubviews() View.AutoSize View.PreserveTrailingSpaces View.VerticalTextAlignment View.TextDirection View.IsInitialized View.IsAdded View.Enabled View.Visible View.ToString() View.GetAutoSize() View.GetHotKeySpecifierLength(Boolean) View.GetTextFormatterBoundsSize() View.GetBoundsTextFormatterSize() View.OnMouseEnter(MouseEvent) View.OnMouseLeave(MouseEvent) View.OnMouseEvent(MouseEvent) View.OnMouseClick(View.MouseEventArgs) View.OnEnabledChanged() View.OnVisibleChanged() View.Dispose(Boolean) View.BeginInit() View.EndInit() View.SetWidth(Int32, Int32) View.SetHeight(Int32, Int32) View.GetCurrentWidth(Int32) View.GetCurrentHeight(Int32) View.GetNormalColor() View.GetTopSuperView() Responder.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax public class StagingUIController : Window, IDisposable, ISupportInitializeNotification, ISupportInitialize Constructors | Improve this Doc View Source StagingUIController(Nullable, List) Declaration public StagingUIController(DateTime? start, List list) Parameters Type Name Description System.Nullable < System.DateTime > start System.Collections.Generic.List < System.String > list Methods | Improve this Doc View Source Load() Declaration public void Load() Implements System.IDisposable System.ComponentModel.ISupportInitializeNotification System.ComponentModel.ISupportInitialize" - }, - "api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html": { - "href": "api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html", - "title": "Class SyntaxHighlighting", - "keywords": "Class SyntaxHighlighting Inheritance System.Object Scenario SyntaxHighlighting Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Syntax Highlighting\", \"Text editor with keyword highlighting using the TextView control.\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TextView\")] public class SyntaxHighlighting : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TableEditor.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TableEditor.html", - "title": "Class TableEditor", - "keywords": "Class TableEditor Inheritance System.Object Scenario TableEditor Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"TableEditor\", \"Implements data table editor using the TableView control.\")] [Scenario.ScenarioCategory(\"TableView\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] public class TableEditor : Scenario, IDisposable Methods | Improve this Doc View Source BuildDemoDataTable(Int32, Int32) Generates a new demo System.Data.DataTable with the given number of cols (min 5) and rows Declaration public static DataTable BuildDemoDataTable(int cols, int rows) Parameters Type Name Description System.Int32 cols System.Int32 rows Returns Type Description System.Data.DataTable | Improve this Doc View Source BuildSimpleDataTable(Int32, Int32) Builds a simple table in which cell values contents are the index of the cell. This helps testing that scrolling etc is working correctly and not skipping out any rows/columns when paging Declaration public static DataTable BuildSimpleDataTable(int cols, int rows) Parameters Type Name Description System.Int32 cols System.Int32 rows Returns Type Description System.Data.DataTable | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TabViewExample.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TabViewExample.html", - "title": "Class TabViewExample", - "keywords": "Class TabViewExample Inheritance System.Object Scenario TabViewExample Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Tab View\", \"Demos TabView control with limited screen space in Absolute layout.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TabView\")] public class TabViewExample : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Text.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Text.html", - "title": "Class Text", - "keywords": "Class Text Inheritance System.Object Scenario Text Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Text Input Controls\", \"Tests all text input controls\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Mouse and Keyboard\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class Text : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TextAlignments.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TextAlignments.html", - "title": "Class TextAlignments", - "keywords": "Class TextAlignments Inheritance System.Object Scenario TextAlignments Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Simple Text Alignment\", \"Demonstrates horizontal text alignment\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class TextAlignments : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html", - "title": "Class TextAlignmentsAndDirections", - "keywords": "Class TextAlignmentsAndDirections Inheritance System.Object Scenario TextAlignmentsAndDirections Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Text Alignment and Direction\", \"Demos horiztonal and vertical text alignment and text direction.\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class TextAlignmentsAndDirections : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html", - "title": "Class TextFormatterDemo", - "keywords": "Class TextFormatterDemo Inheritance System.Object Scenario TextFormatterDemo Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"TextFormatter Demo\", \"Demos and tests the TextFormatter class.\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] public class TextFormatterDemo : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html", - "title": "Class TextViewAutocompletePopup", - "keywords": "Class TextViewAutocompletePopup Inheritance System.Object Scenario TextViewAutocompletePopup Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"TextView Autocomplete Popup\", \"Shows five TextView Autocomplete Popup effects\")] [Scenario.ScenarioCategory(\"TextView\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"Mouse and Keyboard\")] public class TextViewAutocompletePopup : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Threading.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Threading.html", - "title": "Class Threading", - "keywords": "Class Threading Inheritance System.Object Scenario Threading Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Threading\", \"Demonstration of how to use threading in different ways\")] [Scenario.ScenarioCategory(\"Threading\")] public class Threading : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TimeAndDate.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TimeAndDate.html", - "title": "Class TimeAndDate", - "keywords": "Class TimeAndDate Inheritance System.Object Scenario TimeAndDate Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Time And Date\", \"Illustrates TimeField and time & date handling\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"DateTime\")] public class TimeAndDate : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TreeUseCases.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TreeUseCases.html", - "title": "Class TreeUseCases", - "keywords": "Class TreeUseCases Inheritance System.Object Scenario TreeUseCases Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Tree View\", \"Simple tree view examples.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TreeView\")] public class TreeUseCases : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html": { - "href": "api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html", - "title": "Class TreeViewFileSystem", - "keywords": "Class TreeViewFileSystem Inheritance System.Object Scenario TreeViewFileSystem Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"TreeViewFileSystem\", \"Hierarchical file system explorer based on TreeView.\")] [Scenario.ScenarioCategory(\"Controls\")] [Scenario.ScenarioCategory(\"TreeView\")] [Scenario.ScenarioCategory(\"Files and IO\")] public class TreeViewFileSystem : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html": { - "href": "api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html", - "title": "Class UnicodeInMenu", - "keywords": "Class UnicodeInMenu Inheritance System.Object Scenario UnicodeInMenu Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Unicode\", \"Tries to test Unicode in all controls (#204)\")] [Scenario.ScenarioCategory(\"Text and Formatting\")] [Scenario.ScenarioCategory(\"Controls\")] public class UnicodeInMenu : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html": { - "href": "api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html", - "title": "Class WindowsAndFrameViews", - "keywords": "Class WindowsAndFrameViews Inheritance System.Object Scenario WindowsAndFrameViews Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Windows & FrameViews\", \"Shows Windows, sub-Windows, and FrameViews.\")] [Scenario.ScenarioCategory(\"Layout\")] public class WindowsAndFrameViews : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source RequestStop() Declaration public override void RequestStop() Overrides Scenario.RequestStop() | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.WizardAsView.html": { - "href": "api/UICatalog/UICatalog.Scenarios.WizardAsView.html", - "title": "Class WizardAsView", - "keywords": "Class WizardAsView Inheritance System.Object Scenario WizardAsView Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Setup() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"WizardAsView\", \"Shows using the Wizard class in an non-modal way\")] [Scenario.ScenarioCategory(\"Wizards\")] public class WizardAsView : Scenario, IDisposable Methods | Improve this Doc View Source Init(Toplevel, ColorScheme) Declaration public override void Init(Toplevel top, ColorScheme colorScheme) Parameters Type Name Description Toplevel top ColorScheme colorScheme Overrides Scenario.Init(Toplevel, ColorScheme) | Improve this Doc View Source Run() Declaration public override void Run() Overrides Scenario.Run() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.Scenarios.Wizards.html": { - "href": "api/UICatalog/UICatalog.Scenarios.Wizards.html", - "title": "Class Wizards", - "keywords": "Class Wizards Inheritance System.Object Scenario Wizards Implements System.IDisposable Inherited Members Scenario.Top Scenario.Win Scenario.Init(Toplevel, ColorScheme) Scenario.GetName() Scenario.GetDescription() Scenario.GetCategories() Scenario.ToString() Scenario.Run() Scenario.RequestStop() Scenario.GetDerivedClasses() Scenario.Dispose(Boolean) Scenario.Dispose() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : UICatalog.Scenarios Assembly : UICatalog.dll Syntax [Scenario.ScenarioMetadata(\"Wizards\", \"Demonstrates the Wizard class\")] [Scenario.ScenarioCategory(\"Dialogs\")] [Scenario.ScenarioCategory(\"Top Level Windows\")] [Scenario.ScenarioCategory(\"Wizards\")] public class Wizards : Scenario, IDisposable Methods | Improve this Doc View Source Setup() Declaration public override void Setup() Overrides Scenario.Setup() Implements System.IDisposable" - }, - "api/UICatalog/UICatalog.UICatalogApp.html": { - "href": "api/UICatalog/UICatalog.UICatalogApp.html", - "title": "Class UICatalogApp", - "keywords": "Class UICatalogApp UI Catalog is a comprehensive sample app and scenario library for Terminal.Gui Inheritance System.Object UICatalogApp Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) System.Object.ToString() Namespace : UICatalog Assembly : UICatalog.dll Syntax public class UICatalogApp" - }, - "articles/drivers.html": { - "href": "articles/drivers.html", - "title": "Cross-Platform Driver Model", - "keywords": "Cross-Platform Driver Model Terminal.Gui has support for ncurses , System.Console , and a full Win32 Console front-end. ncurses is used on Mac/Linux/Unix with color support based on what your library is compiled with; the Windows driver supports full color and mouse, and an easy-to-debug System.Console can be used on Windows and Unix, but lacks mouse support. You can force the use of System.Console on Unix as well; see Core.cs ." - }, - "articles/index.html": { - "href": "articles/index.html", - "title": "Conceptual Documentation", - "keywords": "Conceptual Documentation Terminal.Gui Overview List of Views Keyboard Event Processing Event Processing and the Application Main Loop Cross-platform Driver Model TableView Deep Dive TreeView Deep Dive" - }, - "articles/keyboard.html": { - "href": "articles/keyboard.html", - "title": "Keyboard Event Processing", - "keywords": "Keyboard Event Processing Terminal.Gui respects common Linux, Mac, and Windows keyboard idioms. For example, clipboard operations use the familiar Control/Command-C, X, V model. CTRL-Q is used for exiting views (and apps). The input handling of Terminal.Gui is similar in some ways to Emacs and the Midnight Commander, so you can expect some of the special key combinations to be active. The key ESC can act as an Alt modifier (or Meta in Emacs parlance), to allow input on terminals that do not have an alt key. So to produce the sequence Alt-F , you can press either Alt-F , or ESC followed by the key F . To enter the key ESC , you can either press ESC and wait 100 milliseconds, or you can press ESC twice. ESC-0 , and ESC-1 through ESC-9 have a special meaning, they map to F10 , and F1 to F9 respectively. Apps can change key bindings using the AddKeyBinding API. Keyboard events are sent by the Main Loop to the Application class for processing. The keyboard events are sent exclusively to the current Toplevel , this being either the default that is created when you call Application.Init , or one that you created an passed to Application.Run(Toplevel) . Flow Keystrokes are first processes as hotkeys, then as regular keys, and there is a final cold post-processing event that is invoked if no view processed the key. HotKey Processing Events are first send to all views as a \"HotKey\", this means that the View.ProcessHotKey method is invoked on the current toplevel, which in turns propagates this to all the views in the hierarchy. If any view decides to process the event, no further processing takes place. This is how hotkeys for buttons are implemented. For example, the keystroke \"Alt-A\" is handled by Buttons that have a hot-letter \"A\" to activate the button. Regular Processing Unlike the hotkey processing, the regular processing is only sent to the currently focused view in the focus chain. The regular key processing is only invoked if no hotkey was caught. Cold-key Processing This stage only is executed if the focused view did not process the event, and is broadcast to all the views in the Toplevel. This method can be overwritten by views that want to provide accelerator functionality (Alt-key for example), but without interfering with normal ProcessKey behavior. Key Bindings Terminal.Gui supports rebinding keys. For example the default key for activating a button is Enter. You can change this using the ClearKeybinding and AddKeybinding methods: var btn = new Button (\"Press Me\"); btn.ClearKeybinding (Command.Accept); btn.AddKeyBinding (Key.b, Command.Accept); The Command enum lists generic operations that are implemented by views. For example Command.Accept in a Button results in the Clicked event firing while in TableView it is bound to CellActivated . Not all commands are implemented by all views (e.g. you cannot scroll in a Button). To see which commands are implemented by a View you can use the GetSupportedCommands() method. Not all controls have the same key bound for a given command, for example Command.Accept defaults to Key.Enter in a Button but defaults to Key.Space in RadioGroup . Global Key Handler Sometimes you may want to define global key handling logic for your entire application that is invoked regardless of what Window/View has focus. This can be achieved by using the Application.RootKeyEvent event." - }, - "articles/mainloop.html": { - "href": "articles/mainloop.html", - "title": "Event Processing and the Application Main Loop", - "keywords": "Event Processing and the Application Main Loop See also Cross-platform Driver Model The method Application.Run that we covered before will wait for events from either the keyboard or mouse and route those events to the proper view. The job of waiting for events and dispatching them in the Application is implemented by an instance of the MainLoop class. Mainloops are a common idiom in many user interface toolkits so many of the concepts will be familiar to you if you have used other toolkits before. This class provides the following capabilities: Keyboard and mouse processing .NET Async support Timers processing Invoking of UI code from a background thread Idle processing handlers Possibility of integration with other mainloops. On Unix systems, it can monitor file descriptors for readability or writability. The MainLoop property in the the Application provides access to these functions. When your code invokes Application.Run (Toplevel) , the application will prepare the current Toplevel instance by redrawing the screen appropriately and then calling the mainloop to run. You can configure the Mainloop before calling Application.Run, or you can configure the MainLoop in response to events during the execution. The keyboard inputs is dispatched by the application class to the current TopLevel window this is covered in more detail in the Keyboard Event Processing document. Async Execution On startup, the Application class configured the .NET Asynchronous machinery to allow you to use the await keyword to run tasks in the background and have the execution of those tasks resume on the context of the main thread running the main loop. Once you invoke Application.Main the async machinery will be ready to use, and you can merely call methods using await from your main thread, and the awaited code will resume execution on the main thread. Timers Processing You can register timers to be executed at specified intervals by calling the AddTimeout method, like this: void UpdateTimer () { time.Text = DateTime.Now.ToString (); } var token = Application.MainLoop.AddTimeout (TimeSpan.FromSeconds (20), UpdateTimer); The return value from AddTimeout is a token value that you can use if you desire to cancel the timer before it runs: Application.MainLoop.RemoveTimeout (token); Idle Handlers You can register code to be executed when the application is idling and there are no events to process by calling the AddIdle method. This method takes as a parameter a function that will be invoked when the application is idling. Idle functions should return true if they should be invoked again, and false if the idle invocations should stop. Like the timer APIs, the return value is a token that can be used to cancel the scheduled idle function from being executed. Threading Like other UI toolkits, Terminal.Gui is generally not thread safe. You should avoid calling methods in the UI classes from a background thread as there is no guarantee that they will not corrupt the state of the UI application. Generally, as there is not much state, you will get lucky, but the application will not behave properly. You will be served better off by using C# async machinery and the various APIs in the System.Threading.Tasks.Task APIs. But if you absolutely must work with threads on your own you should only invoke APIs in Terminal.Gui from the main thread. To make this simple, you can use the Application.MainLoop.Invoke method and pass an Action . This action will be queued for execution on the main thread at an appropriate time and will run your code there. For example, the following shows how to properly update a label from a background thread: void BackgroundThreadUpdateProgress () { Application.MainLoop.Invoke (() => { progress.Text = $\"Progress: {bytesDownloaded/totalBytes}\"; }); } Integration With Other Main Loop Drivers It is possible to run the main loop in a way that it does not take over control of your application, but rather in a cooperative way. To do this, you must use the lower-level APIs in Application : the Begin method to prepare a toplevel for execution, followed by calls to MainLoop.EventsPending to determine whether the events must be processed, and in that case, calling RunLoop method and finally completing the process by calling End . The method Run is implemented like this: void Run (Toplevel top) { var runToken = Begin (view); RunLoop (runToken); End (runToken); } Unix File Descriptor Monitoring On Unix, it is possible to monitor file descriptors for input being available, or for the file descriptor being available for data to be written without blocking the application. To do this, you on Unix, you can cast the MainLoop instance to a UnixMainLoop and use the AddWatch method to register an interest on a particular condition." - }, - "articles/overview.html": { - "href": "articles/overview.html", - "title": "Terminal.Gui API Overview", - "keywords": "Terminal.Gui API Overview Terminal.Gui is a library intended to create console-based applications using C#. The framework has been designed to make it easy to write applications that will work on monochrome terminals, as well as modern color terminals with mouse support. This library works across Windows, Linux and MacOS. This library provides a text-based toolkit as works in a way similar to graphic toolkits. There are many controls that can be used to create your applications and it is event based, meaning that you create the user interface, hook up various events and then let the a processing loop run your application, and your code is invoked via one or more callbacks. The simplest application looks like this: using Terminal.Gui; class Demo { static int Main () { Application.Init (); var n = MessageBox.Query (50, 7, \"Question\", \"Do you like console apps?\", \"Yes\", \"No\"); Application.Shutdown (); return n; } } This example shows a prompt and returns an integer value depending on which value was selected by the user (Yes, No, or if they use chose not to make a decision and instead pressed the ESC key). More interesting user interfaces can be created by composing some of the various views that are included. In the following sections, you will see how applications are put together. In the example above, you can see that we have initialized the runtime by calling the Init method in the Application class - this sets up the environment, initializes the color schemes available for your application and clears the screen to start your application. The Application class, additionally creates an instance of the Toplevel class that is ready to be consumed, this instance is available in the Application.Top property, and can be used like this: using Terminal.Gui; class Demo { static int Main () { Application.Init (); var label = new Label (\"Hello World\") { X = Pos.Center (), Y = Pos.Center (), Height = 1, }; Application.Top.Add (label); Application.Run (); Application.Shutdown (); } } Typically, you will want your application to have more than a label, you might want a menu, and a region for your application to live in, the following code does this: using Terminal.Gui; class Demo { static int Main () { Application.Init (); var menu = new MenuBar (new MenuBarItem [] { new MenuBarItem (\"_File\", new MenuItem [] { new MenuItem (\"_Quit\", \"\", () => { Application.RequestStop (); }) }), }); var win = new Window (\"Hello\") { X = 0, Y = 1, Width = Dim.Fill (), Height = Dim.Fill () - 1 }; // Add both menu and win in a single call Application.Top.Add (menu, win); Application.Run (); Application.Shutdown (); } } Views All visible elements on a Terminal.Gui application are implemented as Views . Views are self-contained objects that take care of displaying themselves, can receive keyboard and mouse input and participate in the focus mechanism. See the full list of Views provided by the Terminal.Gui library here . Every view can contain an arbitrary number of children views. These are called the Subviews. You can add a view to an existing view, by calling the Add method, for example, to add a couple of buttons to a UI, you can do this: void SetupMyView (View myView) { var label = new Label (\"Username: \") { X = 1, Y = 1, Width = 20, Height = 1 }; myView.Add (label); var username = new TextField (\"\") { X = 1, Y = 2, Width = 30, Height = 1 }; myView.Add (username); } The container of a given view is called the SuperView and it is a property of every View. Layout Terminal.Gui supports two different layout systems, absolute and computed \\ (controlled by the LayoutStyle property on the view. The absolute system is used when you want the view to be positioned exactly in one location and want to manually control where the view is. This is done by invoking your View constructor with an argument of type Rect . When you do this, to change the position of the View, you can change the Frame property on the View. The computed layout system offers a few additional capabilities, like automatic centering, expanding of dimensions and a handful of other features. To use this you construct your object without an initial Frame , but set the X , Y , Width and Height properties after the object has been created. Examples: // Dynamically computed var label = new Label (\"Hello\") { X = 1, Y = Pos.Center (), Width = Dim.Fill (), Height = 1 }; // Absolute position using the provided rectangle var label2 = new Label (new Rect (1, 2, 20, 1), \"World\") The computed layout system does not take integers, instead the X and Y properties are of type Pos and the Width and Height properties are of type Dim both which can be created implicitly from integer values. The Pos Type The Pos type on X and Y offers a few options: Absolute position, by passing an integer Percentage of the parent's view size - Pos.Percent(n) Anchored from the end of the dimension - AnchorEnd(int margin=0) Centered, using Center() Reference the Left (X), Top (Y), Bottom, Right positions of another view The Pos values can be added or subtracted, like this: // Set the X coordinate to 10 characters left from the center view.X = Pos.Center () - 10; view.Y = Pos.Percent (20); anotherView.X = AnchorEnd (10); anotherView.Width = 9; myView.X = Pos.X (view); myView.Y = Pos.Bottom (anotherView); The Dim Type The Dim type is used for the Width and Height properties on the View and offers the following options: Absolute size, by passing an integer Percentage of the parent's view size - Dim.Percent(n) Fill to the end - Dim.Fill () Reference the Width or Height of another view Like, Pos , objects of type Dim can be added an subtracted, like this: // Set the Width to be 10 characters less than filling // the remaining portion of the screen view.Width = Dim.Fill () - 10; view.Height = Dim.Percent(20) - 1; anotherView.Height = Dim.Height (view)+1 TopLevels, Windows and Dialogs. Among the many kinds of views, you typically will create a Toplevel view (or any of its subclasses, like Window or Dialog which is special kind of views that can be executed modally - that is, the view can take over all input and returns only when the user chooses to complete their work there. The following sections cover the differences. TopLevel Views Toplevel views have no visible user interface elements and occupy an arbitrary portion of the screen. You would use a toplevel Modal view for example to launch an entire new experience in your application, one where you would have a new top-level menu for example. You typically would add a Menu and a Window to your Toplevel, it would look like this: using Terminal.Gui; class Demo { static void Edit (string filename) { var top = new Toplevel () { X = 0, Y = 0, Width = Dim.Fill (), Height = Dim.Fill () }; var menu = new MenuBar (new MenuBarItem [] { new MenuBarItem (\"_File\", new MenuItem [] { new MenuItem (\"_Close\", \"\", () => { Application.RequestStop (); }) }), }); // nest a window for the editor var win = new Window (filename) { X = 0, Y = 1, Width = Dim.Fill (), Height = Dim.Fill () - 1 }; var editor = new TextView () { X = 0, Y = 0, Width = Dim.Fill (), Height = Dim.Fill () }; editor.Text = System.IO.File.ReadAllText (filename); win.Add (editor); // Add both menu and win in a single call top.Add (win, menu); Application.Run (top); Application.Shutdown (); } } Window Views Window views extend the Toplevel view by providing a frame and a title around the toplevel - and can be moved on the screen with the mouse (caveat: code is currently disabled) From a user interface perspective, you might have more than one Window on the screen at a given time. Dialogs Dialog are Window objects that happen to be centered in the middle of the screen. Dialogs are instances of a Window that are centered in the screen, and are intended to be used modally - that is, they run, and they are expected to return a result before resuming execution of your application. Dialogs are a subclass of Window and additionally expose the AddButton API which manages the layout of any button passed to it, ensuring that the buttons are at the bottom of the dialog. Example: bool okpressed = false; var ok = new Button(\"Ok\"); var cancel = new Button(\"Cancel\"); var dialog = new Dialog (\"Quit\", 60, 7, ok, cancel); Which will show something like this: +- Quit -----------------------------------------------+ | | | | | [ Ok ] [ Cancel ] | +------------------------------------------------------+ Running Modally To run your Dialog, Window or Toplevel modally, you will invoke the Application.Run method on the toplevel. It is up to your code and event handlers to invoke the Application.RequestStop() method to terminate the modal execution. bool okpressed = false; var ok = new Button(3, 14, \"Ok\") { Clicked = () => { Application.RequestStop (); okpressed = true; } }; var cancel = new Button(10, 14, \"Cancel\") { Clicked = () => Application.RequestStop () }; var dialog = new Dialog (\"Login\", 60, 18, ok, cancel); var entry = new TextField () { X = 1, Y = 1, Width = Dim.Fill (), Height = 1 }; dialog.Add (entry); Application.Run (dialog); if (okpressed) Console.WriteLine (\"The user entered: \" + entry.Text); There is no return value from running modally, so your code will need to have a mechanism of indicating the reason that the execution of the modal dialog was completed, in the case above, the okpressed value is set to true if the user pressed or selected the Ok button. Input Handling Every view has a focused view, and if that view has nested views, one of those is the focused view. This is called the focus chain, and at any given time, only one View has the focus. The library binds the key Tab to focus the next logical view, and the Shift-Tab combination to focus the previous logical view. Keyboard processing is divided in three stages: HotKey processing, regular processing and cold key processing. Hot key processing happens first, and it gives all the views in the current toplevel a chance to monitor whether the key needs to be treated specially. This for example handles the scenarios where the user pressed Alt-o, and a view with a highlighted \"o\" is being displayed. If no view processed the hotkey, then the key is sent to the currently focused view. If the key was not processed by the normal processing, all views are given a chance to process the keystroke in their cold processing stage. Examples include the processing of the \"return\" key in a dialog when a button in the dialog has been flagged as the \"default\" action. The most common case is the normal processing, which sends the keystrokes to the currently focused view. Mouse events are processed in visual order, and the event will be sent to the view on the screen. The only exception is that no mouse events are delivered to background views when a modal view is running. More details are available on the Keyboard Event Processing document. Colors and Color Schemes All views have been configured with a color scheme that will work both in color terminals as well as the more limited black and white terminals. The various styles are captured in the Colors class which defined color schemes for the toplevel, the normal views, the menu bar, popup dialog boxes and error dialog boxes, that you can use like this: Colors.Toplevel Colors.Base Colors.Menu Colors.Dialog Colors.Error You can use them for example like this to set the colors for a new Window: var w = new Window (\"Hello\"); w.ColorScheme = Colors.Error The ColorScheme represents four values, the color used for Normal text, the color used for normal text when a view is focused an the colors for the hot-keys both in focused and unfocused modes. By using ColorSchemes you ensure that your application will work correctbly both in color and black and white terminals. Some views support setting individual color attributes, you create an attribute for a particular pair of Foreground/Background like this: var myColor = Application.Driver.MakeAttribute (Color.Blue, Color.Red); var label = new Label (...); label.TextColor = myColor MainLoop, Threads and Input Handling Detailed description of the mainloop is described on the Event Processing and the Application Main Loop document. Cross-Platform Drivers See Cross-platform Driver Model ." - }, - "articles/tableview.html": { - "href": "articles/tableview.html", - "title": "Table View", - "keywords": "Table View This control supports viewing and editing tabular data. It provides a view of a System.DataTable . System.DataTable is a core class of .net standard and can be created very easily TableView API Reference Csv Example You can create a DataTable from a CSV file by creating a new instance and adding columns and rows as you read them. For a robust solution however you might want to look into a CSV parser library that deals with escaping, multi line rows etc. var dt = new DataTable(); var lines = File.ReadAllLines(filename); foreach(var h in lines[0].Split(',')){ dt.Columns.Add(h); } foreach(var line in lines.Skip(1)) { dt.Rows.Add(line.Split(',')); } Database Example All Ado.net database providers (Oracle, MySql, SqlServer etc) support reading data as DataTables for example: var dt = new DataTable(); using(var con = new SqlConnection(\"Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;\")) { con.Open(); var cmd = new SqlCommand(\"select * from myTable;\",con); var adapter = new SqlDataAdapter(cmd); adapter.Fill(dt); } Displaying the table Once you have set up your data table set it in the view: tableView = new TableView () { X = 0, Y = 0, Width = 50, Height = 10, }; tableView.Table = yourDataTable; Table Rendering TableView supports any size of table (limited only by the RAM requirements of System.DataTable ). You can have thousands of columns and/or millions of rows if you want. Horizontal and vertical scrolling can be done using the mouse or keyboard. TableView uses ColumnOffset and RowOffset to determine the first visible cell of the System.DataTable . Rendering then continues until the avaialble console space is exhausted. Updating the ColumnOffset and RowOffset changes which part of the table is rendered (scrolls the viewport). This approach ensures that no matter how big the table, only a small number of columns/rows need to be evaluated for rendering." - }, - "articles/treeview.html": { - "href": "articles/treeview.html", - "title": "Tree View", - "keywords": "Tree View TreeView is a control for navigating hierarchical objects. It comes in two forms TreeView and TreeView . TreeView API Reference Using TreeView The basic non generic TreeView class is populated by ITreeNode objects. The simplest tree you can make would look something like: var tree = new TreeView() { X = 0, Y = 0, Width = 40, Height = 20 }; var root1 = new TreeNode(\"Root1\"); root1.Children.Add(new TreeNode(\"Child1.1\")); root1.Children.Add(new TreeNode(\"Child1.2\")); var root2 = new TreeNode(\"Root2\"); root2.Children.Add(new TreeNode(\"Child2.1\")); root2.Children.Add(new TreeNode(\"Child2.2\")); tree.AddObject(root1); tree.AddObject(root2); Having to create a bunch of TreeNode objects can be a pain especially if you already have your own objects e.g. House , Room etc. There are two ways to use your own classes without having to create nodes manually. Firstly you can implement the ITreeNode interface: // Your data class private class House : TreeNode { // Your properties public string Address {get;set;} public List Rooms {get;set;} // ITreeNode member: public override IList Children => Rooms.Cast().ToList(); public override string Text { get => Address; set => Address = value; } } // Your other data class private class Room : TreeNode{ public string Name {get;set;} public override string Text{get=>Name;set{Name=value;}} } After implementing the interface you can add your objects directly to the tree var myHouse = new House() { Address = \"23 Nowhere Street\", Rooms = new List{ new Room(){Name = \"Ballroom\"}, new Room(){Name = \"Bedroom 1\"}, new Room(){Name = \"Bedroom 2\"} } }; var tree = new TreeView() { X = 0, Y = 0, Width = 40, Height = 20 }; tree.AddObject(myHouse); Alternatively you can simply tell the tree how the objects relate to one another by implementing ITreeBuilder . This is a good option if you don't have control of the data objects you are working with. TreeView The generic Treeview allows you to store any object hierarchy where nodes implement Type T. For example if you are working with DirectoryInfo and FileInfo objects then you could create a TreeView . If you don't have a shared interface/base class for all nodes you can still declare a TreeView . In order to use TreeView you need to tell the tree how objects relate to one another (who are children of who). To do this you must provide an ITreeBuilder . Implementing ITreeBuilder Consider a simple data model that already exists in your program: private abstract class GameObject { } private class Army : GameObject { public string Designation {get;set;} public List Units {get;set;} public override string ToString () { return Designation; } } private class Unit : GameObject { public string Name {get;set;} public override string ToString () { return Name; } } An ITreeBuilder for these classes might look like: private class GameObjectTreeBuilder : ITreeBuilder { public bool SupportsCanExpand => true; public bool CanExpand (GameObject model) { return model is Army; } public IEnumerable GetChildren (GameObject model) { if(model is Army a) return a.Units; return Enumerable.Empty(); } } To use the builder in a tree you would use: var army1 = new Army() { Designation = \"3rd Infantry\", Units = new List{ new Unit(){Name = \"Orc\"}, new Unit(){Name = \"Troll\"}, new Unit(){Name = \"Goblin\"}, } }; var tree = new TreeView() { X = 0, Y = 0, Width = 40, Height = 20, TreeBuilder = new GameObjectTreeBuilder() }; tree.AddObject(army1); Alternatively you can use DelegateTreeBuilder instead of implementing your own ITreeBuilder . For example: tree.TreeBuilder = new DelegateTreeBuilder( (o)=>o is Army a ? a.Units : Enumerable.Empty()); Node Text and ToString The default behavior of TreeView is to use the ToString method on the objects for rendering. You can customise this by changing the AspectGetter . For example: treeViewFiles.AspectGetter = (f)=>f.FullName;" - }, - "articles/views.html": { - "href": "articles/views.html", - "title": "", - "keywords": "Terminal.Gui provides a rich set of views and controls for building terminal user interfaces: Button - A View that provides an item that invokes an System.Action when activated by the user. CheckBox - Shows an on/off toggle that the user can set. ColorPicker - Enables to user to pick a color. ComboBox - Provides a drop-down list of items the user can select from. Dialog - A pop-up Window that contains one or more Buttons. OpenDialog - A Dialog providing an interactive pop-up Window for users to select files or directories. SaveDialog - A Dialog providing an interactive pop-up Window for users to save files. FrameView - A container View that draws a frame around its contents. Similar to a GroupBox in Windows. GraphView - A View for rendering graphs (bar, scatter etc). Hex viewer/editor - A hex viewer and editor that operates over a file stream. Label - Displays a string at a given position and supports multiple lines. ListView - Displays a scrollable list of data where each item can be activated to perform an action. MenuBar - Provides a menu bar with drop-down and cascading menus. MessageBox - Displays a modal (pup-up) message to the user, with a title, a message and a series of options that the user can choose from. ProgressBar - Displays a progress Bar indicating progress of an activity. RadioGroup - Displays a group of labels each with a selected indicator. Only one of those can be selected at a given time ScrollView - Present a window into a virtual space where subviews are added. Similar to the iOS UIScrollView. ScrollBarView - display a 1-character scrollbar, either horizontal or vertical. StatusBar - A View that snaps to the bottom of a Toplevel displaying set of status items. Includes support for global app keyboard shortcuts. TableView - A View for tabular data based on a System.Data.DataTable. TimeField & DateField - Enables structured editing of dates and times. TextField - Provides a single-line text entry. TextValidateField - Text field that validates input through a ITextValidateProvider. TextView - A multi-line text editing View supporting word-wrap, auto-complete, context menus, undo/redo, and clipboard operations, TopLevel - The base class for modal/pop-up Windows. TreeView - A hierarchical tree view with expandable branches. Branch objects are dynamically determined when expanded using a user defined ITreeBuilder. View - The base class for all views on the screen and represents a visible element that can render itself and contains zero or more nested views. Window - A Toplevel view that draws a border around its Frame with a title at the top. Wizard - Provides navigation and a user interface to collect related data across multiple steps." - }, - "index.html": { - "href": "index.html", - "title": "Terminal.Gui - Cross Platform Terminal UI toolkit for .NET", - "keywords": "Terminal.Gui - Cross Platform Terminal UI toolkit for .NET A toolkit for building rich console apps for .NET, .NET Core, and Mono that works on Windows, the Mac, and Linux/Unix. Terminal.Gui Project on GitHub Terminal.Gui API Documentation API Reference Views and controls built into the Terminal.Gui library Terminal.Gui API Overview Keyboard Event Processing Event Processing and the Application Main Loop Cross-platform Driver Model TableView Deep Dive TreeView Deep Dive UI Catalog UI Catalog is a comprehensive sample library for Terminal.Gui. It provides a simple UI for adding to the catalog of scenarios. UI Catalog API Reference UI Catalog Source" - }, - "README.html": { - "href": "README.html", - "title": "To Generate the Docs", - "keywords": "This folder generates the API docs for Terminal.Gui. The API documentation is generated using the DocFX tool . The output of docfx gets put into the ./docs folder which is then checked in. The ./docs folder is then picked up by Github Pages and published to Miguel's Github Pages ( https://migueldeicaza.github.io/gui.cs/ ). To Generate the Docs Install DotFX https://dotnet.github.io/docfx/tutorial/docfx_getting_started.html Change to the ./docfx folder and run ./build.ps1 Browse to http://localhost:8080 and verify everything looks good. Hit ctrl-c to stop the script. If docfx fails with a Stackoverflow error. Just run it again. And again. Sometimes it takes a few times. If that doesn't work, create a fresh clone or delete the docfx/api , docfx/obj , and docs/ folders and run the steps above again." - } -} \ No newline at end of file diff --git a/docs/logo.svg b/docs/logo.svg deleted file mode 100644 index ccb2d7bc93..0000000000 --- a/docs/logo.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - -Created by Docfx - - - - - - - diff --git a/docs/manifest.json b/docs/manifest.json deleted file mode 100644 index 5d71915e8e..0000000000 --- a/docs/manifest.json +++ /dev/null @@ -1,3319 +0,0 @@ -{ - "homepages": [], - "source_base_path": "C:/Users/charlie/s/gui.cs/docfx", - "xrefmap": "xrefmap.yml", - "files": [ - { - "type": "Resource", - "output": { - "resource": { - "relative_path": "index.json" - } - }, - "is_incremental": false - }, - { - "type": "Conceptual", - "source_relative_path": "README.md", - "output": { - ".html": { - "relative_path": "README.html", - "hash": "GIKYAqx7tzRbzIzEtR1/HSUxPXpOv2WxX1IR3l8DF9Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html", - "hash": "P1BTuaTb+4c2dyXqRAMT16RarSPDD9+X1BE+ttQ+t+U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Application.RunState.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Application.RunState.html", - "hash": "QrsjclhV3RTDAkBdcGj4B9dZALHs98e080Q2fJlXOB8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Application.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Application.html", - "hash": "tpsM3liCj7NZ8RVUxpSHmunoGCMS6n3qVF0PH/eL3TQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Attribute.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Attribute.html", - "hash": "1AQ8kW9xUuxIItROqcbXgIj0p9pS3qeOPmUNl/D7KvM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Autocomplete.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Autocomplete.html", - "hash": "9y8dPD0xgvNlixWKdHHPsbkUTurZR4oDN9LQ/v9djj8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html", - "hash": "hGc138LrZfm3icEpjH1kNNuZjm1Hm/U7IcI13n5MYsY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Border.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Border.html", - "hash": "+/KD1X6USPMc8PY2jdJBh5+2pN9mVdiNH4cIFltzWY8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.BorderStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.BorderStyle.html", - "hash": "G8hFR0RUFgh3OAtMo10CeVUylw9qhqAzNX9o+/398Is=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Button.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Button.html", - "hash": "iENEShpHcG5QRVu9+QVoiSUM7yWCzKtrBNyhW3SgsjE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.CheckBox.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.CheckBox.html", - "hash": "UEtBs6gvhNToBQQJk/zL2yPGDJpFUYDvlB7/g9rDwBE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Clipboard.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Clipboard.html", - "hash": "0NvIOK3A156d5Lcy2ageJu65aLfZxNKNMPWawgIyre8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ClipboardBase.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ClipboardBase.html", - "hash": "2DeMvYCwn9pg1MNy9K4d7GsQ1mQ2R1FRnRSPs5uwzzw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Color.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Color.html", - "hash": "kIWGStpa3rbskf0YaAdxJcAx55nCXyKuuYh7szPRqE8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ColorPicker.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ColorPicker.html", - "hash": "gb0GLaJmXxVuD3WqpWZFK0wOSHc1HJ3CeFNmMDeY8Ko=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ColorScheme.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ColorScheme.html", - "hash": "4IBYCq5482P1krkyhX3T7S2A5MFjGqudichld3RNMOk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Colors.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Colors.html", - "hash": "fR7wv63YvNIQU/E25KcmyegEuBwBHvanoFnuv7+b4eI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ComboBox.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ComboBox.html", - "hash": "alNhcfmDw9rBhTsg+CpTg9Z2bEMv+x0gRBykf/m9B+4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Command.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Command.html", - "hash": "gSAqK/2LxCkgiX5IQVAM2Rkz8JYvsN4TFY4KUChyttY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html", - "hash": "JZMnm+fRHNb0lTFGlyWuqrAUHgevCxupZgJzbCNi8ew=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html", - "hash": "3oAa1r3oMrY3cvHBACsv56P/leUbkqiNwRxR+sutz3Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ContextMenu.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ContextMenu.html", - "hash": "vGucL20EMaOMSyE3Zdg2KQm/uVHpsOsXfVt3O07BJIE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.CursorVisibility.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.CursorVisibility.html", - "hash": "FzknzvDcAbf6LFxKpppMIxxCOE5q5aoXCl0Rxk/M0FU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.DateField.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.DateField.html", - "hash": "+IrqG635wS3+onPiVr8KcX9BaZXsJ/gUKeska+YxfLc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html", - "hash": "QwtBrAv4dRpW2K+qj96q4JAcARgfjBzAfZhwjlB8JY4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html", - "hash": "c+ZhrJ+SiE/0rWJ3ncjBHaGyzMMyNn8zLEC0AGDmCtQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Dialog.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Dialog.html", - "hash": "hXi7//0HZivxWrPKLcHjMDKOcjAxpwyXP4Y5KKzYwxU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Dim.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Dim.html", - "hash": "1fMzS00wHze+gPXTD72+wXAal4aopAI9cYg6ANYlG90=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html", - "hash": "OY3aNf5JdigAUag1wEBSK+xSVUivJjELorG7tc5kxok=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.FakeConsole.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.FakeConsole.html", - "hash": "yOTYmtyNCKqXSS3A+K+0XHHRgVmuOiKRkr+naPFR+18=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.FakeDriver.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.FakeDriver.html", - "hash": "67qPeU8EQQqL27uvSuGSQO9Lgj1BxE1nxFr8rGzlvZ0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.FakeMainLoop.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html", - "hash": "1Rr0V68hhPVHwUNjpD7OrjislZA+OOdWMseaRglRjgo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.FileDialog.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.FileDialog.html", - "hash": "/dETamxlsL4SJgu63n1GJwQEEo8y7QzBToML4RNC+BI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.FrameView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.FrameView.html", - "hash": "UlYpyVQezZr8tgiaCMyBdsryFCkjv6AMn8GIu0AYUAg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.GraphView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.GraphView.html", - "hash": "Nv+gYkgJ+QiYWI2pV3HXgfZsb1S+vGp9oCtTMU4x9Gk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.Axis.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html", - "hash": "QLPxvNgvk9OmEEpXgJ1edlpH5ZtQgsCbflZl77Kdejg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html", - "hash": "2g5A8JEvHrB4ZhTZHTBY5dsgkH/uaove+Ab+qgIFeE4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html", - "hash": "c3bthfii0D3558Rbhs03ar5yiQzl94TL61dmIFm/BCk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html", - "hash": "63aj7hAuFw6MwMSfJJ79slM1etmEVs8tQ5mgp0cvI44=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html", - "hash": "Wr7CSPxinkDbWv/zJ6e/uJUvXcoTnPc6C2toU4C1rfg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html", - "hash": "Vob5fZ9uQq5Xs8lQYIwg6g2dMcier+m0WS4qBtafQEs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html", - "hash": "EjDtZYVF0h/dpMAi67dQXiGjYYzcHNXecu7vWFOVuPY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html", - "hash": "BBGWXmL6bnJtkePlXQ0k7n8unkJLjv49XZijolNLcek=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html", - "hash": "WBtLTQmPB1kL95jHVeyFEsm/Q+zYZ3f/xyBP8mAb/SM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html", - "hash": "3bDJYkrfv6T+nHonUjHCjxwad0p8llPggzs55G1cDx8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html", - "hash": "ekvNBg1f8HKIfmg8oHhNNuMkcyhIfmQ9DGU2xyDFveo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html", - "hash": "i1gSYyxKWBv3DskuQuEBoLU3Xa31TwetSqwbjJ3iMFk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html", - "hash": "l6ivdVKv0fXc/v3wgPxMTee/rMBJzKXnK/YTGDiZUvU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html", - "hash": "nyneWY6rQxfGZ+76hPTwJgkIG63jwwTLwaTLH8Bnl+Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html", - "hash": "2+oLmvzY+LXQe/YZ8eXITuE9dYKhqk2hfEBInZYpr9I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html", - "hash": "F4F9Pix9gMQErrmyOa4P2dENrEJkJRYuMIjI9no6kW4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html", - "hash": "7+h5WXD/mfzwvc5aKpJHmEgMFKRYreFykk4FGIDf65c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.html", - "hash": "ZdduyNLFHcGEvNbEd3DTgQw2jCxeNxSR7cy2UST6iAw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html", - "hash": "Ergwk+UZIcu7ZgnQjKB/21Dg/wquOyieMBW97TPdc0I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.HexView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.HexView.html", - "hash": "AykXx1GjMJB/bUEOxYL9fHJ1joxVWE84jRlEyPTV0oo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.IAutocomplete.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.IAutocomplete.html", - "hash": "njb7mTbSrzUAdsJkJrBA3Md7yUx5zDyvfEDslsGBz48=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.IClipboard.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.IClipboard.html", - "hash": "fRUqs1dzWHV7piluFMPfucCwjlxHyxpH0l2Z+QRgrjs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.IListDataSource.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.IListDataSource.html", - "hash": "f7iu2+9ldvpCweggEzwhajsn7zqAT1cU9KJpItxTaHw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html", - "hash": "Xjx2R9oWG46oy0nquKZ3No2W+GmFI5bi7NlGF2wvl1U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ITreeView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ITreeView.html", - "hash": "higDubE0vb9cXKykZs7WCAta0vXuHv3KtD1WFJoX0sw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Key.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Key.html", - "hash": "0+AvMSvNQzgEjUY9kJPRNLnCIeTVaZFyU1IPvS+rnss=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.KeyEvent.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.KeyEvent.html", - "hash": "GQpj9tkUD3TFUnwGZBtxXVQpg6zxFOvzzQ2vsqLuxfU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.KeyModifiers.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.KeyModifiers.html", - "hash": "AaQh6xuPe8KEmtRE0HW4S8qt0j77sZKKDMZgkTDYDZY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Label.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Label.html", - "hash": "1DqrE4H18VroqjJzWH1NZ+VPrxJt3J03UgafsrvRUPU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.LayoutStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.LayoutStyle.html", - "hash": "7YMp/TZE6Lmlb86tgoxS2MWv+oHG6i7++JMpUAN4nuM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.LineView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.LineView.html", - "hash": "uZfyTXcszrZNeMIWOABkNkOwZGJ7qH8xYMfOEm1fTVM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ListView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ListView.html", - "hash": "bRFtsQsRUcCAa2zV/NioigosoeJt7iwhvLm3jZzw0TA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html", - "hash": "KCBNRVr1e+3yArKJ+APMWwR7/LADHgHbP9pr7r1/GsY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html", - "hash": "iw1WEgrXWxNLcIUp1He480d9kew6V6Wye31Eb6GsxNY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ListWrapper.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ListWrapper.html", - "hash": "2Lk4uEaRKES8ZfJ2t2/XEFppZCYcv5hlIWwJ/8DLvLY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html", - "hash": "LH4gp2IkDOYWdMO6zydZp8J83X/+10gNipmaT1E+xPs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MainLoop.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MainLoop.html", - "hash": "BXDbwqd1wLS1fq/5g3J+k8sqWVrEpKuF6Y2L4nh8608=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MenuBar.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MenuBar.html", - "hash": "fBsE3Ar1019Ehjc0oKRsG+//ntYO5PCYl8KG5XX3YXs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MenuBarItem.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MenuBarItem.html", - "hash": "Lj6a2VoIidtlWRkJ+5cNVQknySVvZuy6zUVXZ8tSxDo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html", - "hash": "BvJs4cE/7AAu3M0jhGaRh+mhV6K3hgVN939CmSzdnVw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MenuItem.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MenuItem.html", - "hash": "11qaKEbNkfFvViX4XbWjrAbB5Q3QOphG6xyNcwtWMVQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html", - "hash": "NWi82fev8Zfnafn2Vz94wGkDzavgDK2rvtWan/603hI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html", - "hash": "ZjXxmUB0EdDet3wirNCh91s8ugDQWmgrYNS9uIrS0oU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MessageBox.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MessageBox.html", - "hash": "z+JpZ0l6ZFbB4nsNhvvOIb8ld3LZsub/xB2hqhaBKb8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MouseEvent.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MouseEvent.html", - "hash": "n0EDtHQdS9Dq9Zko/wS1bCslIIlGBT+DEYxVEsqeoNc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.MouseFlags.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.MouseFlags.html", - "hash": "WuXEGalpo2FxLeXErVqy9lh2o7KBZJFwen0k1Ug34CQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html", - "hash": "Vr5wxA41HeQORCFJW1/YJmphaovfIXQ0iW1nDijdN8E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.OpenDialog.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.OpenDialog.html", - "hash": "Zfb4T2cMawVXNN+OUGYR5DGZQt93nfa54Q5fks6Q+ns=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.PanelView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.PanelView.html", - "hash": "MavGVbXPEV1SaTn0ZHvNAezO+3wsc4g3ztcsJjI7xdA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Point.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Point.html", - "hash": "pkVgLouuytYl/U9mFUNifC0AcrN3RDPPF7MHmBIVlYM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.PointF.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.PointF.html", - "hash": "QXMej56W/cwaeUdH6RIfFlh9uWBebQXBSRuaFeGu1kA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Pos.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Pos.html", - "hash": "bECzrJsFq/F1lX9+5hkO/aMkSDsLEG9TMv8BtF0ROjQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBar.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBar.html", - "hash": "T2STUcR7x9zewPIJBCpbP5yR5Rdpsj0nOXb+StpdmYs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html", - "hash": "Ub44I1SiPF0HwLOf/MuZrjXuQNxWEIbcZ5YyKGDYJbQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html", - "hash": "4r4BVbBuJSpsgauNCVU0NlG0tGItNH7g6tmWCksKhAM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.RadioGroup.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.RadioGroup.html", - "hash": "j7CWrmDo1z0hHBAkL9xbZhJN+4UJuaUX0Rl03BCtbjk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Rect.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Rect.html", - "hash": "vuJPMjmYtHd7tBSrtoHSbFjpwayLraZ6vAu2GzSivP0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.RectangleF.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.RectangleF.html", - "hash": "nDFW7wO0Ztu8TjwG8aSp9UTOdv8YiPrcqxr2PomGR1E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Responder.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Responder.html", - "hash": "7p89VkswGp0ql74YnaVkbtUZBnyBHUeGQ4sxOP0brpQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.SaveDialog.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.SaveDialog.html", - "hash": "LQxmBJ0zTGUQW+yYnG4kMomaj3RC0zvN7cRLhVALSYc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ScrollBarView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ScrollBarView.html", - "hash": "0eC9XagI9ZdR8VVl49GWUMUfPB22h7ex4VsmFEh4XK8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ScrollView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ScrollView.html", - "hash": "K5v5qEGYnOt0lWOScvyyavYyIUfMEMaOdlzbnRJxJ+U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html", - "hash": "wXdP4G5F/ng0jEqkwIvQRatYfAgO0qPC2lIK1vDNgIk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ShortcutHelper.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html", - "hash": "DKyTDIL15/Ha0S6add1yckcW4qj67cvvREqltLD9vyM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Size.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Size.html", - "hash": "XHXsCVz7SdTUxu3rWrGVNW5+wUB0rNl2zvWftPS3qSI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.SizeF.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.SizeF.html", - "hash": "W9Vm+ge04KNONOAuhiMzXrPGsOubCEsyaM8HV6fMvZk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.StackExtensions.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.StackExtensions.html", - "hash": "AC9R1A9AcP+1/2FJENuZB/B/J2D+KCq1nb99SwEDYAU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.StatusBar.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.StatusBar.html", - "hash": "k3upKQ4JPeeHDle7Pl2AxHahrKOrW4HThucJ8vqZzU8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.StatusItem.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.StatusItem.html", - "hash": "iY6/Q2QbiIo2Zxgs8y1OtS+4Q79WCADSmNSUDNuXi3A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.Tab.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.Tab.html", - "hash": "2z7DHhrjpluchOxRtDcN58Y2Qnw+18WiCR8e35QO3Z4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html", - "hash": "5x08a8MFq6sVrAYiNZPqMFkcsWnWtS0izqj6EZAawlQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html", - "hash": "xerElX4d5mkHP6OVVJeGhDFJj05p9DRGu10Tr4kVH/s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.html", - "hash": "lzOgtERtc4BaMssGF1YXdRu8XcAPYR1uk4apChiB15I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html", - "hash": "edPCIktnHg35tSMyrEcYPvr+v91yUAAYZTHaL06vdEs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html", - "hash": "Fj8J1HgQljLOkyEGgj5hpKWkJ6hawHhB/opWTpN25WY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html", - "hash": "XdE1Pj6EXPybmmmQ4zq6ezujAK3MTC/rvkYQjK/sgGk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html", - "hash": "cEu/PKPu2nmPBRJRQrDkB1EOtdRflw6aT/weiS84HHQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html", - "hash": "v5IOMiz5QNIqbXP97OvmZrWY2PaOxY/D+wVQq6rp7rU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html", - "hash": "kNHTS/MsypY5wu4QOKzJpC5hk7vGaCBm/HJEmVcQHXk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html", - "hash": "j0NElsevmaqqa3JghuX+61sgPGW1rtv4qIq1e9NJYhA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html", - "hash": "AWcTQAGlmxVXGMrRkfEp9/nDScl99lx0I2DS70A/jfM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html", - "hash": "0Vz2yoiRC8hQtdsE0Irr4mSzBG1wtqpqwpzsVCCsY/Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.html", - "hash": "4T4Q1NiBo8TfbRKWImA5NaA5vWYWNXCwog8QwuVQLfM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextAlignment.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextAlignment.html", - "hash": "qo9BwevQL7fumLWmx7pNh9Lk7bcqa9GR04Df/K4oe/Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html", - "hash": "XqD5LM4iQ4FTRr6o2Ci+RhCalP9aqClirMPGz44lMUc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextDirection.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextDirection.html", - "hash": "EPsu/BmNWPohqn8qv2+Z4dp7s75xJ4Uj66LBDi9oD2Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextField.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextField.html", - "hash": "be4pef45yQKR3n0z+WwucVHY4CFIstuRnk/bhjk078k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html", - "hash": "gAm217T7k5Vf7PXgULa3UrOIoHW5opaTubnlPIW9ShY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextFormatter.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextFormatter.html", - "hash": "mHsOyQCLekrfHUFuZ0yGWDIKblLR7TK42A4BatBfXNU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateField.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateField.html", - "hash": "b4saQtjf2w2J/q5j8ykLZyCj2VCtC+GrexilSdSuzEY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html", - "hash": "shyU69zDuu1APNQTkUDwCu7yrlv9i7GN9XH8VtBACtw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html", - "hash": "zRQpOMnHmyCZMH2JvpcK5Fn/rJouDZLuxWNHVV7d7B0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html", - "hash": "OdsTjHyp6FayRp6Wn/sT0TZ6+VRSy8B0DYQjev2emOs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html", - "hash": "HR1jZ3WMoici9QP3+kCp2lKMLU7qPz+gtUgmTiPgs/4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextView.html", - "hash": "ndNOiGaWqDqQC8nTaZHD6fNhk2T67ZXC4mRSum0DkqI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html", - "hash": "ph2DH4L8TgVbX3aX5W0Nl1EZxFCfw5Jk0uRJyC4wGow=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Thickness.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Thickness.html", - "hash": "9mLzJsMhIJOhK6sZXN06dqSfTi161GmTBYYGsJpT5sY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TimeField.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TimeField.html", - "hash": "ciSPMl3gIm9i54MmKKF/GubrYQ2796D86+nW0cBp2fQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Toplevel.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Toplevel.html", - "hash": "fq9g58f0BLlz+KvcscMKDslKJCCslKxVlDPza8AG2rY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html", - "hash": "B4r+ddzzqpWAfD0x/UZH6lfwGqmIFhtdGdlid9zHMM0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelComparer.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html", - "hash": "6x8/z0pP3uKoSoBoYejiTYKPHGNigV0Q2CgNc6d+1KU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html", - "hash": "HyU5ljUQ0VKN2U2PeYrrB6+V57u6VZ1M6n7lSdB1ojE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TreeView-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TreeView-1.html", - "hash": "a8mn75xvlg7p4LM6U/H17ufaumAOKYi21O4+9TMFrtQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.TreeView.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.TreeView.html", - "hash": "UcW2MhHVWsSqxeKiOEgHfOPPoGdA6r7bJObPkd7TLsc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html", - "hash": "9D50VE7VrYi+ZtobYRoUYZZT2qF2x0SkGv3i8Kwu9RY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html", - "hash": "VOprw5XLEefy0lZWYJ7r+AG/d7/Fo63JPmHUiGUmtDc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html", - "hash": "Qg581B4LC4F4m5X7rT3sGoI3Xs7n0KAawx0eHfokFSI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html", - "hash": "cs/KswXUF+yyo7AHZw71M4pyX+0PQBcZ3yIbr+R4qL8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html", - "hash": "TuFjTWcXIx2Bi13G7kreaqvrRwNlQ8gFneniCUx7+pA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html", - "hash": "zEz2Kb/43vVwT+0x/8CMDXMknIHGkgSRtRp3YAHTAbk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html", - "hash": "vSwgUr/vmrWn5MGJVOK4SZj5LXjAYu8vn4cWX+8MrE4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html", - "hash": "tJCtdDywpZHXevAq5UYhJLAs0wFxnzSgthUEf2NSlAU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html", - "hash": "sqUfPEO2ZD6d+kM2CXqsEqHsZwD9WsmfdHpjxJj5bFo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html", - "hash": "Dw+jtsNkSsTdeauyWqFRCEwes2pwGJRolCCdlxQBwBI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.html", - "hash": "l9yLiQe13a/MsqKVJNj6O67pKpi+SYPaZSFL7h7GzzY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html", - "hash": "oerbsueLGhRvdukbvNu6o4gBLR9XTbzRFdZdZcrrrOw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html", - "hash": "pKB0WmRBKvK5XgsS8ohDaK8AcPWjjyt/6a2lzclbYjY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html", - "hash": "JB4cgaQ5TKMwPNmdQu6TMGbUeQDeqMpF87HdyBV93fU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html", - "hash": "zgugVFESgxSsmrPMzeFz0QF4cgYSyG5ghgdCGlN4988=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html", - "hash": "XV2+e+QA9UwDNslwPXKd9ekXZd8EyB2MlSO7IsRf1f8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.View.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.View.html", - "hash": "10J1OJEtbMYuI36sQR44j93cxTocZCYsMBFP+3nXKho=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html", - "hash": "osmXvjrRpYLBTqOLOPJl1/fuogLPHS3tyven31s5gSE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Window.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Window.html", - "hash": "YJQXkvygwKsSxZJmShvNMIYdHzvoR2LP6IPcf5id0VU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html", - "hash": "58PSYvSleW0WsouHwsBq+XCMVQNXLg+2DNbZ2wZyXck=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html", - "hash": "h82WpUaStSU1qAWFNk3Yp+6CzsOW07Acw8TPRCMRR9k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html", - "hash": "zd2KEqSWYU1Dy9QcMVgnuYqiwLaJ+sii3Rbtove6NZQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html", - "hash": "Ep9BL7qdp53v+8a7PjUxVRwlW9dDIM+2HdPSrE1NY0g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.Wizard.html", - "hash": "zttNFrLH/Q0ic08KMBc5tR19LtncgIc0uyODsRqo13E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Terminal.Gui.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Terminal.Gui.html", - "hash": "IZRF5r3g0u6g0inMHXsfy7/7R/UN6bRkzOzn/xwc00k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.Event.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.Event.html", - "hash": "vy01KK2WH+ItyHKAwmHB/7ip1h2VwcNB70Wntss2srg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html", - "hash": "+GyN3Ed4Em6/aCkKtDu0WQ0fcILrfGyz+QtydmavWN4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.Window.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.Window.html", - "hash": "805/qQLMFf2urtJb9iSihkDiaYCTjiChKnEOYtLTY8I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.html", - "hash": "unRrKHQh/U8wsobiz0KPsItcZ1UzN1bnjsH9BAJy/1A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Terminal.Gui/Unix.Terminal.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/Unix.Terminal.html", - "hash": "qx8RWbh5qpK80751tdshT1/lJnAu/y7jlH2jp/XI5HE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "api/Terminal.Gui/toc.yml", - "output": { - ".html": { - "relative_path": "api/Terminal.Gui/toc.html", - "hash": "C9LIejE9w2vb2ngLZttGS+be8Dm/NQJrm3FzIGM4F7A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.NumberToWords.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.NumberToWords.html", - "hash": "NBJ3knDxyxIFB2hqa7DSNGG/zDlZBFq7UVoBlJmdczw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenario.ScenarioCategory.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenario.ScenarioCategory.html", - "hash": "C6Iz35zH0kILkfoXJ24v216rgpjIzZxqCoYZdrnIz1w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenario.ScenarioMetadata.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html", - "hash": "GHIcm+iVrDdb2uN3QR+SqrGFWQVaicFTk71E1VpOnKI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenario.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenario.html", - "hash": "5Ctl8QkgNUm17CB+8AhyoiuQQbyTWHcH5sWAswPoneY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.AllViewsTester.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.AllViewsTester.html", - "hash": "2DfFd2TJIIMKXUt5455XfpC5lOCFLtk16jAbMCaBiZQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html", - "hash": "k+CYwokqjxw1+RZRY2xyHacia1mjqFvMDNAE6K5gczs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html", - "hash": "exuKhmmqia++WlEzO+N8U3ezClc0B9nzcBedODb0FEE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.BasicColors.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.BasicColors.html", - "hash": "oENrEGYI8hWNal6Ik99rOM2acSW0jnhmx7oi4/QFiYw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Borders.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Borders.html", - "hash": "LTgYKUfS9A2N/p5JFPM8svmDsy9NbGz4vwxEoJ1Tnng=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.BordersComparisons.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.BordersComparisons.html", - "hash": "hkvO6pzZzP/iHyy4G8nVpkkxyNHgjjG4FLV/jksev6o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html", - "hash": "FroABhpvFi3SytzzbtaJGrDVgK+DOtj/5MzDlFo0rTg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html", - "hash": "dAYHIEQAHjrTS6UobZhOkbWHnPXAca2B7uoy0fJ3orQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnWindow.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html", - "hash": "LyhfuNpChsriexu+tnKogeyMiDhfQZnJiKbBefM/r9Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Buttons.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Buttons.html", - "hash": "cqVocMwQLsNNdkjde0hokpyOnJNEeEZ56Q07TGB1bqk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.CharacterMap.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.CharacterMap.html", - "hash": "8yJ5BIaFHHLR7mbSvxqcMcLsPv8HH9IXAfdUUW33h/4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ClassExplorer.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ClassExplorer.html", - "hash": "qqmud8c3RianK7WHrSRdOhH6NREWImaG5mDvHZT2Ofs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Clipping.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Clipping.html", - "hash": "36+2NyxHGudboC/v806xa0mun4s2ApB1pZlUn03XbcE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ColorPickers.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ColorPickers.html", - "hash": "6gvZRRylZImLQ65UaNG8Poty2vdJJOn2xviwD9qWK88=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html", - "hash": "sQQOVMMCOTQwUND4FsJtg7fbVmBYfLEKmn37DbLkO60=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ComputedLayout.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ComputedLayout.html", - "hash": "uUZXV7Woq0bi7rDOc0A2+7uUiBVFCV3r5CfOy1/ebkQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ContextMenus.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ContextMenus.html", - "hash": "+Y11y7kdQFOjVqzZq4G73mZVRJVVF1Fy+hqzuf99SQk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.CsvEditor.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.CsvEditor.html", - "hash": "ieVmzw3WeC6fJ/YYZQI+T9q0yamjOPNuoWIJ1EcGFkQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Dialogs.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Dialogs.html", - "hash": "doifTpizN8+i/5wzQIkx/9i1FGKWNll7k7et3Gh561g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html", - "hash": "gFWGsyuV/Qi/eRF52N1tXT3bJZiOavQtyHYpjwJCL9s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html", - "hash": "VGIBtGRUN6onoPCFiXZivn+AGQYwSa26VL14GTEog6o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html", - "hash": "m95RbHAD2KhyXDRD+v5A8l+/BEdCcO/t+a0+DVNvkbI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html", - "hash": "eeSvaBEfyKXmqVzxKpmuQ2ZrfzVWTOsur3vjIM0OKYE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html", - "hash": "H6BRsdqkSmhX1c7Ngmo86zOvzu3i0xrBSc/rLSz242s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html", - "hash": "5T3z3b6e7hStZuwiYT4/4L3N01jbQhCrzkVrWF9I0Zc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html", - "hash": "28kioV/AMyzW2nheRnYKLoIe+uYkd+4JftKz6CV1gwk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html", - "hash": "vzSXJwoEj4C3oSZf+ofqPSRL5USAl79pTMWzTSVRpYs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html", - "hash": "otU+Cm66t9DSYzeYBZYXexV1dTTjY1K6c/8Q6iZ6rD0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html", - "hash": "Y3hUp1NuLizr2dp6IZidHea3IUh41Wkgh0rEy8wRiio=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html", - "hash": "FQjns3Zt945HySnQmXtE8854F4rPaEIGoNo6bXOurng=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html", - "hash": "RC4ER4EZj6xQJD93phr1+3ub02jf0uY7shUK0geMDmU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html", - "hash": "/S4ieHPZdgV9TDnaSIWw7Yavzk1XL2+4/JKi/1Jxtzc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html", - "hash": "5J1SWvjDU3O+wZn4AYqcQFTSBX7KxnWqm4EQytmwr78=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html", - "hash": "Toq0VNbWEo8Z3+qmqCbenc/rJ9xjxAdSpfzyHcvx/8Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html", - "hash": "GQdiItTkyOko4MubQeMQX2VCvNqR9bBLUoJk1ZNdn0M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html", - "hash": "ueRU18vM+dQHWgaOvV6Inn961hkfKnLU7x+S3wPCry8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html", - "hash": "BiHpAKHTi25qMSbmJT7U2fZG1iHKh/WrriA/QEPJSBc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html", - "hash": "05lgZnU0PowJaVsHml6gvtmYKOTM+ytv/JKDROio1F4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html", - "hash": "uqsE+4QjVUqr0xrDZdrbCHQbam/WHIkXLXOiki7e7HM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Editor.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Editor.html", - "hash": "+oWaLvYF0vdOPfSx3RN4FUTpfBgggh5lJwhenz2vtxY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.GraphViewExample.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.GraphViewExample.html", - "hash": "ht5dF4tVT1nhR+RQ+HQaFLxulDhmB2porc8eZc8rWdA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.HexEditor.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.HexEditor.html", - "hash": "M6wlUPVc79NkrODfvcO53H83bdSNpigfldqpgevENcI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.InteractiveTree.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.InteractiveTree.html", - "hash": "vDz9vrEqJINlSaI4CE17XhbXJAHTNwZ5+tz1b7kjFpM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.InvertColors.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.InvertColors.html", - "hash": "lujQz9FS5/guFNzffpVe3lmzmMUpKoULXTslnzhSKCs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Keys.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Keys.html", - "hash": "x3EASaxn/jetAPkJlwL4M4P7ygtDpblJlcJcRzxpQlw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html", - "hash": "oPDG16P8ih35lHMpcwV3YizWZZX76BFvR6zLuN8Rg0E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.LineViewExample.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.LineViewExample.html", - "hash": "7q86CETVFhkYg9PhP9GHSsa1pqzcfyMez3cjPGj/qLk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html", - "hash": "k1Z49I5ALCOgKMZOi0g1KWe72CixZcZ9JaGMXkW/o1M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ListsAndCombos.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html", - "hash": "Z6x3hBXjk9BwiwiUG8Gz8v0PTCJWysllQn/gOob/2wo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.MessageBoxes.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.MessageBoxes.html", - "hash": "BDKcv9XgJH3jPhySYNXFei2VzBZZX7CaQva1kfVgs2c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Mouse.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Mouse.html", - "hash": "nl9gd9pXMd8rGBIh9rn4okLQ1H99uFW0tpq5WmXrESY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.MultiColouredTable.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html", - "hash": "hiphIz/oVDANXyLzBbhlpSEwxxhPWu2n5Nol1amqqVA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.MyScenario.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.MyScenario.html", - "hash": "0+5OYfyUO2/nghpVNFfAIPAhE5ud1ouduq2kKPcbOUo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Notepad.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Notepad.html", - "hash": "3xEcZLwOzJYhEYBUsdQeT/2wQdL7OFkwYTHY60hmbYU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Progress.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Progress.html", - "hash": "19akxj57yX3NAop1imhm5ZAaOuzBxQhKKxhQvBpX48Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html", - "hash": "w6T5dMIWPPcxRuIOTys1GYxm7ZlZLWZXRiNpYSdIiA8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html", - "hash": "/FhLcBQfOhSXzmD/gzCDd1UxHHB4HvuTbKsylC9l9Iw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Scrolling.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Scrolling.html", - "hash": "diAcbIyK1TGOdV+5di/qW20vZ8T6X+6hHj6GpAMSqdY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.SendKeys.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.SendKeys.html", - "hash": "WFiF2kAlQwHkFHKlCgaAWypxhxLctEO2xP70PU8bshw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html", - "hash": "DVzA7VCcomJ1NsgqAspoHNqXAUrnr912gsZJ+DUUSiw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html", - "hash": "hxXbeUi8i4xoiOww/Q5Tn/QBgpzFDh0es64NV1AavCM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html", - "hash": "zLsA9SyT+HMj2j/EEhAyUP/alyi/8R7eIgTSPdfN1Zw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html", - "hash": "L9AGFLcny8PNkno5en82ybMQf6mRir9JG58S7NvlDN4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TabViewExample.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TabViewExample.html", - "hash": "RdWdiQFjcG2/OYu5ngCIT93nRpl2vV7yOVYmcpKtT24=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TableEditor.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TableEditor.html", - "hash": "+O8TsOrXcRfrfV4UQpBh07+SRzLEeDQQQqGFGC4oajM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Text.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Text.html", - "hash": "YVP8NWoE6+JB4a3wTXwG2NskPZK+WZpOsM3RMWeOoq4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TextAlignments.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TextAlignments.html", - "hash": "75Jis5Gvb+Lr60aLiiypGjdBWXfcxuIFSPEXHA0wN0M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html", - "hash": "08g2ngcejw4ZD6XN+/pmiZO59pT4ElFRFZ6e6cEUIeU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html", - "hash": "Fz/ORQX1RCU5vmyn+T6vEzeUVHmDxsGhPnTYYVvWPM4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html", - "hash": "mw12JjH+Kymwp8VuRfiR3OXPrCjtwfcyMiOYualZ8lE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Threading.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Threading.html", - "hash": "8UvMJz4BNmhwKzSs2MUK3uIa01EUVqm/pWndyRQjtJg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TimeAndDate.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TimeAndDate.html", - "hash": "pBL/UxEq+tmyltFB/m16ps3ENqY322dMaQc0sdWSdHc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TreeUseCases.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TreeUseCases.html", - "hash": "t+1Yg0OvXdm0F2H7miY3XWpkJA0Of3fWneAGCIHeGy8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html", - "hash": "s+pSXZoUWFH4sODtQTGMRc+F1NI3EU3ADK4P6WLf0lk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html", - "hash": "CRe2M+BXNQzB/FaArsHcUBoyXLfUllbepvHiL6neGek=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html", - "hash": "gIi8XioadAjp16vyrTVSghMDWj27NordMDJCJ9Bcq0k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.WizardAsView.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.WizardAsView.html", - "hash": "j6VldsRspgnBMU92x2VvCVGiH3Hpdpd78CCGlwadMxo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.Wizards.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.Wizards.html", - "hash": "s7Am4vbODhFyOcrNVfBoHGDvSCNWyZI/NYantJroUIw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.Scenarios.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.Scenarios.html", - "hash": "Zh5WyaxzvhP3u//StX+1BSbSr5t/4bTYmS2yok6E8Bk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.UICatalogApp.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.UICatalogApp.html", - "hash": "eox01NzEbOQWKirzQHGzAxLB26c9PPmJMjLI6CszjIA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/UICatalog/UICatalog.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/UICatalog.html", - "hash": "6A0h63XpNjZmSfjjhDt8wY06GlquCCs6JcfZMoYDmYs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "api/UICatalog/toc.yml", - "output": { - ".html": { - "relative_path": "api/UICatalog/toc.html", - "hash": "dXKBcirqrqzDEYkzxtqug3fzSt7fu6U/UNxV6+KRYxc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/drivers.md", - "output": { - ".html": { - "relative_path": "articles/drivers.html", - "hash": "YPNV+QX6tyxcqJQBPdn2NE8IQeDVJ8bnRLnhuL/bOTA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/index.md", - "output": { - ".html": { - "relative_path": "articles/index.html", - "hash": "uibTHfL6f4K7rlZ4kQhM07ZGxMXr0gRaHi44GrPbM/M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/keyboard.md", - "output": { - ".html": { - "relative_path": "articles/keyboard.html", - "hash": "9h1p2vvmXKUKki6MFKnR5IVB/kPJoqdt0FBPz6h9bsk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/mainloop.md", - "output": { - ".html": { - "relative_path": "articles/mainloop.html", - "hash": "vUku7MlOO3jS93Z+imnuhoM38A2aH0G/ZZIe228tk9c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/overview.md", - "output": { - ".html": { - "relative_path": "articles/overview.html", - "hash": "yWGJGM9pJqz5yEbJGq0wbO3jkwlkBDUCowe60//UdCU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/tableview.md", - "output": { - ".html": { - "relative_path": "articles/tableview.html", - "hash": "DgWgOzmmTT/P/HbmE6UBPfaQnNtxAOM3MQjLcNzbAOg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/treeview.md", - "output": { - ".html": { - "relative_path": "articles/treeview.html", - "hash": "hsA4H2pL4qBRNJDvkSNebplZNOqGxb8Z4XHztwwThnQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "articles/views.md", - "output": { - ".html": { - "relative_path": "articles/views.html", - "hash": "AS7tTdRkVIGcJfuXYHtsyolX2PANOXkeCf7dRhcbqKs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "images/logo.png", - "output": { - "resource": { - "relative_path": "images/logo.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "images/logo48.png", - "output": { - "resource": { - "relative_path": "images/logo48.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "images/sample.gif", - "output": { - "resource": { - "relative_path": "images/sample.gif" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "images/sample.png", - "output": { - "resource": { - "relative_path": "images/sample.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "images/wizard.gif", - "output": { - "resource": { - "relative_path": "images/wizard.gif" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "index.md", - "output": { - ".html": { - "relative_path": "index.html", - "hash": "hEPUfRD117vrTQP+fvyUQSmYbSCO3KRnB3aUCS4qZyI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "toc.yml", - "output": { - ".html": { - "relative_path": "toc.html", - "hash": "fo4MFxjm0/wuS5J8UWSHREcBqQEE37ys6ZXvrm8lwRE=" - } - }, - "is_incremental": false, - "version": "" - } - ], - "incremental_info": [ - { - "status": { - "can_incremental": false, - "details": "Disable incremental build by force rebuild option.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0, - "full_build_reason_code": "ForceRebuild" - }, - "processors": { - "ConceptualDocumentProcessor": { - "can_incremental": false, - "incrementalPhase": "build", - "total_file_count": 10, - "skipped_file_count": 0 - }, - "ManagedReferenceDocumentProcessor": { - "can_incremental": false, - "incrementalPhase": "build", - "total_file_count": 253, - "skipped_file_count": 0 - }, - "ResourceDocumentProcessor": { - "can_incremental": false, - "details": "Processor ResourceDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "TocDocumentProcessor": { - "can_incremental": false, - "details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0 - } - } - }, - { - "status": { - "can_incremental": false, - "details": "Cannot support incremental post processing, the reason is: should not trace intermediate info.", - "incrementalPhase": "postProcessing", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "processors": {} - } - ], - "version_info": {}, - "groups": [ - { - "xrefmap": "xrefmap.yml" - } - ] -} \ No newline at end of file diff --git a/docs/search-stopwords.json b/docs/search-stopwords.json deleted file mode 100644 index 0bdcc2c004..0000000000 --- a/docs/search-stopwords.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - "a", - "able", - "about", - "across", - "after", - "all", - "almost", - "also", - "am", - "among", - "an", - "and", - "any", - "are", - "as", - "at", - "be", - "because", - "been", - "but", - "by", - "can", - "cannot", - "could", - "dear", - "did", - "do", - "does", - "either", - "else", - "ever", - "every", - "for", - "from", - "get", - "got", - "had", - "has", - "have", - "he", - "her", - "hers", - "him", - "his", - "how", - "however", - "i", - "if", - "in", - "into", - "is", - "it", - "its", - "just", - "least", - "let", - "like", - "likely", - "may", - "me", - "might", - "most", - "must", - "my", - "neither", - "no", - "nor", - "not", - "of", - "off", - "often", - "on", - "only", - "or", - "other", - "our", - "own", - "rather", - "said", - "say", - "says", - "she", - "should", - "since", - "so", - "some", - "than", - "that", - "the", - "their", - "them", - "then", - "there", - "these", - "they", - "this", - "tis", - "to", - "too", - "twas", - "us", - "wants", - "was", - "we", - "were", - "what", - "when", - "where", - "which", - "while", - "who", - "whom", - "why", - "will", - "with", - "would", - "yet", - "you", - "your" -] diff --git a/docs/styles/docfx.css b/docs/styles/docfx.css deleted file mode 100644 index 64dcde3385..0000000000 --- a/docs/styles/docfx.css +++ /dev/null @@ -1,1032 +0,0 @@ -/* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */ -html, -body { - font-family: 'Segoe UI', Tahoma, Helvetica, sans-serif; - height: 100%; -} -button, -a { - color: #337ab7; - cursor: pointer; -} -button:hover, -button:focus, -a:hover, -a:focus { - color: #23527c; - text-decoration: none; -} -a.disable, -a.disable:hover { - text-decoration: none; - cursor: default; - color: #000000; -} - -h1, h2, h3, h4, h5, h6, .text-break { - word-wrap: break-word; - word-break: break-word; -} - -h1 mark, -h2 mark, -h3 mark, -h4 mark, -h5 mark, -h6 mark { - padding: 0; -} - -.inheritance .level0:before, -.inheritance .level1:before, -.inheritance .level2:before, -.inheritance .level3:before, -.inheritance .level4:before, -.inheritance .level5:before, -.inheritance .level6:before, -.inheritance .level7:before, -.inheritance .level8:before, -.inheritance .level9:before { - content: '↳'; - margin-right: 5px; -} - -.inheritance .level0 { - margin-left: 0em; -} - -.inheritance .level1 { - margin-left: 1em; -} - -.inheritance .level2 { - margin-left: 2em; -} - -.inheritance .level3 { - margin-left: 3em; -} - -.inheritance .level4 { - margin-left: 4em; -} - -.inheritance .level5 { - margin-left: 5em; -} - -.inheritance .level6 { - margin-left: 6em; -} - -.inheritance .level7 { - margin-left: 7em; -} - -.inheritance .level8 { - margin-left: 8em; -} - -.inheritance .level9 { - margin-left: 9em; -} - -.level0.summary { - margin: 2em 0 2em 0; -} - -.level1.summary { - margin: 1em 0 1em 0; -} - -span.parametername, -span.paramref, -span.typeparamref { - font-style: italic; -} -span.languagekeyword{ - font-weight: bold; -} - -svg:hover path { - fill: #ffffff; -} - -.hljs { - display: inline; - background-color: inherit; - padding: 0; -} -/* additional spacing fixes */ -.btn + .btn { - margin-left: 10px; -} -.btn.pull-right { - margin-left: 10px; - margin-top: 5px; -} -.table { - margin-bottom: 10px; -} -table p { - margin-bottom: 0; -} -table a { - display: inline-block; -} - -/* Make hidden attribute compatible with old browser.*/ -[hidden] { - display: none !important; -} - -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 15px; - margin-bottom: 10px; - font-weight: 400; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 5px; -} -.navbar { - margin-bottom: 0; -} -#wrapper { - min-height: 100%; - position: relative; -} -/* blends header footer and content together with gradient effect */ -.grad-top { - /* For Safari 5.1 to 6.0 */ - /* For Opera 11.1 to 12.0 */ - /* For Firefox 3.6 to 15 */ - background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)); - /* Standard syntax */ - height: 5px; -} -.grad-bottom { - /* For Safari 5.1 to 6.0 */ - /* For Opera 11.1 to 12.0 */ - /* For Firefox 3.6 to 15 */ - background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05)); - /* Standard syntax */ - height: 5px; -} -.divider { - margin: 0 5px; - color: #cccccc; -} -hr { - border-color: #cccccc; -} -header { - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 1000; -} -header .navbar { - border-width: 0 0 1px; - border-radius: 0; -} -.navbar-brand { - font-size: inherit; - padding: 0; -} -.navbar-collapse { - margin: 0 -15px; -} -.subnav { - min-height: 40px; -} - -.inheritance h5, .inheritedMembers h5{ - padding-bottom: 5px; - border-bottom: 1px solid #ccc; -} - -article h1, article h2, article h3, article h4{ - margin-top: 25px; -} - -article h4{ - border: 0; - font-weight: bold; - margin-top: 2em; -} - -article span.small.pull-right{ - margin-top: 20px; -} - -article section { - margin-left: 1em; -} - -/*.expand-all { - padding: 10px 0; -}*/ -.breadcrumb { - margin: 0; - padding: 10px 0; - background-color: inherit; - white-space: nowrap; -} -.breadcrumb > li + li:before { - content: "\00a0/"; -} -#autocollapse.collapsed .navbar-header { - float: none; -} -#autocollapse.collapsed .navbar-toggle { - display: block; -} -#autocollapse.collapsed .navbar-collapse { - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -} -#autocollapse.collapsed .navbar-collapse.collapse { - display: none !important; -} -#autocollapse.collapsed .navbar-nav { - float: none !important; - margin: 7.5px -15px; -} -#autocollapse.collapsed .navbar-nav > li { - float: none; -} -#autocollapse.collapsed .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; -} -#autocollapse.collapsed .collapse.in, -#autocollapse.collapsed .collapsing { - display: block !important; -} -#autocollapse.collapsed .collapse.in .navbar-right, -#autocollapse.collapsed .collapsing .navbar-right { - float: none !important; -} -#autocollapse .form-group { - width: 100%; -} -#autocollapse .form-control { - width: 100%; -} -#autocollapse .navbar-header { - margin-left: 0; - margin-right: 0; -} -#autocollapse .navbar-brand { - margin-left: 0; -} -.collapse.in, -.collapsing { - text-align: center; -} -.collapsing .navbar-form { - margin: 0 auto; - max-width: 400px; - padding: 10px 15px; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -.collapsed .collapse.in .navbar-form { - margin: 0 auto; - max-width: 400px; - padding: 10px 15px; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -.navbar .navbar-nav { - display: inline-block; -} -.docs-search { - background: white; - vertical-align: middle; -} -.docs-search > .search-query { - font-size: 14px; - border: 0; - width: 120%; - color: #555; -} -.docs-search > .search-query:focus { - outline: 0; -} -.search-results-frame { - clear: both; - display: table; - width: 100%; -} -.search-results.ng-hide { - display: none; -} -.search-results-container { - padding-bottom: 1em; - border-top: 1px solid #111; - background: rgba(25, 25, 25, 0.5); -} -.search-results-container .search-results-group { - padding-top: 50px !important; - padding: 10px; -} -.search-results-group-heading { - font-family: "Open Sans"; - padding-left: 10px; - color: white; -} -.search-close { - position: absolute; - left: 50%; - margin-left: -100px; - color: white; - text-align: center; - padding: 5px; - background: #333; - border-top-right-radius: 5px; - border-top-left-radius: 5px; - width: 200px; - box-shadow: 0 0 10px #111; -} -#search { - display: none; -} - -/* Search results display*/ -#search-results { - max-width: 960px !important; - margin-top: 120px; - margin-bottom: 115px; - margin-left: auto; - margin-right: auto; - line-height: 1.8; - display: none; -} - -#search-results>.search-list { - text-align: center; - font-size: 2.5rem; - margin-bottom: 50px; -} - -#search-results p { - text-align: center; -} - -#search-results p .index-loading { - animation: index-loading 1.5s infinite linear; - -webkit-animation: index-loading 1.5s infinite linear; - -o-animation: index-loading 1.5s infinite linear; - font-size: 2.5rem; -} - -@keyframes index-loading { - from { transform: scale(1) rotate(0deg);} - to { transform: scale(1) rotate(360deg);} -} - -@-webkit-keyframes index-loading { - from { -webkit-transform: rotate(0deg);} - to { -webkit-transform: rotate(360deg);} -} - -@-o-keyframes index-loading { - from { -o-transform: rotate(0deg);} - to { -o-transform: rotate(360deg);} -} - -#search-results .sr-items { - font-size: 24px; -} - -.sr-item { - margin-bottom: 25px; -} - -.sr-item>.item-href { - font-size: 14px; - color: #093; -} - -.sr-item>.item-brief { - font-size: 13px; -} - -.pagination>li>a { - color: #47A7A0 -} - -.pagination>.active>a { - background-color: #47A7A0; - border-color: #47A7A0; -} - -.fixed_header { - position: fixed; - width: 100%; - padding-bottom: 10px; - padding-top: 10px; - margin: 0px; - top: 0; - z-index: 9999; - left: 0; -} - -.fixed_header+.toc{ - margin-top: 50px; - margin-left: 0; -} - -.sidenav, .fixed_header, .toc { - background-color: #f1f1f1; -} - -.sidetoc { - position: fixed; - width: 260px; - top: 150px; - bottom: 0; - overflow-x: hidden; - overflow-y: auto; - background-color: #f1f1f1; - border-left: 1px solid #e7e7e7; - border-right: 1px solid #e7e7e7; - z-index: 1; -} - -.sidetoc.shiftup { - bottom: 70px; -} - -body .toc{ - background-color: #f1f1f1; - overflow-x: hidden; -} - -.sidetoggle.ng-hide { - display: block !important; -} -.sidetoc-expand > .caret { - margin-left: 0px; - margin-top: -2px; -} -.sidetoc-expand > .caret-side { - border-left: 4px solid; - border-top: 4px solid transparent; - border-bottom: 4px solid transparent; - margin-left: 4px; - margin-top: -4px; -} -.sidetoc-heading { - font-weight: 500; -} - -.toc { - margin: 0px 0 0 10px; - padding: 0 10px; -} -.expand-stub { - position: absolute; - left: -10px; -} -.toc .nav > li > a.sidetoc-expand { - position: absolute; - top: 0; - left: 0; -} -.toc .nav > li > a { - color: #666666; - margin-left: 5px; - display: block; - padding: 0; -} -.toc .nav > li > a:hover, -.toc .nav > li > a:focus { - color: #000000; - background: none; - text-decoration: inherit; -} -.toc .nav > li.active > a { - color: #337ab7; -} -.toc .nav > li.active > a:hover, -.toc .nav > li.active > a:focus { - color: #23527c; -} - -.toc .nav > li> .expand-stub { - cursor: pointer; -} - -.toc .nav > li.active > .expand-stub::before, -.toc .nav > li.in > .expand-stub::before, -.toc .nav > li.in.active > .expand-stub::before, -.toc .nav > li.filtered > .expand-stub::before { - content: "-"; -} - -.toc .nav > li > .expand-stub::before, -.toc .nav > li.active > .expand-stub::before { - content: "+"; -} - -.toc .nav > li.filtered > ul, -.toc .nav > li.in > ul { - display: block; -} - -.toc .nav > li > ul { - display: none; -} - -.toc ul{ - font-size: 12px; - margin: 0 0 0 3px; -} - -.toc .level1 > li { - font-weight: bold; - margin-top: 10px; - position: relative; - font-size: 16px; -} -.toc .level2 { - font-weight: normal; - margin: 5px 0 0 15px; - font-size: 14px; -} -.toc-toggle { - display: none; - margin: 0 15px 0px 15px; -} -.sidefilter { - position: fixed; - top: 90px; - width: 260px; - background-color: #f1f1f1; - padding: 15px; - border-left: 1px solid #e7e7e7; - border-right: 1px solid #e7e7e7; - z-index: 1; -} -.toc-filter { - border-radius: 5px; - background: #fff; - color: #666666; - padding: 5px; - position: relative; - margin: 0 5px 0 5px; -} -.toc-filter > input { - border: 0; - color: #666666; - padding-left: 20px; - padding-right: 20px; - width: 100%; -} -.toc-filter > input:focus { - outline: 0; -} -.toc-filter > .filter-icon { - position: absolute; - top: 10px; - left: 5px; -} -.toc-filter > .clear-icon { - position: absolute; - top: 10px; - right: 5px; -} -.article { - margin-top: 120px; - margin-bottom: 115px; -} - -#_content>a{ - margin-top: 105px; -} - -.article.grid-right { - margin-left: 280px; -} - -.inheritance hr { - margin-top: 5px; - margin-bottom: 5px; -} -.article img { - max-width: 100%; -} -.sideaffix { - margin-top: 50px; - font-size: 12px; - max-height: 100%; - overflow: hidden; - top: 100px; - bottom: 10px; - position: fixed; -} -.sideaffix.shiftup { - bottom: 70px; -} -.affix { - position: relative; - height: 100%; -} -.sideaffix > div.contribution { - margin-bottom: 20px; -} -.sideaffix > div.contribution > ul > li > a.contribution-link { - padding: 6px 10px; - font-weight: bold; - font-size: 14px; -} -.sideaffix > div.contribution > ul > li > a.contribution-link:hover { - background-color: #ffffff; -} -.sideaffix ul.nav > li > a:focus { - background: none; -} -.affix h5 { - font-weight: bold; - text-transform: uppercase; - padding-left: 10px; - font-size: 12px; -} -.affix > ul.level1 { - overflow: hidden; - padding-bottom: 10px; - height: calc(100% - 100px); -} -.affix ul > li > a:before { - color: #cccccc; - position: absolute; -} -.affix ul > li > a:hover { - background: none; - color: #666666; -} -.affix ul > li.active > a, -.affix ul > li.active > a:before { - color: #337ab7; -} -.affix ul > li > a { - padding: 5px 12px; - color: #666666; -} -.affix > ul > li.active:last-child { - margin-bottom: 50px; -} -.affix > ul > li > a:before { - content: "|"; - font-size: 16px; - top: 1px; - left: 0; -} -.affix > ul > li.active > a, -.affix > ul > li.active > a:before { - color: #337ab7; - font-weight: bold; -} -.affix ul ul > li > a { - padding: 2px 15px; -} -.affix ul ul > li > a:before { - content: ">"; - font-size: 14px; - top: -1px; - left: 5px; -} -.affix ul > li > a:before, -.affix ul ul { - display: none; -} -.affix ul > li.active > ul, -.affix ul > li.active > a:before, -.affix ul > li > a:hover:before { - display: block; - white-space: nowrap; -} -.codewrapper { - position: relative; -} -.trydiv { - height: 0px; -} -.tryspan { - position: absolute; - top: 0px; - right: 0px; - border-style: solid; - border-radius: 0px 4px; - box-sizing: border-box; - border-width: 1px; - border-color: #cccccc; - text-align: center; - padding: 2px 8px; - background-color: white; - font-size: 12px; - cursor: pointer; - z-index: 100; - display: none; - color: #767676; -} -.tryspan:hover { - background-color: #3b8bd0; - color: white; - border-color: #3b8bd0; -} -.codewrapper:hover .tryspan { - display: block; -} -.sample-response .response-content{ - max-height: 200px; -} -footer { - position: absolute; - left: 0; - right: 0; - bottom: 0; - z-index: 1000; -} -.footer { - border-top: 1px solid #e7e7e7; - background-color: #f8f8f8; - padding: 15px 0; -} -@media (min-width: 768px) { - #sidetoggle.collapse { - display: block; - } - .topnav .navbar-nav { - float: none; - white-space: nowrap; - } - .topnav .navbar-nav > li { - float: none; - display: inline-block; - } -} -@media only screen and (max-width: 768px) { - #mobile-indicator { - display: block; - } - /* TOC display for responsive */ - .article { - margin-top: 30px !important; - } - header { - position: static; - } - .topnav { - text-align: center; - } - .sidenav { - padding: 15px 0; - margin-left: -15px; - margin-right: -15px; - } - .sidefilter { - position: static; - width: auto; - float: none; - border: none; - } - .sidetoc { - position: static; - width: auto; - float: none; - padding-bottom: 0px; - border: none; - } - .toc .nav > li, .toc .nav > li >a { - display: inline-block; - } - .toc li:after { - margin-left: -3px; - margin-right: 5px; - content: ", "; - color: #666666; - } - .toc .level1 > li { - display: block; - } - - .toc .level1 > li:after { - display: none; - } - .article.grid-right { - margin-left: 0; - } - .grad-top, - .grad-bottom { - display: none; - } - .toc-toggle { - display: block; - } - .sidetoggle.ng-hide { - display: none !important; - } - /*.expand-all { - display: none; - }*/ - .sideaffix { - display: none; - } - .mobile-hide { - display: none; - } - .breadcrumb { - white-space: inherit; - } - - /* workaround for #hashtag url is no longer needed*/ - h1:before, - h2:before, - h3:before, - h4:before { - content: ''; - display: none; - } -} - -/* For toc iframe */ -@media (max-width: 260px) { - .toc .level2 > li { - display: block; - } - - .toc .level2 > li:after { - display: none; - } -} - -/* Code snippet */ -code { - color: #717374; - background-color: #f1f2f3; -} - -a code { - color: #337ab7; - background-color: #f1f2f3; -} - -a code:hover { - text-decoration: underline; -} - -.hljs-keyword { - color: rgb(86,156,214); -} - -.hljs-string { - color: rgb(214, 157, 133); -} - -pre { - border: 0; -} - -/* For code snippet line highlight */ -pre > code .line-highlight { - background-color: #ffffcc; -} - -/* Alerts */ -.alert h5 { - text-transform: uppercase; - font-weight: bold; - margin-top: 0; -} - -.alert h5:before { - position:relative; - top:1px; - display:inline-block; - font-family:'Glyphicons Halflings'; - line-height:1; - -webkit-font-smoothing:antialiased; - -moz-osx-font-smoothing:grayscale; - margin-right: 5px; - font-weight: normal; -} - -.alert-info h5:before { - content:"\e086" -} - -.alert-warning h5:before { - content:"\e127" -} - -.alert-danger h5:before { - content:"\e107" -} - -/* For Embedded Video */ -div.embeddedvideo { - padding-top: 56.25%; - position: relative; - width: 100%; -} - -div.embeddedvideo iframe { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - width: 100%; - height: 100%; -} - -/* For printer */ -@media print{ - .article.grid-right { - margin-top: 0px; - margin-left: 0px; - } - .sideaffix { - display: none; - } - .mobile-hide { - display: none; - } - .footer { - display: none; - } -} - -/* For tabbed content */ - -.tabGroup { - margin-top: 1rem; } - .tabGroup ul[role="tablist"] { - margin: 0; - padding: 0; - list-style: none; } - .tabGroup ul[role="tablist"] > li { - list-style: none; - display: inline-block; } - .tabGroup a[role="tab"] { - color: #6e6e6e; - box-sizing: border-box; - display: inline-block; - padding: 5px 7.5px; - text-decoration: none; - border-bottom: 2px solid #fff; } - .tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus, .tabGroup a[role="tab"][aria-selected="true"] { - border-bottom: 2px solid #0050C5; } - .tabGroup a[role="tab"][aria-selected="true"] { - color: #222; } - .tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus { - color: #0050C5; } - .tabGroup a[role="tab"]:focus { - outline: 1px solid #0050C5; - outline-offset: -1px; } - @media (min-width: 768px) { - .tabGroup a[role="tab"] { - padding: 5px 15px; } } - .tabGroup section[role="tabpanel"] { - border: 1px solid #e0e0e0; - padding: 15px; - margin: 0; - overflow: hidden; } - .tabGroup section[role="tabpanel"] > .codeHeader, - .tabGroup section[role="tabpanel"] > pre { - margin-left: -16px; - margin-right: -16px; } - .tabGroup section[role="tabpanel"] > :first-child { - margin-top: 0; } - .tabGroup section[role="tabpanel"] > pre:last-child { - display: block; - margin-bottom: -16px; } - -.mainContainer[dir='rtl'] main ul[role="tablist"] { - margin: 0; } - -/* Color theme */ - -/* These are not important, tune down **/ -.decalaration, .fieldValue, .parameters, .returns { - color: #a2a2a2; -} - -/* Major sections, increase visibility **/ -#fields, #properties, #methods, #events { - font-weight: bold; - margin-top: 2em; -} diff --git a/docs/styles/docfx.js b/docs/styles/docfx.js deleted file mode 100644 index 04b4baed86..0000000000 --- a/docs/styles/docfx.js +++ /dev/null @@ -1,1223 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. -$(function () { - var active = 'active'; - var expanded = 'in'; - var collapsed = 'collapsed'; - var filtered = 'filtered'; - var show = 'show'; - var hide = 'hide'; - var util = new utility(); - - workAroundFixedHeaderForAnchors(); - highlight(); - enableSearch(); - - renderTables(); - renderAlerts(); - renderLinks(); - renderNavbar(); - renderSidebar(); - renderAffix(); - renderFooter(); - renderLogo(); - - breakText(); - renderTabs(); - - window.refresh = function (article) { - // Update markup result - if (typeof article == 'undefined' || typeof article.content == 'undefined') - console.error("Null Argument"); - $("article.content").html(article.content); - - highlight(); - renderTables(); - renderAlerts(); - renderAffix(); - renderTabs(); - } - - // Add this event listener when needed - // window.addEventListener('content-update', contentUpdate); - - function breakText() { - $(".xref").addClass("text-break"); - var texts = $(".text-break"); - texts.each(function () { - $(this).breakWord(); - }); - } - - // Styling for tables in conceptual documents using Bootstrap. - // See http://getbootstrap.com/css/#tables - function renderTables() { - $('table').addClass('table table-bordered table-striped table-condensed').wrap('
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                '); - } - - // Styling for alerts. - function renderAlerts() { - $('.NOTE, .TIP').addClass('alert alert-info'); - $('.WARNING').addClass('alert alert-warning'); - $('.IMPORTANT, .CAUTION').addClass('alert alert-danger'); - } - - // Enable anchors for headings. - (function () { - anchors.options = { - placement: 'left', - visible: 'hover' - }; - anchors.add('article h2:not(.no-anchor), article h3:not(.no-anchor), article h4:not(.no-anchor)'); - })(); - - // Open links to different host in a new window. - function renderLinks() { - if ($("meta[property='docfx:newtab']").attr("content") === "true") { - $(document.links).filter(function () { - return this.hostname !== window.location.hostname; - }).attr('target', '_blank'); - } - } - - // Enable highlight.js - function highlight() { - $('pre code').each(function (i, block) { - hljs.highlightBlock(block); - }); - $('pre code[highlight-lines]').each(function (i, block) { - if (block.innerHTML === "") return; - var lines = block.innerHTML.split('\n'); - - queryString = block.getAttribute('highlight-lines'); - if (!queryString) return; - - var ranges = queryString.split(','); - for (var j = 0, range; range = ranges[j++];) { - var found = range.match(/^(\d+)\-(\d+)?$/); - if (found) { - // consider region as `{startlinenumber}-{endlinenumber}`, in which {endlinenumber} is optional - var start = +found[1]; - var end = +found[2]; - if (isNaN(end) || end > lines.length) { - end = lines.length; - } - } else { - // consider region as a sigine line number - if (isNaN(range)) continue; - var start = +range; - var end = start; - } - if (start <= 0 || end <= 0 || start > end || start > lines.length) { - // skip current region if invalid - continue; - } - lines[start - 1] = '' + lines[start - 1]; - lines[end - 1] = lines[end - 1] + ''; - } - - block.innerHTML = lines.join('\n'); - }); - } - - // Support full-text-search - function enableSearch() { - var query; - var relHref = $("meta[property='docfx\\:rel']").attr("content"); - if (typeof relHref === 'undefined') { - return; - } - try { - var worker = new Worker(relHref + 'styles/search-worker.js'); - if (!worker && !window.worker) { - localSearch(); - } else { - webWorkerSearch(); - } - - renderSearchBox(); - highlightKeywords(); - addSearchEvent(); - } catch (e) { - console.error(e); - } - - //Adjust the position of search box in navbar - function renderSearchBox() { - autoCollapse(); - $(window).on('resize', autoCollapse); - $(document).on('click', '.navbar-collapse.in', function (e) { - if ($(e.target).is('a')) { - $(this).collapse('hide'); - } - }); - - function autoCollapse() { - var navbar = $('#autocollapse'); - if (navbar.height() === null) { - setTimeout(autoCollapse, 300); - } - navbar.removeClass(collapsed); - if (navbar.height() > 60) { - navbar.addClass(collapsed); - } - } - } - - // Search factory - function localSearch() { - console.log("using local search"); - var lunrIndex = lunr(function () { - this.ref('href'); - this.field('title', { boost: 50 }); - this.field('keywords', { boost: 20 }); - }); - lunr.tokenizer.seperator = /[\s\-\.]+/; - var searchData = {}; - var searchDataRequest = new XMLHttpRequest(); - - var indexPath = relHref + "index.json"; - if (indexPath) { - searchDataRequest.open('GET', indexPath); - searchDataRequest.onload = function () { - if (this.status != 200) { - return; - } - searchData = JSON.parse(this.responseText); - for (var prop in searchData) { - if (searchData.hasOwnProperty(prop)) { - lunrIndex.add(searchData[prop]); - } - } - } - searchDataRequest.send(); - } - - $("body").bind("queryReady", function () { - var hits = lunrIndex.search(query); - var results = []; - hits.forEach(function (hit) { - var item = searchData[hit.ref]; - results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords }); - }); - handleSearchResults(results); - }); - } - - function webWorkerSearch() { - console.log("using Web Worker"); - var indexReady = $.Deferred(); - - worker.onmessage = function (oEvent) { - switch (oEvent.data.e) { - case 'index-ready': - indexReady.resolve(); - break; - case 'query-ready': - var hits = oEvent.data.d; - handleSearchResults(hits); - break; - } - } - - indexReady.promise().done(function () { - $("body").bind("queryReady", function () { - worker.postMessage({ q: query }); - }); - if (query && (query.length >= 3)) { - worker.postMessage({ q: query }); - } - }); - } - - // Highlight the searching keywords - function highlightKeywords() { - var q = url('?q'); - if (q) { - var keywords = q.split("%20"); - keywords.forEach(function (keyword) { - if (keyword !== "") { - $('.data-searchable *').mark(keyword); - $('article *').mark(keyword); - } - }); - } - } - - function addSearchEvent() { - $('body').bind("searchEvent", function () { - $('#search-query').keypress(function (e) { - return e.which !== 13; - }); - - $('#search-query').keyup(function () { - query = $(this).val(); - if (query.length < 3) { - flipContents("show"); - } else { - flipContents("hide"); - $("body").trigger("queryReady"); - $('#search-results>.search-list>span').text('"' + query + '"'); - } - }).off("keydown"); - }); - } - - function flipContents(action) { - if (action === "show") { - $('.hide-when-search').show(); - $('#search-results').hide(); - } else { - $('.hide-when-search').hide(); - $('#search-results').show(); - } - } - - function relativeUrlToAbsoluteUrl(currentUrl, relativeUrl) { - var currentItems = currentUrl.split(/\/+/); - var relativeItems = relativeUrl.split(/\/+/); - var depth = currentItems.length - 1; - var items = []; - for (var i = 0; i < relativeItems.length; i++) { - if (relativeItems[i] === '..') { - depth--; - } else if (relativeItems[i] !== '.') { - items.push(relativeItems[i]); - } - } - return currentItems.slice(0, depth).concat(items).join('/'); - } - - function extractContentBrief(content) { - var briefOffset = 512; - var words = query.split(/\s+/g); - var queryIndex = content.indexOf(words[0]); - var briefContent; - if (queryIndex > briefOffset) { - return "..." + content.slice(queryIndex - briefOffset, queryIndex + briefOffset) + "..."; - } else if (queryIndex <= briefOffset) { - return content.slice(0, queryIndex + briefOffset) + "..."; - } - } - - function handleSearchResults(hits) { - var numPerPage = 10; - var pagination = $('#pagination'); - pagination.empty(); - pagination.removeData("twbs-pagination"); - if (hits.length === 0) { - $('#search-results>.sr-items').html('

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                No results found

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                '); - } else { - pagination.twbsPagination({ - first: pagination.data('first'), - prev: pagination.data('prev'), - next: pagination.data('next'), - last: pagination.data('last'), - totalPages: Math.ceil(hits.length / numPerPage), - visiblePages: 5, - onPageClick: function (event, page) { - var start = (page - 1) * numPerPage; - var curHits = hits.slice(start, start + numPerPage); - $('#search-results>.sr-items').empty().append( - curHits.map(function (hit) { - var currentUrl = window.location.href; - var itemRawHref = relativeUrlToAbsoluteUrl(currentUrl, relHref + hit.href); - var itemHref = relHref + hit.href + "?q=" + query; - var itemTitle = hit.title; - var itemBrief = extractContentBrief(hit.keywords); - - var itemNode = $('
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ').attr('class', 'sr-item'); - var itemTitleNode = $('
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ').attr('class', 'item-title').append($('').attr('href', itemHref).attr("target", "_blank").attr("rel", "noopener noreferrer").text(itemTitle)); - var itemHrefNode = $('
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ').attr('class', 'item-href').text(itemRawHref); - var itemBriefNode = $('
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ').attr('class', 'item-brief').text(itemBrief); - itemNode.append(itemTitleNode).append(itemHrefNode).append(itemBriefNode); - return itemNode; - }) - ); - query.split(/\s+/).forEach(function (word) { - if (word !== '') { - $('#search-results>.sr-items *').mark(word); - } - }); - } - }); - } - } - }; - - // Update href in navbar - function renderNavbar() { - var navbar = $('#navbar ul')[0]; - if (typeof (navbar) === 'undefined') { - loadNavbar(); - } else { - $('#navbar ul a.active').parents('li').addClass(active); - renderBreadcrumb(); - showSearch(); - } - - function showSearch() { - if ($('#search-results').length !== 0) { - $('#search').show(); - $('body').trigger("searchEvent"); - } - } - - function loadNavbar() { - var navbarPath = $("meta[property='docfx\\:navrel']").attr("content"); - if (!navbarPath) { - return; - } - navbarPath = navbarPath.replace(/\\/g, '/'); - var tocPath = $("meta[property='docfx\\:tocrel']").attr("content") || ''; - if (tocPath) tocPath = tocPath.replace(/\\/g, '/'); - $.get(navbarPath, function (data) { - $(data).find("#toc>ul").appendTo("#navbar"); - showSearch(); - var index = navbarPath.lastIndexOf('/'); - var navrel = ''; - if (index > -1) { - navrel = navbarPath.substr(0, index + 1); - } - $('#navbar>ul').addClass('navbar-nav'); - var currentAbsPath = util.getCurrentWindowAbsolutePath(); - // set active item - $('#navbar').find('a[href]').each(function (i, e) { - var href = $(e).attr("href"); - if (util.isRelativePath(href)) { - href = navrel + href; - $(e).attr("href", href); - - var isActive = false; - var originalHref = e.name; - if (originalHref) { - originalHref = navrel + originalHref; - if (util.getDirectory(util.getAbsolutePath(originalHref)) === util.getDirectory(util.getAbsolutePath(tocPath))) { - isActive = true; - } - } else { - if (util.getAbsolutePath(href) === currentAbsPath) { - var dropdown = $(e).attr('data-toggle') == "dropdown" - if (!dropdown) { - isActive = true; - } - } - } - if (isActive) { - $(e).addClass(active); - } - } - }); - renderNavbar(); - }); - } - } - - function renderSidebar() { - var sidetoc = $('#sidetoggle .sidetoc')[0]; - if (typeof (sidetoc) === 'undefined') { - loadToc(); - } else { - registerTocEvents(); - if ($('footer').is(':visible')) { - $('.sidetoc').addClass('shiftup'); - } - - // Scroll to active item - var top = 0; - $('#toc a.active').parents('li').each(function (i, e) { - $(e).addClass(active).addClass(expanded); - $(e).children('a').addClass(active); - }) - $('#toc a.active').parents('li').each(function (i, e) { - top += $(e).position().top; - }) - $('.sidetoc').scrollTop(top - 50); - - if ($('footer').is(':visible')) { - $('.sidetoc').addClass('shiftup'); - } - - renderBreadcrumb(); - } - - function registerTocEvents() { - var tocFilterInput = $('#toc_filter_input'); - var tocFilterClearButton = $('#toc_filter_clear'); - - $('.toc .nav > li > .expand-stub').click(function (e) { - $(e.target).parent().toggleClass(expanded); - }); - $('.toc .nav > li > .expand-stub + a:not([href])').click(function (e) { - $(e.target).parent().toggleClass(expanded); - }); - tocFilterInput.on('input', function (e) { - var val = this.value; - //Save filter string to local session storage - if (typeof(Storage) !== "undefined") { - try { - sessionStorage.filterString = val; - } - catch(e) - {} - } - if (val === '') { - // Clear 'filtered' class - $('#toc li').removeClass(filtered).removeClass(hide); - tocFilterClearButton.fadeOut(); - return; - } - tocFilterClearButton.fadeIn(); - - // set all parent nodes status - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length > 0 - }).each(function (i, anchor) { - var parent = $(anchor).parent(); - parent.addClass(hide); - parent.removeClass(show); - parent.removeClass(filtered); - }) - - // Get leaf nodes - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length === 0 - }).each(function (i, anchor) { - var text = $(anchor).attr('title'); - var parent = $(anchor).parent(); - var parentNodes = parent.parents('ul>li'); - for (var i = 0; i < parentNodes.length; i++) { - var parentText = $(parentNodes[i]).children('a').attr('title'); - if (parentText) text = parentText + '.' + text; - }; - if (filterNavItem(text, val)) { - parent.addClass(show); - parent.removeClass(hide); - } else { - parent.addClass(hide); - parent.removeClass(show); - } - }); - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length > 0 - }).each(function (i, anchor) { - var parent = $(anchor).parent(); - if (parent.find('li.show').length > 0) { - parent.addClass(show); - parent.addClass(filtered); - parent.removeClass(hide); - } else { - parent.addClass(hide); - parent.removeClass(show); - parent.removeClass(filtered); - } - }) - - function filterNavItem(name, text) { - if (!text) return true; - if (name && name.toLowerCase().indexOf(text.toLowerCase()) > -1) return true; - return false; - } - }); - - // toc filter clear button - tocFilterClearButton.hide(); - tocFilterClearButton.on("click", function(e){ - tocFilterInput.val(""); - tocFilterInput.trigger('input'); - if (typeof(Storage) !== "undefined") { - try { - sessionStorage.filterString = ""; - } - catch(e) - {} - } - }); - - //Set toc filter from local session storage on page load - if (typeof(Storage) !== "undefined") { - try { - tocFilterInput.val(sessionStorage.filterString); - tocFilterInput.trigger('input'); - } - catch(e) - {} - } - } - - function loadToc() { - var tocPath = $("meta[property='docfx\\:tocrel']").attr("content"); - if (!tocPath) { - return; - } - tocPath = tocPath.replace(/\\/g, '/'); - $('#sidetoc').load(tocPath + " #sidetoggle > div", function () { - var index = tocPath.lastIndexOf('/'); - var tocrel = ''; - if (index > -1) { - tocrel = tocPath.substr(0, index + 1); - } - var currentHref = util.getCurrentWindowAbsolutePath(); - if(!currentHref.endsWith('.html')) { - currentHref += '.html'; - } - $('#sidetoc').find('a[href]').each(function (i, e) { - var href = $(e).attr("href"); - if (util.isRelativePath(href)) { - href = tocrel + href; - $(e).attr("href", href); - } - - if (util.getAbsolutePath(e.href) === currentHref) { - $(e).addClass(active); - } - - $(e).breakWord(); - }); - - renderSidebar(); - }); - } - } - - function renderBreadcrumb() { - var breadcrumb = []; - $('#navbar a.active').each(function (i, e) { - breadcrumb.push({ - href: e.href, - name: e.innerHTML - }); - }) - $('#toc a.active').each(function (i, e) { - breadcrumb.push({ - href: e.href, - name: e.innerHTML - }); - }) - - var html = util.formList(breadcrumb, 'breadcrumb'); - $('#breadcrumb').html(html); - } - - //Setup Affix - function renderAffix() { - var hierarchy = getHierarchy(); - if (!hierarchy || hierarchy.length <= 0) { - $("#affix").hide(); - } - else { - var html = util.formList(hierarchy, ['nav', 'bs-docs-sidenav']); - $("#affix>div").empty().append(html); - if ($('footer').is(':visible')) { - $(".sideaffix").css("bottom", "70px"); - } - $('#affix a').click(function(e) { - var scrollspy = $('[data-spy="scroll"]').data()['bs.scrollspy']; - var target = e.target.hash; - if (scrollspy && target) { - scrollspy.activate(target); - } - }); - } - - function getHierarchy() { - // supported headers are h1, h2, h3, and h4 - var $headers = $($.map(['h1', 'h2', 'h3', 'h4'], function (h) { return ".article article " + h; }).join(", ")); - - // a stack of hierarchy items that are currently being built - var stack = []; - $headers.each(function (i, e) { - if (!e.id) { - return; - } - - var item = { - name: htmlEncode($(e).text()), - href: "#" + e.id, - items: [] - }; - - if (!stack.length) { - stack.push({ type: e.tagName, siblings: [item] }); - return; - } - - var frame = stack[stack.length - 1]; - if (e.tagName === frame.type) { - frame.siblings.push(item); - } else if (e.tagName[1] > frame.type[1]) { - // we are looking at a child of the last element of frame.siblings. - // push a frame onto the stack. After we've finished building this item's children, - // we'll attach it as a child of the last element - stack.push({ type: e.tagName, siblings: [item] }); - } else { // e.tagName[1] < frame.type[1] - // we are looking at a sibling of an ancestor of the current item. - // pop frames from the stack, building items as we go, until we reach the correct level at which to attach this item. - while (e.tagName[1] < stack[stack.length - 1].type[1]) { - buildParent(); - } - if (e.tagName === stack[stack.length - 1].type) { - stack[stack.length - 1].siblings.push(item); - } else { - stack.push({ type: e.tagName, siblings: [item] }); - } - } - }); - while (stack.length > 1) { - buildParent(); - } - - function buildParent() { - var childrenToAttach = stack.pop(); - var parentFrame = stack[stack.length - 1]; - var parent = parentFrame.siblings[parentFrame.siblings.length - 1]; - $.each(childrenToAttach.siblings, function (i, child) { - parent.items.push(child); - }); - } - if (stack.length > 0) { - - var topLevel = stack.pop().siblings; - if (topLevel.length === 1) { // if there's only one topmost header, dump it - return topLevel[0].items; - } - return topLevel; - } - return undefined; - } - - function htmlEncode(str) { - if (!str) return str; - return str - .replace(/&/g, '&') - .replace(/"/g, '"') - .replace(/'/g, ''') - .replace(//g, '>'); - } - - function htmlDecode(value) { - if (!str) return str; - return value - .replace(/"/g, '"') - .replace(/'/g, "'") - .replace(/</g, '<') - .replace(/>/g, '>') - .replace(/&/g, '&'); - } - - function cssEscape(str) { - // see: http://stackoverflow.com/questions/2786538/need-to-escape-a-special-character-in-a-jquery-selector-string#answer-2837646 - if (!str) return str; - return str - .replace(/[!"#$%&'()*+,.\/:;<=>?@[\\\]^`{|}~]/g, "\\$&"); - } - } - - // Show footer - function renderFooter() { - initFooter(); - $(window).on("scroll", showFooterCore); - - function initFooter() { - if (needFooter()) { - shiftUpBottomCss(); - $("footer").show(); - } else { - resetBottomCss(); - $("footer").hide(); - } - } - - function showFooterCore() { - if (needFooter()) { - shiftUpBottomCss(); - $("footer").fadeIn(); - } else { - resetBottomCss(); - $("footer").fadeOut(); - } - } - - function needFooter() { - var scrollHeight = $(document).height(); - var scrollPosition = $(window).height() + $(window).scrollTop(); - return (scrollHeight - scrollPosition) < 1; - } - - function resetBottomCss() { - $(".sidetoc").removeClass("shiftup"); - $(".sideaffix").removeClass("shiftup"); - } - - function shiftUpBottomCss() { - $(".sidetoc").addClass("shiftup"); - $(".sideaffix").addClass("shiftup"); - } - } - - function renderLogo() { - // For LOGO SVG - // Replace SVG with inline SVG - // http://stackoverflow.com/questions/11978995/how-to-change-color-of-svg-image-using-css-jquery-svg-image-replacement - jQuery('img.svg').each(function () { - var $img = jQuery(this); - var imgID = $img.attr('id'); - var imgClass = $img.attr('class'); - var imgURL = $img.attr('src'); - - jQuery.get(imgURL, function (data) { - // Get the SVG tag, ignore the rest - var $svg = jQuery(data).find('svg'); - - // Add replaced image's ID to the new SVG - if (typeof imgID !== 'undefined') { - $svg = $svg.attr('id', imgID); - } - // Add replaced image's classes to the new SVG - if (typeof imgClass !== 'undefined') { - $svg = $svg.attr('class', imgClass + ' replaced-svg'); - } - - // Remove any invalid XML tags as per http://validator.w3.org - $svg = $svg.removeAttr('xmlns:a'); - - // Replace image with new SVG - $img.replaceWith($svg); - - }, 'xml'); - }); - } - - function renderTabs() { - var contentAttrs = { - id: 'data-bi-id', - name: 'data-bi-name', - type: 'data-bi-type' - }; - - var Tab = (function () { - function Tab(li, a, section) { - this.li = li; - this.a = a; - this.section = section; - } - Object.defineProperty(Tab.prototype, "tabIds", { - get: function () { return this.a.getAttribute('data-tab').split(' '); }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "condition", { - get: function () { return this.a.getAttribute('data-condition'); }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "visible", { - get: function () { return !this.li.hasAttribute('hidden'); }, - set: function (value) { - if (value) { - this.li.removeAttribute('hidden'); - this.li.removeAttribute('aria-hidden'); - } - else { - this.li.setAttribute('hidden', 'hidden'); - this.li.setAttribute('aria-hidden', 'true'); - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "selected", { - get: function () { return !this.section.hasAttribute('hidden'); }, - set: function (value) { - if (value) { - this.a.setAttribute('aria-selected', 'true'); - this.a.tabIndex = 0; - this.section.removeAttribute('hidden'); - this.section.removeAttribute('aria-hidden'); - } - else { - this.a.setAttribute('aria-selected', 'false'); - this.a.tabIndex = -1; - this.section.setAttribute('hidden', 'hidden'); - this.section.setAttribute('aria-hidden', 'true'); - } - }, - enumerable: true, - configurable: true - }); - Tab.prototype.focus = function () { - this.a.focus(); - }; - return Tab; - }()); - - initTabs(document.body); - - function initTabs(container) { - var queryStringTabs = readTabsQueryStringParam(); - var elements = container.querySelectorAll('.tabGroup'); - var state = { groups: [], selectedTabs: [] }; - for (var i = 0; i < elements.length; i++) { - var group = initTabGroup(elements.item(i)); - if (!group.independent) { - updateVisibilityAndSelection(group, state); - state.groups.push(group); - } - } - container.addEventListener('click', function (event) { return handleClick(event, state); }); - if (state.groups.length === 0) { - return state; - } - selectTabs(queryStringTabs, container); - updateTabsQueryStringParam(state); - notifyContentUpdated(); - return state; - } - - function initTabGroup(element) { - var group = { - independent: element.hasAttribute('data-tab-group-independent'), - tabs: [] - }; - var li = element.firstElementChild.firstElementChild; - while (li) { - var a = li.firstElementChild; - a.setAttribute(contentAttrs.name, 'tab'); - var dataTab = a.getAttribute('data-tab').replace(/\+/g, ' '); - a.setAttribute('data-tab', dataTab); - var section = element.querySelector("[id=\"" + a.getAttribute('aria-controls') + "\"]"); - var tab = new Tab(li, a, section); - group.tabs.push(tab); - li = li.nextElementSibling; - } - element.setAttribute(contentAttrs.name, 'tab-group'); - element.tabGroup = group; - return group; - } - - function updateVisibilityAndSelection(group, state) { - var anySelected = false; - var firstVisibleTab; - for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) { - var tab = _a[_i]; - tab.visible = tab.condition === null || state.selectedTabs.indexOf(tab.condition) !== -1; - if (tab.visible) { - if (!firstVisibleTab) { - firstVisibleTab = tab; - } - } - tab.selected = tab.visible && arraysIntersect(state.selectedTabs, tab.tabIds); - anySelected = anySelected || tab.selected; - } - if (!anySelected) { - for (var _b = 0, _c = group.tabs; _b < _c.length; _b++) { - var tabIds = _c[_b].tabIds; - for (var _d = 0, tabIds_1 = tabIds; _d < tabIds_1.length; _d++) { - var tabId = tabIds_1[_d]; - var index = state.selectedTabs.indexOf(tabId); - if (index === -1) { - continue; - } - state.selectedTabs.splice(index, 1); - } - } - var tab = firstVisibleTab; - tab.selected = true; - state.selectedTabs.push(tab.tabIds[0]); - } - } - - function getTabInfoFromEvent(event) { - if (!(event.target instanceof HTMLElement)) { - return null; - } - var anchor = event.target.closest('a[data-tab]'); - if (anchor === null) { - return null; - } - var tabIds = anchor.getAttribute('data-tab').split(' '); - var group = anchor.parentElement.parentElement.parentElement.tabGroup; - if (group === undefined) { - return null; - } - return { tabIds: tabIds, group: group, anchor: anchor }; - } - - function handleClick(event, state) { - var info = getTabInfoFromEvent(event); - if (info === null) { - return; - } - event.preventDefault(); - info.anchor.href = 'javascript:'; - setTimeout(function () { return info.anchor.href = '#' + info.anchor.getAttribute('aria-controls'); }); - var tabIds = info.tabIds, group = info.group; - var originalTop = info.anchor.getBoundingClientRect().top; - if (group.independent) { - for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) { - var tab = _a[_i]; - tab.selected = arraysIntersect(tab.tabIds, tabIds); - } - } - else { - if (arraysIntersect(state.selectedTabs, tabIds)) { - return; - } - var previousTabId = group.tabs.filter(function (t) { return t.selected; })[0].tabIds[0]; - state.selectedTabs.splice(state.selectedTabs.indexOf(previousTabId), 1, tabIds[0]); - for (var _b = 0, _c = state.groups; _b < _c.length; _b++) { - var group_1 = _c[_b]; - updateVisibilityAndSelection(group_1, state); - } - updateTabsQueryStringParam(state); - } - notifyContentUpdated(); - var top = info.anchor.getBoundingClientRect().top; - if (top !== originalTop && event instanceof MouseEvent) { - window.scrollTo(0, window.pageYOffset + top - originalTop); - } - } - - function selectTabs(tabIds) { - for (var _i = 0, tabIds_1 = tabIds; _i < tabIds_1.length; _i++) { - var tabId = tabIds_1[_i]; - var a = document.querySelector(".tabGroup > ul > li > a[data-tab=\"" + tabId + "\"]:not([hidden])"); - if (a === null) { - return; - } - a.dispatchEvent(new CustomEvent('click', { bubbles: true })); - } - } - - function readTabsQueryStringParam() { - var qs = parseQueryString(window.location.search); - var t = qs.tabs; - if (t === undefined || t === '') { - return []; - } - return t.split(','); - } - - function updateTabsQueryStringParam(state) { - var qs = parseQueryString(window.location.search); - qs.tabs = state.selectedTabs.join(); - var url = location.protocol + "//" + location.host + location.pathname + "?" + toQueryString(qs) + location.hash; - if (location.href === url) { - return; - } - history.replaceState({}, document.title, url); - } - - function toQueryString(args) { - var parts = []; - for (var name_1 in args) { - if (args.hasOwnProperty(name_1) && args[name_1] !== '' && args[name_1] !== null && args[name_1] !== undefined) { - parts.push(encodeURIComponent(name_1) + '=' + encodeURIComponent(args[name_1])); - } - } - return parts.join('&'); - } - - function parseQueryString(queryString) { - var match; - var pl = /\+/g; - var search = /([^&=]+)=?([^&]*)/g; - var decode = function (s) { return decodeURIComponent(s.replace(pl, ' ')); }; - if (queryString === undefined) { - queryString = ''; - } - queryString = queryString.substring(1); - var urlParams = {}; - while (match = search.exec(queryString)) { - urlParams[decode(match[1])] = decode(match[2]); - } - return urlParams; - } - - function arraysIntersect(a, b) { - for (var _i = 0, a_1 = a; _i < a_1.length; _i++) { - var itemA = a_1[_i]; - for (var _a = 0, b_1 = b; _a < b_1.length; _a++) { - var itemB = b_1[_a]; - if (itemA === itemB) { - return true; - } - } - } - return false; - } - - function notifyContentUpdated() { - // Dispatch this event when needed - // window.dispatchEvent(new CustomEvent('content-update')); - } - } - - function utility() { - this.getAbsolutePath = getAbsolutePath; - this.isRelativePath = isRelativePath; - this.isAbsolutePath = isAbsolutePath; - this.getCurrentWindowAbsolutePath = getCurrentWindowAbsolutePath; - this.getDirectory = getDirectory; - this.formList = formList; - - function getAbsolutePath(href) { - if (isAbsolutePath(href)) return href; - var currentAbsPath = getCurrentWindowAbsolutePath(); - var stack = currentAbsPath.split("/"); - stack.pop(); - var parts = href.split("/"); - for (var i=0; i< parts.length; i++) { - if (parts[i] == ".") continue; - if (parts[i] == ".." && stack.length > 0) - stack.pop(); - else - stack.push(parts[i]); - } - var p = stack.join("/"); - return p; - } - - function isRelativePath(href) { - if (href === undefined || href === '' || href[0] === '/') { - return false; - } - return !isAbsolutePath(href); - } - - function isAbsolutePath(href) { - return (/^(?:[a-z]+:)?\/\//i).test(href); - } - - function getCurrentWindowAbsolutePath() { - return window.location.origin + window.location.pathname; - } - function getDirectory(href) { - if (!href) return ''; - var index = href.lastIndexOf('/'); - if (index == -1) return ''; - if (index > -1) { - return href.substr(0, index); - } - } - - function formList(item, classes) { - var level = 1; - var model = { - items: item - }; - var cls = [].concat(classes).join(" "); - return getList(model, cls); - - function getList(model, cls) { - if (!model || !model.items) return null; - var l = model.items.length; - if (l === 0) return null; - var html = ''; - return html; - } - } - - /** - * Add into long word. - * @param {String} text - The word to break. It should be in plain text without HTML tags. - */ - function breakPlainText(text) { - if (!text) return text; - return text.replace(/([a-z])([A-Z])|(\.)(\w)/g, '$1$3$2$4') - } - - /** - * Add into long word. The jQuery element should contain no html tags. - * If the jQuery element contains tags, this function will not change the element. - */ - $.fn.breakWord = function () { - if (this.html() == this.text()) { - this.html(function (index, text) { - return breakPlainText(text); - }) - } - return this; - } - } - - // adjusted from https://stackoverflow.com/a/13067009/1523776 - function workAroundFixedHeaderForAnchors() { - var HISTORY_SUPPORT = !!(history && history.pushState); - var ANCHOR_REGEX = /^#[^ ]+$/; - - function getFixedOffset() { - return $('header').first().height(); - } - - /** - * If the provided href is an anchor which resolves to an element on the - * page, scroll to it. - * @param {String} href - * @return {Boolean} - Was the href an anchor. - */ - function scrollIfAnchor(href, pushToHistory) { - var match, rect, anchorOffset; - - if (!ANCHOR_REGEX.test(href)) { - return false; - } - - match = document.getElementById(href.slice(1)); - - if (match) { - rect = match.getBoundingClientRect(); - anchorOffset = window.pageYOffset + rect.top - getFixedOffset(); - window.scrollTo(window.pageXOffset, anchorOffset); - - // Add the state to history as-per normal anchor links - if (HISTORY_SUPPORT && pushToHistory) { - history.pushState({}, document.title, location.pathname + href); - } - } - - return !!match; - } - - /** - * Attempt to scroll to the current location's hash. - */ - function scrollToCurrent() { - scrollIfAnchor(window.location.hash); - } - - /** - * If the click event's target was an anchor, fix the scroll position. - */ - function delegateAnchors(e) { - var elem = e.target; - - if (scrollIfAnchor(elem.getAttribute('href'), true)) { - e.preventDefault(); - } - } - - $(window).on('hashchange', scrollToCurrent); - - $(window).on('load', function () { - // scroll to the anchor if present, offset by the header - scrollToCurrent(); - }); - - $(document).ready(function () { - // Exclude tabbed content case - $('a:not([data-tab])').click(function (e) { delegateAnchors(e); }); - }); - } -}); diff --git a/docs/styles/docfx.vendor.css b/docs/styles/docfx.vendor.css deleted file mode 100644 index 609602eb13..0000000000 --- a/docs/styles/docfx.vendor.css +++ /dev/null @@ -1,1513 +0,0 @@ -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} -article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block} -audio,canvas,progress,video{display:inline-block;vertical-align:baseline} -audio:not([controls]){display:none;height:0} -[hidden],template{display:none} -a:active,a:hover{outline:0} -abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted} -b,optgroup,strong{font-weight:700} -dfn{font-style:italic} -h1{margin:.67em 0} -mark{background:#ff0;color:#000} -sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline} -sup{top:-.5em} -sub{bottom:-.25em} -img{border:0;vertical-align:middle} -svg:not(:root){overflow:hidden} -hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0} -code,kbd,pre,samp{font-size:1em} -button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0} -button{overflow:visible} -button,select{text-transform:none} -button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer} -button[disabled],html input[disabled]{cursor:default} -button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0} -input{line-height:normal} -input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0} -input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto} -input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} -input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none} -textarea{overflow:auto} -td,th{padding:0} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print{ -*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important} -a,a:visited{text-decoration:underline} -a[href]:after{content:" (" attr(href) ")"} -abbr[title]:after{content:" (" attr(title) ")"} -a[href^="#"]:after,a[href^="javascript:"]:after{content:""} -blockquote,pre{border:1px solid #999;page-break-inside:avoid} -thead{display:table-header-group} -img,tr{page-break-inside:avoid} -img{max-width:100%!important} -h2,h3,p{orphans:3;widows:3} -h2,h3{page-break-after:avoid} -.navbar{display:none} -.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important} -.label{border:1px solid #000} -.table{border-collapse:collapse!important} -.table td,.table th{background-color:#fff!important} -.table-bordered td,.table-bordered th{border:1px solid #ddd!important} -} -@font-face{font-family:"Glyphicons Halflings";src:url("../fonts/glyphicons-halflings-regular.eot");src:url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("../fonts/glyphicons-halflings-regular.woff") format("woff"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")} -.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} -.glyphicon-asterisk:before{content:"\002a"} -.glyphicon-plus:before{content:"\002b"} -.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"} -.glyphicon-minus:before{content:"\2212"} -.glyphicon-cloud:before{content:"\2601"} -.glyphicon-envelope:before{content:"\2709"} -.glyphicon-pencil:before{content:"\270f"} -.glyphicon-glass:before{content:"\e001"} -.glyphicon-music:before{content:"\e002"} -.glyphicon-search:before{content:"\e003"} -.glyphicon-heart:before{content:"\e005"} -.glyphicon-star:before{content:"\e006"} -.glyphicon-star-empty:before{content:"\e007"} -.glyphicon-user:before{content:"\e008"} -.glyphicon-film:before{content:"\e009"} -.glyphicon-th-large:before{content:"\e010"} -.glyphicon-th:before{content:"\e011"} -.glyphicon-th-list:before{content:"\e012"} -.glyphicon-ok:before{content:"\e013"} -.glyphicon-remove:before{content:"\e014"} -.glyphicon-zoom-in:before{content:"\e015"} -.glyphicon-zoom-out:before{content:"\e016"} -.glyphicon-off:before{content:"\e017"} -.glyphicon-signal:before{content:"\e018"} -.glyphicon-cog:before{content:"\e019"} -.glyphicon-trash:before{content:"\e020"} -.glyphicon-home:before{content:"\e021"} -.glyphicon-file:before{content:"\e022"} -.glyphicon-time:before{content:"\e023"} -.glyphicon-road:before{content:"\e024"} -.glyphicon-download-alt:before{content:"\e025"} -.glyphicon-download:before{content:"\e026"} -.glyphicon-upload:before{content:"\e027"} -.glyphicon-inbox:before{content:"\e028"} -.glyphicon-play-circle:before{content:"\e029"} -.glyphicon-repeat:before{content:"\e030"} -.glyphicon-refresh:before{content:"\e031"} -.glyphicon-list-alt:before{content:"\e032"} -.glyphicon-lock:before{content:"\e033"} -.glyphicon-flag:before{content:"\e034"} -.glyphicon-headphones:before{content:"\e035"} -.glyphicon-volume-off:before{content:"\e036"} -.glyphicon-volume-down:before{content:"\e037"} -.glyphicon-volume-up:before{content:"\e038"} -.glyphicon-qrcode:before{content:"\e039"} -.glyphicon-barcode:before{content:"\e040"} -.glyphicon-tag:before{content:"\e041"} -.glyphicon-tags:before{content:"\e042"} -.glyphicon-book:before{content:"\e043"} -.glyphicon-bookmark:before{content:"\e044"} -.glyphicon-print:before{content:"\e045"} -.glyphicon-camera:before{content:"\e046"} -.glyphicon-font:before{content:"\e047"} -.glyphicon-bold:before{content:"\e048"} -.glyphicon-italic:before{content:"\e049"} -.glyphicon-text-height:before{content:"\e050"} -.glyphicon-text-width:before{content:"\e051"} -.glyphicon-align-left:before{content:"\e052"} -.glyphicon-align-center:before{content:"\e053"} -.glyphicon-align-right:before{content:"\e054"} -.glyphicon-align-justify:before{content:"\e055"} -.glyphicon-list:before{content:"\e056"} -.glyphicon-indent-left:before{content:"\e057"} -.glyphicon-indent-right:before{content:"\e058"} -.glyphicon-facetime-video:before{content:"\e059"} -.glyphicon-picture:before{content:"\e060"} -.glyphicon-map-marker:before{content:"\e062"} -.glyphicon-adjust:before{content:"\e063"} -.glyphicon-tint:before{content:"\e064"} -.glyphicon-edit:before{content:"\e065"} -.glyphicon-share:before{content:"\e066"} -.glyphicon-check:before{content:"\e067"} -.glyphicon-move:before{content:"\e068"} -.glyphicon-step-backward:before{content:"\e069"} -.glyphicon-fast-backward:before{content:"\e070"} -.glyphicon-backward:before{content:"\e071"} -.glyphicon-play:before{content:"\e072"} -.glyphicon-pause:before{content:"\e073"} -.glyphicon-stop:before{content:"\e074"} -.glyphicon-forward:before{content:"\e075"} -.glyphicon-fast-forward:before{content:"\e076"} -.glyphicon-step-forward:before{content:"\e077"} -.glyphicon-eject:before{content:"\e078"} -.glyphicon-chevron-left:before{content:"\e079"} -.glyphicon-chevron-right:before{content:"\e080"} -.glyphicon-plus-sign:before{content:"\e081"} -.glyphicon-minus-sign:before{content:"\e082"} -.glyphicon-remove-sign:before{content:"\e083"} -.glyphicon-ok-sign:before{content:"\e084"} -.glyphicon-question-sign:before{content:"\e085"} -.glyphicon-info-sign:before{content:"\e086"} -.glyphicon-screenshot:before{content:"\e087"} -.glyphicon-remove-circle:before{content:"\e088"} -.glyphicon-ok-circle:before{content:"\e089"} -.glyphicon-ban-circle:before{content:"\e090"} -.glyphicon-arrow-left:before{content:"\e091"} -.glyphicon-arrow-right:before{content:"\e092"} -.glyphicon-arrow-up:before{content:"\e093"} -.glyphicon-arrow-down:before{content:"\e094"} -.glyphicon-share-alt:before{content:"\e095"} -.glyphicon-resize-full:before{content:"\e096"} -.glyphicon-resize-small:before{content:"\e097"} -.glyphicon-exclamation-sign:before{content:"\e101"} -.glyphicon-gift:before{content:"\e102"} -.glyphicon-leaf:before{content:"\e103"} -.glyphicon-fire:before{content:"\e104"} -.glyphicon-eye-open:before{content:"\e105"} -.glyphicon-eye-close:before{content:"\e106"} -.glyphicon-warning-sign:before{content:"\e107"} -.glyphicon-plane:before{content:"\e108"} -.glyphicon-calendar:before{content:"\e109"} -.glyphicon-random:before{content:"\e110"} -.glyphicon-comment:before{content:"\e111"} -.glyphicon-magnet:before{content:"\e112"} -.glyphicon-chevron-up:before{content:"\e113"} -.glyphicon-chevron-down:before{content:"\e114"} -.glyphicon-retweet:before{content:"\e115"} -.glyphicon-shopping-cart:before{content:"\e116"} -.glyphicon-folder-close:before{content:"\e117"} -.glyphicon-folder-open:before{content:"\e118"} -.glyphicon-resize-vertical:before{content:"\e119"} -.glyphicon-resize-horizontal:before{content:"\e120"} -.glyphicon-hdd:before{content:"\e121"} -.glyphicon-bullhorn:before{content:"\e122"} -.glyphicon-bell:before{content:"\e123"} -.glyphicon-certificate:before{content:"\e124"} -.glyphicon-thumbs-up:before{content:"\e125"} -.glyphicon-thumbs-down:before{content:"\e126"} -.glyphicon-hand-right:before{content:"\e127"} -.glyphicon-hand-left:before{content:"\e128"} -.glyphicon-hand-up:before{content:"\e129"} -.glyphicon-hand-down:before{content:"\e130"} -.glyphicon-circle-arrow-right:before{content:"\e131"} -.glyphicon-circle-arrow-left:before{content:"\e132"} -.glyphicon-circle-arrow-up:before{content:"\e133"} -.glyphicon-circle-arrow-down:before{content:"\e134"} -.glyphicon-globe:before{content:"\e135"} -.glyphicon-wrench:before{content:"\e136"} -.glyphicon-tasks:before{content:"\e137"} -.glyphicon-filter:before{content:"\e138"} -.glyphicon-briefcase:before{content:"\e139"} -.glyphicon-fullscreen:before{content:"\e140"} -.glyphicon-dashboard:before{content:"\e141"} -.glyphicon-paperclip:before{content:"\e142"} -.glyphicon-heart-empty:before{content:"\e143"} -.glyphicon-link:before{content:"\e144"} -.glyphicon-phone:before{content:"\e145"} -.glyphicon-pushpin:before{content:"\e146"} -.glyphicon-usd:before{content:"\e148"} -.glyphicon-gbp:before{content:"\e149"} -.glyphicon-sort:before{content:"\e150"} -.glyphicon-sort-by-alphabet:before{content:"\e151"} -.glyphicon-sort-by-alphabet-alt:before{content:"\e152"} -.glyphicon-sort-by-order:before{content:"\e153"} -.glyphicon-sort-by-order-alt:before{content:"\e154"} -.glyphicon-sort-by-attributes:before{content:"\e155"} -.glyphicon-sort-by-attributes-alt:before{content:"\e156"} -.glyphicon-unchecked:before{content:"\e157"} -.glyphicon-expand:before{content:"\e158"} -.glyphicon-collapse-down:before{content:"\e159"} -.glyphicon-collapse-up:before{content:"\e160"} -.glyphicon-log-in:before{content:"\e161"} -.glyphicon-flash:before{content:"\e162"} -.glyphicon-log-out:before{content:"\e163"} -.glyphicon-new-window:before{content:"\e164"} -.glyphicon-record:before{content:"\e165"} -.glyphicon-save:before{content:"\e166"} -.glyphicon-open:before{content:"\e167"} -.glyphicon-saved:before{content:"\e168"} -.glyphicon-import:before{content:"\e169"} -.glyphicon-export:before{content:"\e170"} -.glyphicon-send:before{content:"\e171"} -.glyphicon-floppy-disk:before{content:"\e172"} -.glyphicon-floppy-saved:before{content:"\e173"} -.glyphicon-floppy-remove:before{content:"\e174"} -.glyphicon-floppy-save:before{content:"\e175"} -.glyphicon-floppy-open:before{content:"\e176"} -.glyphicon-credit-card:before{content:"\e177"} -.glyphicon-transfer:before{content:"\e178"} -.glyphicon-cutlery:before{content:"\e179"} -.glyphicon-header:before{content:"\e180"} -.glyphicon-compressed:before{content:"\e181"} -.glyphicon-earphone:before{content:"\e182"} -.glyphicon-phone-alt:before{content:"\e183"} -.glyphicon-tower:before{content:"\e184"} -.glyphicon-stats:before{content:"\e185"} -.glyphicon-sd-video:before{content:"\e186"} -.glyphicon-hd-video:before{content:"\e187"} -.glyphicon-subtitles:before{content:"\e188"} -.glyphicon-sound-stereo:before{content:"\e189"} -.glyphicon-sound-dolby:before{content:"\e190"} -.glyphicon-sound-5-1:before{content:"\e191"} -.glyphicon-sound-6-1:before{content:"\e192"} -.glyphicon-sound-7-1:before{content:"\e193"} -.glyphicon-copyright-mark:before{content:"\e194"} -.glyphicon-registration-mark:before{content:"\e195"} -.glyphicon-cloud-download:before{content:"\e197"} -.glyphicon-cloud-upload:before{content:"\e198"} -.glyphicon-tree-conifer:before{content:"\e199"} -.glyphicon-tree-deciduous:before{content:"\e200"} -.glyphicon-cd:before{content:"\e201"} -.glyphicon-save-file:before{content:"\e202"} -.glyphicon-open-file:before{content:"\e203"} -.glyphicon-level-up:before{content:"\e204"} -.glyphicon-copy:before{content:"\e205"} -.glyphicon-paste:before{content:"\e206"} -.glyphicon-alert:before{content:"\e209"} -.glyphicon-equalizer:before{content:"\e210"} -.glyphicon-king:before{content:"\e211"} -.glyphicon-queen:before{content:"\e212"} -.glyphicon-pawn:before{content:"\e213"} -.glyphicon-bishop:before{content:"\e214"} -.glyphicon-knight:before{content:"\e215"} -.glyphicon-baby-formula:before{content:"\e216"} -.glyphicon-tent:before{content:"\26fa"} -.glyphicon-blackboard:before{content:"\e218"} -.glyphicon-bed:before{content:"\e219"} -.glyphicon-apple:before{content:"\f8ff"} -.glyphicon-erase:before{content:"\e221"} -.glyphicon-hourglass:before{content:"\231b"} -.glyphicon-lamp:before{content:"\e223"} -.glyphicon-duplicate:before{content:"\e224"} -.glyphicon-piggy-bank:before{content:"\e225"} -.glyphicon-scissors:before{content:"\e226"} -.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"} -.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"} -.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"} -.glyphicon-scale:before{content:"\e230"} -.glyphicon-ice-lolly:before{content:"\e231"} -.glyphicon-ice-lolly-tasted:before{content:"\e232"} -.glyphicon-education:before{content:"\e233"} -.glyphicon-option-horizontal:before{content:"\e234"} -.glyphicon-option-vertical:before{content:"\e235"} -.glyphicon-menu-hamburger:before{content:"\e236"} -.glyphicon-modal-window:before{content:"\e237"} -.glyphicon-oil:before{content:"\e238"} -.glyphicon-grain:before{content:"\e239"} -.glyphicon-sunglasses:before{content:"\e240"} -.glyphicon-text-size:before{content:"\e241"} -.glyphicon-text-color:before{content:"\e242"} -.glyphicon-text-background:before{content:"\e243"} -.glyphicon-object-align-top:before{content:"\e244"} -.glyphicon-object-align-bottom:before{content:"\e245"} -.glyphicon-object-align-horizontal:before{content:"\e246"} -.glyphicon-object-align-left:before{content:"\e247"} -.glyphicon-object-align-vertical:before{content:"\e248"} -.glyphicon-object-align-right:before{content:"\e249"} -.glyphicon-triangle-right:before{content:"\e250"} -.glyphicon-triangle-left:before{content:"\e251"} -.glyphicon-triangle-bottom:before{content:"\e252"} -.glyphicon-triangle-top:before{content:"\e253"} -.glyphicon-console:before{content:"\e254"} -.glyphicon-superscript:before{content:"\e255"} -.glyphicon-subscript:before{content:"\e256"} -.glyphicon-menu-left:before{content:"\e257"} -.glyphicon-menu-right:before{content:"\e258"} -.glyphicon-menu-down:before{content:"\e259"} -.glyphicon-menu-up:before{content:"\e260"} -*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -html{font-size:10px;-webkit-tap-highlight-color:transparent} -body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff} -button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit} -a{background-color:transparent;color:#337ab7;text-decoration:none} -a:focus,a:hover{color:#23527c;text-decoration:underline} -a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -figure{margin:0} -.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto} -.img-rounded{border-radius:6px} -.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:.2s ease-in-out;-o-transition:.2s ease-in-out;transition:.2s ease-in-out;display:inline-block;max-width:100%;height:auto} -.img-circle{border-radius:50%} -hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee} -.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0} -.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -[role=button]{cursor:pointer} -.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777} -.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%} -.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px} -.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%} -.h1,h1{font-size:36px} -.h2,h2{font-size:30px} -.h3,h3{font-size:24px} -.h4,h4{font-size:18px} -.h5,h5{font-size:14px} -.h6,h6{font-size:12px} -p{margin:0 0 10px} -.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4} -@media (min-width:768px){ -.lead{font-size:21px} -.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} -.dl-horizontal dd{margin-left:180px} -} -.small,small{font-size:85%} -.mark,mark{padding:.2em;background-color:#fcf8e3} -.text-left{text-align:left} -.text-right{text-align:right} -.text-center{text-align:center} -.text-justify{text-align:justify} -.text-nowrap{white-space:nowrap} -.text-lowercase{text-transform:lowercase} -.text-uppercase{text-transform:uppercase} -.text-capitalize{text-transform:capitalize} -.text-muted{color:#777} -.text-primary{color:#337ab7} -a.text-primary:focus,a.text-primary:hover{color:#286090} -.text-success{color:#3c763d} -a.text-success:focus,a.text-success:hover{color:#2b542c} -.text-info{color:#31708f} -a.text-info:focus,a.text-info:hover{color:#245269} -.text-warning{color:#8a6d3b} -a.text-warning:focus,a.text-warning:hover{color:#66512c} -.text-danger{color:#a94442} -a.text-danger:focus,a.text-danger:hover{color:#843534} -.bg-primary{color:#fff;background-color:#337ab7} -a.bg-primary:focus,a.bg-primary:hover{background-color:#286090} -.bg-success{background-color:#dff0d8} -a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3} -.bg-info{background-color:#d9edf7} -a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee} -.bg-warning{background-color:#fcf8e3} -a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5} -.bg-danger{background-color:#f2dede} -a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9} -.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee} -ol,ul{margin-top:0;margin-bottom:10px} -ol ol,ol ul,ul ol,ul ul{margin-bottom:0} -.list-unstyled{padding-left:0;list-style:none} -.list-inline{padding-left:0;list-style:none;margin-left:-5px} -.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px} -dl{margin-top:0;margin-bottom:20px} -dd,dt{line-height:1.42857143} -dt{font-weight:700} -dd{margin-left:0} -abbr[data-original-title],abbr[title]{cursor:help} -.initialism{font-size:90%;text-transform:uppercase} -blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee} -blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0} -blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777} -blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"} -.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0} -.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""} -.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"} -address{margin-bottom:20px;font-style:normal;line-height:1.42857143} -code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace} -code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px} -kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)} -kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none} -pre{overflow:auto;display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px} -pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0} -.pre-scrollable{max-height:340px;overflow-y:scroll} -.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto} -@media (min-width:768px){ -.container{width:750px} -} -@media (min-width:992px){ -.container{width:970px} -} -@media (min-width:1200px){ -.container{width:1170px} -} -.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto} -.row{margin-right:-15px;margin-left:-15px} -.row-no-gutters{margin-right:0;margin-left:0} -.row-no-gutters [class*=col-]{padding-right:0;padding-left:0} -.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px} -.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left} -.col-xs-12{width:100%} -.col-xs-11{width:91.66666667%} -.col-xs-10{width:83.33333333%} -.col-xs-9{width:75%} -.col-xs-8{width:66.66666667%} -.col-xs-7{width:58.33333333%} -.col-xs-6{width:50%} -.col-xs-5{width:41.66666667%} -.col-xs-4{width:33.33333333%} -.col-xs-3{width:25%} -.col-xs-2{width:16.66666667%} -.col-xs-1{width:8.33333333%} -.col-xs-pull-12{right:100%} -.col-xs-pull-11{right:91.66666667%} -.col-xs-pull-10{right:83.33333333%} -.col-xs-pull-9{right:75%} -.col-xs-pull-8{right:66.66666667%} -.col-xs-pull-7{right:58.33333333%} -.col-xs-pull-6{right:50%} -.col-xs-pull-5{right:41.66666667%} -.col-xs-pull-4{right:33.33333333%} -.col-xs-pull-3{right:25%} -.col-xs-pull-2{right:16.66666667%} -.col-xs-pull-1{right:8.33333333%} -.col-xs-pull-0{right:auto} -.col-xs-push-12{left:100%} -.col-xs-push-11{left:91.66666667%} -.col-xs-push-10{left:83.33333333%} -.col-xs-push-9{left:75%} -.col-xs-push-8{left:66.66666667%} -.col-xs-push-7{left:58.33333333%} -.col-xs-push-6{left:50%} -.col-xs-push-5{left:41.66666667%} -.col-xs-push-4{left:33.33333333%} -.col-xs-push-3{left:25%} -.col-xs-push-2{left:16.66666667%} -.col-xs-push-1{left:8.33333333%} -.col-xs-push-0{left:auto} -.col-xs-offset-12{margin-left:100%} -.col-xs-offset-11{margin-left:91.66666667%} -.col-xs-offset-10{margin-left:83.33333333%} -.col-xs-offset-9{margin-left:75%} -.col-xs-offset-8{margin-left:66.66666667%} -.col-xs-offset-7{margin-left:58.33333333%} -.col-xs-offset-6{margin-left:50%} -.col-xs-offset-5{margin-left:41.66666667%} -.col-xs-offset-4{margin-left:33.33333333%} -.col-xs-offset-3{margin-left:25%} -.col-xs-offset-2{margin-left:16.66666667%} -.col-xs-offset-1{margin-left:8.33333333%} -.col-xs-offset-0{margin-left:0} -@media (min-width:768px){ -.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left} -.col-sm-12{width:100%} -.col-sm-11{width:91.66666667%} -.col-sm-10{width:83.33333333%} -.col-sm-9{width:75%} -.col-sm-8{width:66.66666667%} -.col-sm-7{width:58.33333333%} -.col-sm-6{width:50%} -.col-sm-5{width:41.66666667%} -.col-sm-4{width:33.33333333%} -.col-sm-3{width:25%} -.col-sm-2{width:16.66666667%} -.col-sm-1{width:8.33333333%} -.col-sm-pull-12{right:100%} -.col-sm-pull-11{right:91.66666667%} -.col-sm-pull-10{right:83.33333333%} -.col-sm-pull-9{right:75%} -.col-sm-pull-8{right:66.66666667%} -.col-sm-pull-7{right:58.33333333%} -.col-sm-pull-6{right:50%} -.col-sm-pull-5{right:41.66666667%} -.col-sm-pull-4{right:33.33333333%} -.col-sm-pull-3{right:25%} -.col-sm-pull-2{right:16.66666667%} -.col-sm-pull-1{right:8.33333333%} -.col-sm-pull-0{right:auto} -.col-sm-push-12{left:100%} -.col-sm-push-11{left:91.66666667%} -.col-sm-push-10{left:83.33333333%} -.col-sm-push-9{left:75%} -.col-sm-push-8{left:66.66666667%} -.col-sm-push-7{left:58.33333333%} -.col-sm-push-6{left:50%} -.col-sm-push-5{left:41.66666667%} -.col-sm-push-4{left:33.33333333%} -.col-sm-push-3{left:25%} -.col-sm-push-2{left:16.66666667%} -.col-sm-push-1{left:8.33333333%} -.col-sm-push-0{left:auto} -.col-sm-offset-12{margin-left:100%} -.col-sm-offset-11{margin-left:91.66666667%} -.col-sm-offset-10{margin-left:83.33333333%} -.col-sm-offset-9{margin-left:75%} -.col-sm-offset-8{margin-left:66.66666667%} -.col-sm-offset-7{margin-left:58.33333333%} -.col-sm-offset-6{margin-left:50%} -.col-sm-offset-5{margin-left:41.66666667%} -.col-sm-offset-4{margin-left:33.33333333%} -.col-sm-offset-3{margin-left:25%} -.col-sm-offset-2{margin-left:16.66666667%} -.col-sm-offset-1{margin-left:8.33333333%} -.col-sm-offset-0{margin-left:0} -} -@media (min-width:992px){ -.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left} -.col-md-12{width:100%} -.col-md-11{width:91.66666667%} -.col-md-10{width:83.33333333%} -.col-md-9{width:75%} -.col-md-8{width:66.66666667%} -.col-md-7{width:58.33333333%} -.col-md-6{width:50%} -.col-md-5{width:41.66666667%} -.col-md-4{width:33.33333333%} -.col-md-3{width:25%} -.col-md-2{width:16.66666667%} -.col-md-1{width:8.33333333%} -.col-md-pull-12{right:100%} -.col-md-pull-11{right:91.66666667%} -.col-md-pull-10{right:83.33333333%} -.col-md-pull-9{right:75%} -.col-md-pull-8{right:66.66666667%} -.col-md-pull-7{right:58.33333333%} -.col-md-pull-6{right:50%} -.col-md-pull-5{right:41.66666667%} -.col-md-pull-4{right:33.33333333%} -.col-md-pull-3{right:25%} -.col-md-pull-2{right:16.66666667%} -.col-md-pull-1{right:8.33333333%} -.col-md-pull-0{right:auto} -.col-md-push-12{left:100%} -.col-md-push-11{left:91.66666667%} -.col-md-push-10{left:83.33333333%} -.col-md-push-9{left:75%} -.col-md-push-8{left:66.66666667%} -.col-md-push-7{left:58.33333333%} -.col-md-push-6{left:50%} -.col-md-push-5{left:41.66666667%} -.col-md-push-4{left:33.33333333%} -.col-md-push-3{left:25%} -.col-md-push-2{left:16.66666667%} -.col-md-push-1{left:8.33333333%} -.col-md-push-0{left:auto} -.col-md-offset-12{margin-left:100%} -.col-md-offset-11{margin-left:91.66666667%} -.col-md-offset-10{margin-left:83.33333333%} -.col-md-offset-9{margin-left:75%} -.col-md-offset-8{margin-left:66.66666667%} -.col-md-offset-7{margin-left:58.33333333%} -.col-md-offset-6{margin-left:50%} -.col-md-offset-5{margin-left:41.66666667%} -.col-md-offset-4{margin-left:33.33333333%} -.col-md-offset-3{margin-left:25%} -.col-md-offset-2{margin-left:16.66666667%} -.col-md-offset-1{margin-left:8.33333333%} -.col-md-offset-0{margin-left:0} -} -@media (min-width:1200px){ -.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left} -.col-lg-12{width:100%} -.col-lg-11{width:91.66666667%} -.col-lg-10{width:83.33333333%} -.col-lg-9{width:75%} -.col-lg-8{width:66.66666667%} -.col-lg-7{width:58.33333333%} -.col-lg-6{width:50%} -.col-lg-5{width:41.66666667%} -.col-lg-4{width:33.33333333%} -.col-lg-3{width:25%} -.col-lg-2{width:16.66666667%} -.col-lg-1{width:8.33333333%} -.col-lg-pull-12{right:100%} -.col-lg-pull-11{right:91.66666667%} -.col-lg-pull-10{right:83.33333333%} -.col-lg-pull-9{right:75%} -.col-lg-pull-8{right:66.66666667%} -.col-lg-pull-7{right:58.33333333%} -.col-lg-pull-6{right:50%} -.col-lg-pull-5{right:41.66666667%} -.col-lg-pull-4{right:33.33333333%} -.col-lg-pull-3{right:25%} -.col-lg-pull-2{right:16.66666667%} -.col-lg-pull-1{right:8.33333333%} -.col-lg-pull-0{right:auto} -.col-lg-push-12{left:100%} -.col-lg-push-11{left:91.66666667%} -.col-lg-push-10{left:83.33333333%} -.col-lg-push-9{left:75%} -.col-lg-push-8{left:66.66666667%} -.col-lg-push-7{left:58.33333333%} -.col-lg-push-6{left:50%} -.col-lg-push-5{left:41.66666667%} -.col-lg-push-4{left:33.33333333%} -.col-lg-push-3{left:25%} -.col-lg-push-2{left:16.66666667%} -.col-lg-push-1{left:8.33333333%} -.col-lg-push-0{left:auto} -.col-lg-offset-12{margin-left:100%} -.col-lg-offset-11{margin-left:91.66666667%} -.col-lg-offset-10{margin-left:83.33333333%} -.col-lg-offset-9{margin-left:75%} -.col-lg-offset-8{margin-left:66.66666667%} -.col-lg-offset-7{margin-left:58.33333333%} -.col-lg-offset-6{margin-left:50%} -.col-lg-offset-5{margin-left:41.66666667%} -.col-lg-offset-4{margin-left:33.33333333%} -.col-lg-offset-3{margin-left:25%} -.col-lg-offset-2{margin-left:16.66666667%} -.col-lg-offset-1{margin-left:8.33333333%} -.col-lg-offset-0{margin-left:0} -} -table{border-collapse:collapse;border-spacing:0;background-color:transparent} -table col[class*=col-]{position:static;display:table-column;float:none} -table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none} -caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left} -th{text-align:left} -.table{width:100%;max-width:100%;margin-bottom:20px} -.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd} -.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd} -.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0} -.table>tbody+tbody{border-top:2px solid #ddd} -.table .table{background-color:#fff} -.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px} -.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd} -.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px} -.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9} -.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5} -.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8} -.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8} -.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6} -.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7} -.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3} -.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3} -.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc} -.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede} -.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc} -.table-responsive{min-height:.01%;overflow-x:auto} -@media screen and (max-width:767px){ -.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd} -.table-responsive>.table{margin-bottom:0} -.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap} -.table-responsive>.table-bordered{border:0} -.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0} -} -fieldset{min-width:0;padding:0;margin:0;border:0} -legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5} -label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700} -input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none} -input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal} -fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed} -input[type=file]{display:block} -input[type=range]{display:block;width:100%} -select[multiple],select[size]{height:auto} -input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555} -.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out} -.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)} -.form-control::-moz-placeholder{color:#999;opacity:1} -.form-control:-ms-input-placeholder{color:#999} -.form-control::-webkit-input-placeholder{color:#999} -.form-control::-ms-expand{background-color:transparent;border:0} -.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1} -.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed} -textarea.form-control{height:auto} -@media screen and (-webkit-min-device-pixel-ratio:0){ -input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px} -.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px} -.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px} -} -.form-group{margin-bottom:15px} -.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px} -.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed} -.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer} -.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px} -.checkbox+.checkbox,.radio+.radio{margin-top:-5px} -.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer} -.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed} -.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px} -.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0} -.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0} -.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -select.input-sm{height:30px;line-height:30px} -select[multiple].input-sm,textarea.input-sm{height:auto} -.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -.form-group-sm select.form-control{height:30px;line-height:30px} -.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto} -.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5} -.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -select.input-lg{height:46px;line-height:46px} -select[multiple].input-lg,textarea.input-lg{height:auto} -.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -.form-group-lg select.form-control{height:46px;line-height:46px} -.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto} -.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333} -.has-feedback{position:relative} -.has-feedback .form-control{padding-right:42.5px} -.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none} -.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px} -.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px} -.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d} -.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168} -.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d} -.has-success .form-control-feedback{color:#3c763d} -.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b} -.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b} -.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b} -.has-warning .form-control-feedback{color:#8a6d3b} -.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442} -.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483} -.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442} -.has-error .form-control-feedback{color:#a94442} -.has-feedback label~.form-control-feedback{top:25px} -.has-feedback label.sr-only~.form-control-feedback{top:0} -.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373} -.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0} -.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px} -.form-horizontal .form-group{margin-right:-15px;margin-left:-15px} -.form-horizontal .has-feedback .form-control-feedback{right:15px} -@media (min-width:768px){ -.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} -.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} -.form-inline .form-control-static{display:inline-block} -.form-inline .input-group{display:inline-table;vertical-align:middle} -.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto} -.form-inline .input-group>.form-control{width:100%} -.form-inline .control-label{margin-bottom:0;vertical-align:middle} -.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.form-inline .checkbox label,.form-inline .radio label{padding-left:0} -.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0} -.form-inline .has-feedback .form-control-feedback{top:0} -.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right} -.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px} -.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px} -} -.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} -.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none} -.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none} -a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none} -.btn-default{color:#333;background-color:#fff;border-color:#ccc} -.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c} -.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad} -.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad} -.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c} -.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc} -.btn-default .badge{color:#fff;background-color:#333} -.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4} -.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40} -.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74} -.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74} -.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40} -.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4} -.btn-primary .badge{color:#337ab7;background-color:#fff} -.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c} -.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625} -.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439} -.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439} -.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625} -.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c} -.btn-success .badge{color:#5cb85c;background-color:#fff} -.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da} -.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85} -.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc} -.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc} -.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85} -.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da} -.btn-info .badge{color:#5bc0de;background-color:#fff} -.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236} -.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d} -.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512} -.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512} -.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d} -.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236} -.btn-warning .badge{color:#f0ad4e;background-color:#fff} -.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a} -.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19} -.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925} -.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925} -.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19} -.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a} -.btn-danger .badge{color:#d9534f;background-color:#fff} -.btn-link{font-weight:400;color:#337ab7;border-radius:0} -.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none} -.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent} -.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent} -.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none} -.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-block{display:block;width:100%} -.btn-block+.btn-block{margin-top:5px} -input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%} -.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear} -.fade.in{opacity:1} -.collapse{display:none} -.collapse.in{display:block} -tr.collapse.in{display:table-row} -tbody.collapse.in{display:table-row-group} -.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease} -.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent} -.dropdown,.dropup{position:relative} -.dropdown-toggle:focus{outline:0} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)} -.dropdown-menu.pull-right{right:0;left:auto} -.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap} -.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777} -.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none} -.open>.dropdown-menu{display:block} -.open>a{outline:0} -.dropdown-menu-right{right:0;left:auto} -.dropdown-menu-left{right:auto;left:0} -.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap} -.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990} -.pull-right>.dropdown-menu{right:0;left:auto} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px} -.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle} -.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left} -.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2} -.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px} -.btn-toolbar{margin-left:-5px} -.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left} -.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px} -.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0} -.btn-group>.btn:first-child{margin-left:0} -.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0} -.btn-group>.btn-group{float:left} -.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0} -.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} -.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px} -.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px} -.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none} -.btn .caret{margin-left:0} -.btn-lg .caret{border-width:5px 5px 0} -.dropup .btn-lg .caret{border-width:0 5px 5px} -.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%} -.btn-group-vertical>.btn-group>.btn{float:none} -.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0} -.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0} -.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0} -.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0} -.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate} -.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%} -.btn-group-justified>.btn-group .btn{width:100%} -.btn-group-justified>.btn-group .dropdown-menu{left:auto} -[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none} -.input-group{position:relative;display:table;border-collapse:separate} -.input-group[class*=col-]{float:none;padding-right:0;padding-left:0} -.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0} -.input-group .form-control:focus{z-index:3} -.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px} -select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto} -.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px} -select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto} -.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell} -.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0} -.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle} -.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px} -.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px} -.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px} -.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0} -.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.input-group-addon:first-child{border-right:0} -.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0} -.input-group-addon:last-child{border-left:0} -.input-group-btn{position:relative;font-size:0;white-space:nowrap} -.input-group-btn>.btn{position:relative} -.input-group-btn>.btn+.btn{margin-left:-1px} -.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2} -.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px} -.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px} -.nav{padding-left:0;margin-bottom:0;list-style:none} -.nav>li{position:relative;display:block} -.nav>li>a{position:relative;display:block;padding:10px 15px} -.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee} -.nav>li.disabled>a{color:#777} -.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent} -.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7} -.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.nav>li>a>img{max-width:none} -.nav-tabs{border-bottom:1px solid #ddd} -.nav-tabs>li{float:left;margin-bottom:-1px} -.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0} -.nav-tabs>li>a:hover{border-color:#eee #eee #ddd} -.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent} -.nav-tabs.nav-justified{width:100%;border-bottom:0} -.nav-tabs.nav-justified>li{float:none} -.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center;margin-right:0;border-radius:4px} -.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd} -.nav-pills>li{float:left} -.nav-pills>li>a{border-radius:4px} -.nav-pills>li+li{margin-left:2px} -.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7} -.nav-stacked>li{float:none} -.nav-stacked>li+li{margin-top:2px;margin-left:0} -.nav-justified{width:100%} -.nav-justified>li{float:none} -.nav-justified>li>a{margin-bottom:5px;text-align:center} -.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -@media (min-width:768px){ -.navbar-right .dropdown-menu{right:0;left:auto} -.navbar-right .dropdown-menu-left{right:auto;left:0} -.nav-tabs.nav-justified>li{display:table-cell;width:1%} -.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff} -.nav-justified>li{display:table-cell;width:1%} -.nav-justified>li>a{margin-bottom:0} -} -.nav-tabs-justified{border-bottom:0} -.nav-tabs-justified>li>a{margin-right:0;border-radius:4px} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){ -.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff} -} -.tab-content>.tab-pane{display:none} -.tab-content>.active{display:block} -.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0} -.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent} -.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch} -.navbar-collapse.in{overflow-y:auto} -.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px} -@media (max-device-width:480px) and (orientation:landscape){ -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px} -} -@media (min-width:768px){ -.navbar{border-radius:4px} -.navbar-header{float:left} -.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important} -.navbar-collapse.in{overflow-y:visible} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0} -.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0} -} -.navbar-fixed-top{top:0;border-width:0 0 1px} -.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0} -.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px} -.navbar-static-top{z-index:1000;border-width:0 0 1px} -.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px} -.navbar-brand:focus,.navbar-brand:hover{text-decoration:none} -.navbar-brand>img{display:block} -@media (min-width:768px){ -.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0} -.navbar-static-top{border-radius:0} -.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px} -.navbar-toggle{display:none} -} -.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px} -.navbar-toggle:focus{outline:0} -.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px} -.navbar-toggle .icon-bar+.icon-bar{margin-top:4px} -.navbar-nav{margin:7.5px -15px} -.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px} -@media (max-width:767px){ -.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px} -.navbar-nav .open .dropdown-menu>li>a{line-height:20px} -.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none} -} -@media (min-width:768px){ -.navbar-nav{float:left;margin:0} -.navbar-nav>li{float:left} -.navbar-nav>li>a{padding-top:15px;padding-bottom:15px} -.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} -.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle} -.navbar-form .form-control-static{display:inline-block} -.navbar-form .input-group{display:inline-table;vertical-align:middle} -.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto} -.navbar-form .input-group>.form-control{width:100%} -.navbar-form .control-label{margin-bottom:0;vertical-align:middle} -.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0} -.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0} -.navbar-form .has-feedback .form-control-feedback{top:0} -} -.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px} -@media (max-width:767px){ -.navbar-form .form-group{margin-bottom:5px} -.navbar-form .form-group:last-child{margin-bottom:0} -.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777} -.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent} -} -@media (min-width:768px){ -.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-text{float:left;margin-right:15px;margin-left:15px} -} -.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0} -.navbar-btn{margin-top:8px;margin-bottom:8px} -.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px} -.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px} -.navbar-text{margin-top:15px;margin-bottom:15px} -@media (min-width:768px){ -.navbar-left{float:left!important} -.navbar-right{float:right!important;margin-right:-15px} -.navbar-right~.navbar-right{margin-right:0} -} -.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7} -.navbar-default .navbar-brand{color:#777} -.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent} -.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777} -.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent} -.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-toggle{border-color:#ddd} -.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd} -.navbar-default .navbar-toggle .icon-bar{background-color:#888} -.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7} -.navbar-default .navbar-link{color:#777} -.navbar-default .navbar-link:hover{color:#333} -.navbar-default .btn-link{color:#777} -.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333} -.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc} -.navbar-inverse{background-color:#222;border-color:#080808} -.navbar-inverse .navbar-brand{color:#9d9d9d} -.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d} -.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent} -.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808} -@media (max-width:767px){ -.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent} -} -.navbar-inverse .navbar-toggle{border-color:#333} -.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333} -.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff} -.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010} -.navbar-inverse .navbar-link{color:#9d9d9d} -.navbar-inverse .navbar-link:hover{color:#fff} -.navbar-inverse .btn-link{color:#9d9d9d} -.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff} -.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444} -.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px} -.breadcrumb>li{display:inline-block} -.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"} -.breadcrumb>.active{color:#777} -.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px} -.pagination>li{display:inline} -.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd} -.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd} -.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px} -.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px} -.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7} -.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd} -.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333} -.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px} -.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px} -.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5} -.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px} -.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px} -.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none} -.pager li{display:inline} -.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px} -.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee} -.pager .next>a,.pager .next>span{float:right} -.pager .previous>a,.pager .previous>span{float:left} -.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff} -.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em} -a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer} -.label:empty{display:none} -.btn .label{position:relative;top:-1px} -.label-default{background-color:#777} -.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e} -.label-primary{background-color:#337ab7} -.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090} -.label-success{background-color:#5cb85c} -.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44} -.label-info{background-color:#5bc0de} -.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5} -.label-warning{background-color:#f0ad4e} -.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f} -.label-danger{background-color:#d9534f} -.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c} -.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px} -.badge:empty{display:none} -.btn .badge{position:relative;top:-1px} -.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px} -a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer} -.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff} -.list-group-item>.badge{float:right} -.list-group-item>.badge+.badge{margin-right:5px} -.nav-pills>li>a>.badge{margin-left:3px} -.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee} -.jumbotron .h1,.jumbotron h1{color:inherit} -.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200} -.jumbotron>hr{border-top-color:#d5d5d5} -.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px} -.jumbotron .container{max-width:100%} -@media screen and (min-width:768px){ -.jumbotron{padding-top:48px;padding-bottom:48px} -.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px} -.jumbotron .h1,.jumbotron h1{font-size:63px} -} -.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out} -.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto} -a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7} -.thumbnail .caption{padding:9px;color:#333} -.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px} -.alert h4{margin-top:0;color:inherit} -.alert .alert-link{font-weight:700} -.alert>p,.alert>ul{margin-bottom:0} -.alert>p+p{margin-top:5px} -.alert-dismissable,.alert-dismissible{padding-right:35px} -.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit} -.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.alert-success hr{border-top-color:#c9e2b3} -.alert-success .alert-link{color:#2b542c} -.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.alert-info hr{border-top-color:#a6e1ec} -.alert-info .alert-link{color:#245269} -.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.alert-warning hr{border-top-color:#f7e1b5} -.alert-warning .alert-link{color:#66512c} -.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.alert-danger hr{border-top-color:#e4b9c0} -.alert-danger .alert-link{color:#843534} -@-webkit-keyframes progress-bar-stripes{ -from{background-position:40px 0} -to{background-position:0 0} -} -@-o-keyframes progress-bar-stripes{ -from{background-position:40px 0} -to{background-position:0 0} -} -@keyframes progress-bar-stripes{ -from{background-position:40px 0} -to{background-position:0 0} -} -.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)} -.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s;-o-transition:width .6s;transition:width .6s} -.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px} -.progress-bar.active,.progress.active .progress-bar{-webkit-animation:2s linear infinite progress-bar-stripes;-o-animation:2s linear infinite progress-bar-stripes;animation:2s linear infinite progress-bar-stripes} -.progress-bar-success{background-color:#5cb85c} -.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-info{background-color:#5bc0de} -.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-warning{background-color:#f0ad4e} -.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-danger{background-color:#d9534f} -.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.media{margin-top:15px} -.media:first-child{margin-top:0} -.media,.media-body{overflow:hidden;zoom:1} -.media-body{width:10000px} -.media-object{display:block} -.media-object.img-thumbnail{max-width:none} -.media-right,.media>.pull-right{padding-left:10px} -.media-left,.media>.pull-left{padding-right:10px} -.media-body,.media-left,.media-right{display:table-cell;vertical-align:top} -.media-middle{vertical-align:middle} -.media-bottom{vertical-align:bottom} -.media-heading{margin-top:0;margin-bottom:5px} -.media-list{padding-left:0;list-style:none} -.list-group{padding-left:0;margin-bottom:20px} -.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd} -.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px} -.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px} -.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee} -.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit} -.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777} -.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7} -.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit} -.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef} -a.list-group-item,button.list-group-item{color:#555} -a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333} -a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5} -button.list-group-item{width:100%;text-align:left} -.list-group-item-success{color:#3c763d;background-color:#dff0d8} -a.list-group-item-success,button.list-group-item-success{color:#3c763d} -a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit} -a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6} -a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d} -.list-group-item-info{color:#31708f;background-color:#d9edf7} -a.list-group-item-info,button.list-group-item-info{color:#31708f} -a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit} -a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3} -a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f} -.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3} -a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b} -a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit} -a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc} -a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b} -.list-group-item-danger{color:#a94442;background-color:#f2dede} -a.list-group-item-danger,button.list-group-item-danger{color:#a94442} -a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit} -a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc} -a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442} -.list-group-item-heading{margin-top:0;margin-bottom:5px} -.list-group-item-text{margin-bottom:0;line-height:1.3} -.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)} -.panel-body{padding:15px} -.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px} -.panel-heading>.dropdown .dropdown-toggle{color:inherit} -.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit} -.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit} -.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0} -.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0} -.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0} -.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0} -.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0} -.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px} -.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px} -.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px} -.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd} -.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0} -.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0} -.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0} -.panel>.table-responsive{margin-bottom:0;border:0} -.panel-group{margin-bottom:20px} -.panel-group .panel{margin-bottom:0;border-radius:4px} -.panel-group .panel+.panel{margin-top:5px} -.panel-group .panel-heading{border-bottom:0} -.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd} -.panel-group .panel-footer{border-top:0} -.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd} -.panel-default{border-color:#ddd} -.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd} -.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd} -.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333} -.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd} -.panel-primary{border-color:#337ab7} -.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7} -.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7} -.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff} -.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7} -.panel-success{border-color:#d6e9c6} -.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6} -.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d} -.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6} -.panel-info{border-color:#bce8f1} -.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1} -.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f} -.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1} -.panel-warning{border-color:#faebcc} -.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc} -.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b} -.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc} -.panel-danger{border-color:#ebccd1} -.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1} -.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442} -.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1} -.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden} -.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0} -.embed-responsive-16by9{padding-bottom:56.25%} -.embed-responsive-4by3{padding-bottom:75%} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)} -.well blockquote{border-color:rgba(0,0,0,.15)} -.well-lg{padding:24px;border-radius:6px} -.well-sm{padding:9px;border-radius:3px} -.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2} -.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5} -button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none} -.modal-open{overflow:hidden} -.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0} -.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out} -.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)} -.modal-open .modal{overflow-x:hidden;overflow-y:auto} -.modal-dialog{position:relative;width:auto;margin:10px} -.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0} -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000} -.modal-backdrop.fade{opacity:0} -.modal-backdrop.in{opacity:.5} -.modal-header{padding:15px;border-bottom:1px solid #e5e5e5} -.modal-header .close{margin-top:-2px} -.modal-title{margin:0;line-height:1.42857143} -.modal-body{position:relative;padding:15px} -.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5} -.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px} -.modal-footer .btn-group .btn+.btn{margin-left:-1px} -.modal-footer .btn-block+.btn-block{margin-left:0} -.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll} -@media (min-width:768px){ -.modal-dialog{width:600px;margin:30px auto} -.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)} -.modal-sm{width:300px} -} -@media (min-width:992px){ -.modal-lg{width:900px} -} -.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;opacity:0} -.tooltip.in{opacity:.9} -.tooltip.top{padding:5px 0;margin-top:-3px} -.tooltip.right{padding:0 5px;margin-left:3px} -.tooltip.bottom{padding:5px 0;margin-top:3px} -.tooltip.left{padding:0 5px;margin-left:-3px} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} -.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)} -.popover.top{margin-top:-10px} -.popover.right{margin-left:10px} -.popover.bottom{margin-top:10px} -.popover.left{margin-left:-10px} -.popover>.arrow{border-width:11px} -.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} -.popover>.arrow:after{content:"";border-width:10px} -.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0,0,0,.25);border-bottom-width:0} -.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0} -.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25);border-left-width:0} -.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0} -.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25)} -.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff} -.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)} -.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff} -.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0} -.popover-content{padding:9px 14px} -.carousel{position:relative} -.carousel-inner{position:relative;width:100%;overflow:hidden} -.carousel-inner>.item{position:relative;display:none;-webkit-transition:left .6s ease-in-out;-o-transition:left .6s ease-in-out;transition:left .6s ease-in-out} -.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1} -@media all and (transform-3d),(-webkit-transform-3d){ -.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px} -.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0} -.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0} -.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0} -} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} -.carousel-inner>.active{left:0} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} -.carousel-inner>.next{left:100%} -.carousel-inner>.prev{left:-100%} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} -.carousel-inner>.active.left{left:-100%} -.carousel-inner>.active.right{left:100%} -.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5} -.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x} -.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x} -.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9} -.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px} -.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1} -.carousel-control .icon-prev:before{content:"\2039"} -.carousel-control .icon-next:before{content:"\203a"} -.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none} -.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px} -.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff} -.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)} -.carousel-caption .btn{text-shadow:none} -@media screen and (min-width:768px){ -.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px} -.carousel-caption{right:20%;left:20%;padding-bottom:30px} -.carousel-indicators{bottom:20px} -} -.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "} -.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both} -.center-block{display:block;margin-right:auto;margin-left:auto} -.pull-right{float:right!important} -.pull-left{float:left!important} -.hide{display:none!important} -.show{display:block!important} -.invisible{visibility:hidden} -.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} -.hidden{display:none!important} -.affix{position:fixed} -@-ms-viewport{width:device-width} -.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important} -@media (max-width:767px){ -.visible-xs{display:block!important} -table.visible-xs{display:table!important} -tr.visible-xs{display:table-row!important} -td.visible-xs,th.visible-xs{display:table-cell!important} -.visible-xs-block{display:block!important} -.visible-xs-inline{display:inline!important} -.visible-xs-inline-block{display:inline-block!important} -} -@media (min-width:768px) and (max-width:991px){ -.visible-sm{display:block!important} -table.visible-sm{display:table!important} -tr.visible-sm{display:table-row!important} -td.visible-sm,th.visible-sm{display:table-cell!important} -.visible-sm-block{display:block!important} -.visible-sm-inline{display:inline!important} -.visible-sm-inline-block{display:inline-block!important} -} -@media (min-width:992px) and (max-width:1199px){ -.visible-md{display:block!important} -table.visible-md{display:table!important} -tr.visible-md{display:table-row!important} -td.visible-md,th.visible-md{display:table-cell!important} -.visible-md-block{display:block!important} -.visible-md-inline{display:inline!important} -.visible-md-inline-block{display:inline-block!important} -} -@media (min-width:1200px){ -.visible-lg{display:block!important} -table.visible-lg{display:table!important} -tr.visible-lg{display:table-row!important} -td.visible-lg,th.visible-lg{display:table-cell!important} -.visible-lg-block{display:block!important} -.visible-lg-inline{display:inline!important} -.visible-lg-inline-block{display:inline-block!important} -.hidden-lg{display:none!important} -} -@media (max-width:767px){ -.hidden-xs{display:none!important} -} -@media (min-width:768px) and (max-width:991px){ -.hidden-sm{display:none!important} -} -@media (min-width:992px) and (max-width:1199px){ -.hidden-md{display:none!important} -} -.visible-print{display:none!important} -@media print{ -.visible-print{display:block!important} -table.visible-print{display:table!important} -tr.visible-print{display:table-row!important} -td.visible-print,th.visible-print{display:table-cell!important} -} -.visible-print-block{display:none!important} -@media print{ -.visible-print-block{display:block!important} -} -.visible-print-inline{display:none!important} -@media print{ -.visible-print-inline{display:inline!important} -} -.visible-print-inline-block{display:none!important} -@media print{ -.visible-print-inline-block{display:inline-block!important} -.hidden-print{display:none!important} -} -.hljs{display:block;background:#fff;padding:.5em;color:#333;overflow-x:auto} -.hljs-comment,.hljs-meta{color:#969896} -.hljs-emphasis,.hljs-quote,.hljs-string,.hljs-strong,.hljs-template-variable,.hljs-variable{color:#df5000} -.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d} -.hljs-attribute,.hljs-bullet,.hljs-literal,.hljs-symbol{color:#0086b3} -.hljs-name,.hljs-section{color:#63a35c} -.hljs-tag{color:#333} -.hljs-attr,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-title{color:#795da3} -.hljs-addition{color:#55a532;background-color:#eaffea} -.hljs-deletion{color:#bd2c00;background-color:#ffecec} -.hljs-link{text-decoration:underline} \ No newline at end of file diff --git a/docs/styles/docfx.vendor.js b/docs/styles/docfx.vendor.js deleted file mode 100644 index 5d30fc0cd0..0000000000 --- a/docs/styles/docfx.vendor.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,(function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le((function(o){return o=+o,le((function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))}))}))}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce((function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),d.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),d.getElementsByTagName=ce((function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length})),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce((function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length})),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce((function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")}))),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce((function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)})),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,(function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,(function(e,t){return!!n.call(e,t,e)!==r})):n.nodeType?S.grep(e,(function(e){return e===n!==r})):"string"!=typeof n?S.grep(e,(function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter((function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "],col:[2,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "],tr:[2,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "],td:[3,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}}));var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",(function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always((function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0})),"script"})),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)})).always(n&&function(e,t){a.each((function(){n.apply(this,o||[e.responseText,t,e])}))}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,(function(e){return t===e.elem})).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each((function(e){S.offset.setOffset(this,t,e)}));var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map((function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re}))}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},(function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,(function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n}),t,e,arguments.length)}})),S.each(["top","left"],(function(e,n){S.cssHooks[n]=$e(y.pixelPosition,(function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t}))})),S.each({Height:"height",Width:"width"},(function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},(function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,(function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)}),s,n?e:void 0,n)}}))})),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],(function(e,t){S.fn[t]=function(e){return this.on(t,e)}})),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),(function(e,n){S.fn[n]=function(e,t){return 0this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",(function(){e.to(t)})):i==t?this.pause().cycle():this.slide(idocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},s.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},s.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},m.prototype.init=function(t,e,i){if(this.enabled=!0,this.type=t,this.$element=g(e),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&g(document).find(g.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var s=o[n];if("click"==s)this.$element.on("click."+this.type,this.options.selector,g.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",r="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,g.proxy(this.enter,this)),this.$element.on(r+"."+this.type,this.options.selector,g.proxy(this.leave,this))}}this.options.selector?this._options=g.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},m.prototype.getDefaults=function(){return m.DEFAULTS},m.prototype.getOptions=function(t){var e=this.$element.data();for(var i in e)e.hasOwnProperty(i)&&-1!==g.inArray(i,o)&&delete e[i];return(t=g.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=n(t.template,t.whiteList,t.sanitizeFn)),t},m.prototype.getDelegateOptions=function(){var i={},o=this.getDefaults();return this._options&&g.each(this._options,(function(t,e){o[t]!=e&&(i[t]=e)})),i},m.prototype.enter=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout((function(){"in"==e.hoverState&&e.show()}),e.options.delay.show)}},m.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},m.prototype.leave=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout((function(){"out"==e.hoverState&&e.hide()}),e.options.delay.hide)}},m.prototype.show=function(){var t=g.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=g.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var i=this,o=this.tip(),n=this.getUID(this.type);this.setContent(),o.attr("id",n),this.$element.attr("aria-describedby",n),this.options.animation&&o.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,o[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,r=a.test(s);r&&(s=s.replace(a,"")||"top"),o.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?o.appendTo(g(document).find(this.options.container)):o.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),h=o[0].offsetWidth,d=o[0].offsetHeight;if(r){var p=s,c=this.getPosition(this.$viewport);s="bottom"==s&&l.bottom+d>c.bottom?"top":"top"==s&&l.top-dc.width?"left":"left"==s&&l.left-ha.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;ha.right&&(n.left=a.left+a.width-d)}return n},m.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},m.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},m.prototype.tip=function(){if(!this.$tip&&(this.$tip=g(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},m.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},m.prototype.enable=function(){this.enabled=!0},m.prototype.disable=function(){this.enabled=!1},m.prototype.toggleEnabled=function(){this.enabled=!this.enabled},m.prototype.toggle=function(t){var e=this;t&&((e=g(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},m.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide((function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null}))},m.prototype.sanitizeHtml=function(t){return n(t,this.options.whiteList,this.options.sanitizeFn)};var e=g.fn.tooltip;g.fn.tooltip=function i(o){return this.each((function(){var t=g(this),e=t.data("bs.tooltip"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.tooltip",e=new m(this,i)),"string"==typeof o&&e[o]())}))},g.fn.tooltip.Constructor=m,g.fn.tooltip.noConflict=function(){return g.fn.tooltip=e,this}}(jQuery),function(n){"use strict";var s=function(t,e){this.init("popover",t,e)};if(!n.fn.tooltip)throw new Error("Popover requires tooltip.js");s.VERSION="3.4.1",s.DEFAULTS=n.extend({},n.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),((s.prototype=n.extend({},n.fn.tooltip.Constructor.prototype)).constructor=s).prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();if(this.options.html){var o=typeof i;this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===o&&(i=this.sanitizeHtml(i))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===o?"html":"append"](i)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(i);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},s.prototype.hasContent=function(){return this.getTitle()||this.getContent()},s.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=n.fn.popover;n.fn.popover=function e(o){return this.each((function(){var t=n(this),e=t.data("bs.popover"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.popover",e=new s(this,i)),"string"==typeof o&&e[o]())}))},n.fn.popover.Constructor=s,n.fn.popover.noConflict=function(){return n.fn.popover=t,this}}(jQuery),function(s){"use strict";function n(t,e){this.$body=s(document.body),this.$scrollElement=s(t).is(document.body)?s(window):s(t),this.options=s.extend({},n.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",s.proxy(this.process,this)),this.refresh(),this.process()}function e(o){return this.each((function(){var t=s(this),e=t.data("bs.scrollspy"),i="object"==typeof o&&o;e||t.data("bs.scrollspy",e=new n(this,i)),"string"==typeof o&&e[o]()}))}n.VERSION="3.4.1",n.DEFAULTS={offset:10},n.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},n.prototype.refresh=function(){var t=this,o="offset",n=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),s.isWindow(this.$scrollElement[0])||(o="position",n=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map((function(){var t=s(this),e=t.data("target")||t.attr("href"),i=/^#./.test(e)&&s(e);return i&&i.length&&i.is(":visible")&&[[i[o]().top+n,e]]||null})).sort((function(t,e){return t[0]-e[0]})).each((function(){t.offsets.push(this[0]),t.targets.push(this[1])}))},n.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),o<=e)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e=n[t]&&(n[t+1]===undefined||e .active"),n=i&&r.support.transition&&(o.length&&o.hasClass("fade")||!!e.find("> .fade").length);function s(){o.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),n?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),i&&i()}o.length&&n?o.one("bsTransitionEnd",s).emulateTransitionEnd(a.TRANSITION_DURATION):s(),o.removeClass("in")};var t=r.fn.tab;r.fn.tab=e,r.fn.tab.Constructor=a,r.fn.tab.noConflict=function(){return r.fn.tab=t,this};var i=function(t){t.preventDefault(),e.call(r(this),"show")};r(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery),function(l){"use strict";var h=function(t,e){this.options=l.extend({},h.DEFAULTS,e);var i=this.options.target===h.DEFAULTS.target?l(this.options.target):l(document).find(this.options.target);this.$target=i.on("scroll.bs.affix.data-api",l.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",l.proxy(this.checkPositionWithEventLoop,this)),this.$element=l(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function i(o){return this.each((function(){var t=l(this),e=t.data("bs.affix"),i="object"==typeof o&&o;e||t.data("bs.affix",e=new h(this,i)),"string"==typeof o&&e[o]()}))}h.VERSION="3.4.1",h.RESET="affix affix-top affix-bottom",h.DEFAULTS={offset:0,target:window},h.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return n/g,">")}function r(e){return e.nodeName.toLowerCase()}function a(e,t){var r=e&&e.exec(t);return r&&0===r.index}function i(e){return T.test(e)}function n(e){var t,r,a,n,o=e.className+" ";if(o+=e.parentNode?e.parentNode.className:"",r=w.exec(o))return S(r[1])?r[1]:"no-highlight";for(o=o.split(/\s+/),t=0,a=o.length;a>t;t++)if(n=o[t],i(n)||S(n))return n}function o(e){var t,r={},a=Array.prototype.slice.call(arguments,1);for(t in e)r[t]=e[t];return a.forEach((function(e){for(t in e)r[t]=e[t]})),r}function s(e){var t=[];return function a(e,i){for(var n=e.firstChild;n;n=n.nextSibling)3===n.nodeType?i+=n.nodeValue.length:1===n.nodeType&&(t.push({event:"start",offset:i,node:n}),i=a(n,i),r(n).match(/br|hr|img|input/)||t.push({event:"stop",offset:i,node:n}));return i}(e,0),t}function l(e,a,i){function n(){return e.length&&a.length?e[0].offset!==a[0].offset?e[0].offset"}function s(e){d+=""}function l(e){("start"===e.event?o:s)(e.node)}for(var c=0,d="",p=[];e.length||a.length;){var m=n();if(d+=t(i.substring(c,m[0].offset)),c=m[0].offset,m===e){p.reverse().forEach(s);do{l(m.splice(0,1)[0]),m=n()}while(m===e&&m.length&&m[0].offset===c);p.reverse().forEach(o)}else"start"===m[0].event?p.push(m[0].node):p.pop(),l(m.splice(0,1)[0])}return d+t(i.substr(c))}function c(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map((function(t){return o(e,{v:null},t)}))),e.cached_variants||e.eW&&[o(e)]||[e]}function d(e){function t(e){return e&&e.source||e}function r(r,a){return new RegExp(t(r),"m"+(e.cI?"i":"")+(a?"g":""))}function a(i,n){if(!i.compiled){if(i.compiled=!0,i.k=i.k||i.bK,i.k){var o={},s=function(t,r){e.cI&&(r=r.toLowerCase()),r.split(" ").forEach((function(e){var r=e.split("|");o[r[0]]=[t,r[1]?Number(r[1]):1]}))};"string"==typeof i.k?s("keyword",i.k):x(i.k).forEach((function(e){s(e,i.k[e])})),i.k=o}i.lR=r(i.l||/\w+/,!0),n&&(i.bK&&(i.b="\\b("+i.bK.split(" ").join("|")+")\\b"),i.b||(i.b=/\B|\b/),i.bR=r(i.b),i.e||i.eW||(i.e=/\B|\b/),i.e&&(i.eR=r(i.e)),i.tE=t(i.e)||"",i.eW&&n.tE&&(i.tE+=(i.e?"|":"")+n.tE)),i.i&&(i.iR=r(i.i)),null==i.r&&(i.r=1),i.c||(i.c=[]),i.c=Array.prototype.concat.apply([],i.c.map((function(e){return c("self"===e?i:e)}))),i.c.forEach((function(e){a(e,i)})),i.starts&&a(i.starts,n);var l=i.c.map((function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b})).concat([i.tE,i.i]).map(t).filter(Boolean);i.t=l.length?r(l.join("|"),!0):{exec:function(){return null}}}}a(e)}function p(e,r,i,n){function o(e,t){var r,i;for(r=0,i=t.c.length;i>r;r++)if(a(t.c[r].bR,e))return t.c[r]}function s(e,t){if(a(e.eR,t)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?s(e.parent,t):void 0}function l(e,t){return!i&&a(t.iR,e)}function c(e,t){var r=v.cI?t[0].toLowerCase():t[0];return e.k.hasOwnProperty(r)&&e.k[r]}function u(e,t,r,a){var i=a?"":D.classPrefix,n='',n+t+o}function b(){var e,r,a,i;if(!C.k)return t(T);for(i="",r=0,C.lR.lastIndex=0,a=C.lR.exec(T);a;)i+=t(T.substring(r,a.index)),e=c(C,a),e?(w+=e[1],i+=u(e[0],t(a[0]))):i+=t(a[0]),r=C.lR.lastIndex,a=C.lR.exec(T);return i+t(T.substr(r))}function g(){var e="string"==typeof C.sL;if(e&&!E[C.sL])return t(T);var r=e?p(C.sL,T,!0,x[C.sL]):m(T,C.sL.length?C.sL:void 0);return C.r>0&&(w+=r.r),e&&(x[C.sL]=r.top),u(r.language,r.value,!1,!0)}function f(){N+=null!=C.sL?g():b(),T=""}function _(e){N+=e.cN?u(e.cN,"",!0):"",C=Object.create(e,{parent:{value:C}})}function h(e,t){if(T+=e,null==t)return f(),0;var r=o(t,C);if(r)return r.skip?T+=t:(r.eB&&(T+=t),f(),r.rB||r.eB||(T=t)),_(r,t),r.rB?0:t.length;var a=s(C,t);if(a){var i=C;i.skip?T+=t:(i.rE||i.eE||(T+=t),f(),i.eE&&(T=t));do{C.cN&&(N+=M),C.skip||(w+=C.r),C=C.parent}while(C!==a.parent);return a.starts&&_(a.starts,""),i.rE?0:t.length}if(l(t,C))throw new Error('Illegal lexeme "'+t+'" for mode "'+(C.cN||"")+'"');return T+=t,t.length||1}var v=S(e);if(!v)throw new Error('Unknown language: "'+e+'"');d(v);var y,C=n||v,x={},N="";for(y=C;y!==v;y=y.parent)y.cN&&(N=u(y.cN,"",!0)+N);var T="",w=0;try{for(var A,I,k=0;;){if(C.t.lastIndex=k,A=C.t.exec(r),!A)break;I=h(r.substring(k,A.index),A[0]),k=A.index+I}for(h(r.substr(k)),y=C;y.parent;y=y.parent)y.cN&&(N+=M);return{r:w,value:N,language:e,top:C}}catch(R){if(R.message&&-1!==R.message.indexOf("Illegal"))return{r:0,value:t(r)};throw R}}function m(e,r){r=r||D.languages||x(E);var a={r:0,value:t(e)},i=a;return r.filter(S).forEach((function(t){var r=p(t,e,!1);r.language=t,r.r>i.r&&(i=r),r.r>a.r&&(i=a,a=r)})),i.language&&(a.second_best=i),a}function u(e){return D.tabReplace||D.useBR?e.replace(A,(function(e,t){return D.useBR&&"\n"===e?"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ":D.tabReplace?t.replace(/\t/g,D.tabReplace):""})):e}function b(e,t,r){var a=t?N[t]:r,i=[e.trim()];return e.match(/\bhljs\b/)||i.push("hljs"),-1===e.indexOf(a)&&i.push(a),i.join(" ").trim()}function g(e){var t,r,a,o,c,d=n(e);i(d)||(D.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e,c=t.textContent,a=d?p(d,c,!0):m(c),r=s(t),r.length&&(o=document.createElementNS("http://www.w3.org/1999/xhtml","div"),o.innerHTML=a.value,a.value=l(r,s(o),c)),a.value=u(a.value),e.innerHTML=a.value,e.className=b(e.className,d,a.language),e.result={language:a.language,re:a.r},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.r}))}function f(e){D=o(D,e)}function _(){if(!_.called){_.called=!0;var e=document.querySelectorAll("pre code");C.forEach.call(e,g)}}function h(){addEventListener("DOMContentLoaded",_,!1),addEventListener("load",_,!1)}function v(t,r){var a=E[t]=r(e);a.aliases&&a.aliases.forEach((function(e){N[e]=t}))}function y(){return x(E)}function S(e){return e=(e||"").toLowerCase(),E[e]||E[N[e]]}var C=[],x=Object.keys,E={},N={},T=/^(no-?highlight|plain|text)$/i,w=/\blang(?:uage)?-([\w-]+)\b/i,A=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,M="
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ",D={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0};return e.highlight=p,e.highlightAuto=m,e.fixMarkup=u,e.highlightBlock=g,e.configure=f,e.initHighlighting=_,e.initHighlightingOnLoad=h,e.registerLanguage=v,e.listLanguages=y,e.getLanguage=S,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},e.C=function(t,r,a){var i=e.inherit({cN:"comment",b:t,e:r,c:[]},a||{});return i.c.push(e.PWM),i.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),i},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e.registerLanguage("1c",(function(e){var t="[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]+",r="далее ",a="возврат вызватьисключение выполнить для если и из или иначе иначеесли исключение каждого конецесли конецпопытки конеццикла не новый перейти перем по пока попытка прервать продолжить тогда цикл экспорт ",i=r+a,n="загрузитьизфайла ",o="вебклиент вместо внешнеесоединение клиент конецобласти мобильноеприложениеклиент мобильноеприложениесервер наклиенте наклиентенасервере наклиентенасерверебезконтекста насервере насерверебезконтекста область перед после сервер толстыйклиентобычноеприложение толстыйклиентуправляемоеприложение тонкийклиент ",s=n+o,l="разделительстраниц разделительстрок символтабуляции ",c="ansitooem oemtoansi ввестивидсубконто ввестиперечисление ввестипериод ввестиплансчетов выбранныйплансчетов датагод датамесяц датачисло заголовоксистемы значениевстроку значениеизстроки каталогиб каталогпользователя кодсимв конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лог лог10 максимальноеколичествосубконто названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найтиссылки началопериодаби началостандартногоинтервала начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода обработкаожидания основнойжурналрасчетов основнойплансчетов основнойязык очиститьокносообщений периодстр получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта префиксавтонумерации пропись пустоезначение разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо симв создатьобъект статусвозврата стрколичествострок сформироватьпозициюдокумента счетпокоду текущеевремя типзначения типзначениястр установитьтана установитьтапо фиксшаблон шаблон ",d="acos asin atan base64значение base64строка cos exp log log10 pow sin sqrt tan xmlзначение xmlстрока xmlтип xmlтипзнч активноеокно безопасныйрежим безопасныйрежимразделенияданных булево ввестидату ввестизначение ввестистроку ввестичисло возможностьчтенияxml вопрос восстановитьзначение врег выгрузитьжурналрегистрации выполнитьобработкуоповещения выполнитьпроверкуправдоступа вычислить год данныеформывзначение дата день деньгода деньнедели добавитьмесяц заблокироватьданныедляредактирования заблокироватьработупользователя завершитьработусистемы загрузитьвнешнююкомпоненту закрытьсправку записатьjson записатьxml записатьдатуjson записьжурналарегистрации заполнитьзначениясвойств запроситьразрешениепользователя запуститьприложение запуститьсистему зафиксироватьтранзакцию значениевданныеформы значениевстрокувнутр значениевфайл значениезаполнено значениеизстрокивнутр значениеизфайла изxmlтипа импортмоделиxdto имякомпьютера имяпользователя инициализироватьпредопределенныеданные информацияобошибке каталогбиблиотекимобильногоустройства каталогвременныхфайлов каталогдокументов каталогпрограммы кодироватьстроку кодлокализацииинформационнойбазы кодсимвола командасистемы конецгода конецдня конецквартала конецмесяца конецминуты конецнедели конецчаса конфигурациябазыданныхизмененадинамически конфигурацияизменена копироватьданныеформы копироватьфайл краткоепредставлениеошибки лев макс местноевремя месяц мин минута монопольныйрежим найти найтинедопустимыесимволыxml найтиокнопонавигационнойссылке найтипомеченныенаудаление найтипоссылкам найтифайлы началогода началодня началоквартала началомесяца началоминуты началонедели началочаса начатьзапросразрешенияпользователя начатьзапускприложения начатькопированиефайла начатьперемещениефайла начатьподключениевнешнейкомпоненты начатьподключениерасширенияработыскриптографией начатьподключениерасширенияработысфайлами начатьпоискфайлов начатьполучениекаталогавременныхфайлов начатьполучениекаталогадокументов начатьполучениерабочегокаталогаданныхпользователя начатьполучениефайлов начатьпомещениефайла начатьпомещениефайлов начатьсозданиедвоичныхданныхизфайла начатьсозданиекаталога начатьтранзакцию начатьудалениефайлов начатьустановкувнешнейкомпоненты начатьустановкурасширенияработыскриптографией начатьустановкурасширенияработысфайлами неделягода необходимостьзавершениясоединения номерсеансаинформационнойбазы номерсоединенияинформационнойбазы нрег нстр обновитьинтерфейс обновитьнумерациюобъектов обновитьповторноиспользуемыезначения обработкапрерыванияпользователя объединитьфайлы окр описаниеошибки оповестить оповеститьобизменении отключитьобработчикзапросанастроекклиенталицензирования отключитьобработчикожидания отключитьобработчикоповещения открытьзначение открытьиндекссправки открытьсодержаниесправки открытьсправку открытьформу открытьформумодально отменитьтранзакцию очиститьжурналрегистрации очиститьнастройкипользователя очиститьсообщения параметрыдоступа перейтипонавигационнойссылке переместитьфайл подключитьвнешнююкомпоненту подключитьобработчикзапросанастроекклиенталицензирования подключитьобработчикожидания подключитьобработчикоповещения подключитьрасширениеработыскриптографией подключитьрасширениеработысфайлами подробноепредставлениеошибки показатьвводдаты показатьвводзначения показатьвводстроки показатьвводчисла показатьвопрос показатьзначение показатьинформациюобошибке показатьнакарте показатьоповещениепользователя показатьпредупреждение полноеимяпользователя получитьcomобъект получитьxmlтип получитьадреспоместоположению получитьблокировкусеансов получитьвремязавершенияспящегосеанса получитьвремязасыпанияпассивногосеанса получитьвремяожиданияблокировкиданных получитьданныевыбора получитьдополнительныйпараметрклиенталицензирования получитьдопустимыекодылокализации получитьдопустимыечасовыепояса получитьзаголовокклиентскогоприложения получитьзаголовоксистемы получитьзначенияотборажурналарегистрации получитьидентификаторконфигурации получитьизвременногохранилища получитьимявременногофайла получитьимяклиенталицензирования получитьинформациюэкрановклиента получитьиспользованиежурналарегистрации получитьиспользованиесобытияжурналарегистрации получитькраткийзаголовокприложения получитьмакетоформления получитьмаскувсефайлы получитьмаскувсефайлыклиента получитьмаскувсефайлысервера получитьместоположениепоадресу получитьминимальнуюдлинупаролейпользователей получитьнавигационнуюссылку получитьнавигационнуюссылкуинформационнойбазы получитьобновлениеконфигурациибазыданных получитьобновлениепредопределенныхданныхинформационнойбазы получитьобщиймакет получитьобщуюформу получитьокна получитьоперативнуюотметкувремени получитьотключениебезопасногорежима получитьпараметрыфункциональныхопцийинтерфейса получитьполноеимяпредопределенногозначения получитьпредставлениянавигационныхссылок получитьпроверкусложностипаролейпользователей получитьразделительпути получитьразделительпутиклиента получитьразделительпутисервера получитьсеансыинформационнойбазы получитьскоростьклиентскогосоединения получитьсоединенияинформационнойбазы получитьсообщенияпользователю получитьсоответствиеобъектаиформы получитьсоставстандартногоинтерфейсаodata получитьструктурухранениябазыданных получитьтекущийсеансинформационнойбазы получитьфайл получитьфайлы получитьформу получитьфункциональнуюопцию получитьфункциональнуюопциюинтерфейса получитьчасовойпоясинформационнойбазы пользователиос поместитьвовременноехранилище поместитьфайл поместитьфайлы прав праводоступа предопределенноезначение представлениекодалокализации представлениепериода представлениеправа представлениеприложения представлениесобытияжурналарегистрации представлениечасовогопояса предупреждение прекратитьработусистемы привилегированныйрежим продолжитьвызов прочитатьjson прочитатьxml прочитатьдатуjson пустаястрока рабочийкаталогданныхпользователя разблокироватьданныедляредактирования разделитьфайл разорватьсоединениесвнешнимисточникомданных раскодироватьстроку рольдоступна секунда сигнал символ скопироватьжурналрегистрации смещениелетнеговремени смещениестандартноговремени соединитьбуферыдвоичныхданных создатькаталог создатьфабрикуxdto сокрл сокрлп сокрп сообщить состояние сохранитьзначение сохранитьнастройкипользователя сред стрдлина стрзаканчиваетсяна стрзаменить стрнайти стрначинаетсяс строка строкасоединенияинформационнойбазы стрполучитьстроку стрразделить стрсоединить стрсравнить стрчисловхождений стрчислострок стршаблон текущаядата текущаядатасеанса текущаяуниверсальнаядата текущаяуниверсальнаядатавмиллисекундах текущийвариантинтерфейсаклиентскогоприложения текущийвариантосновногошрифтаклиентскогоприложения текущийкодлокализации текущийрежимзапуска текущийязык текущийязыксистемы тип типзнч транзакцияактивна трег удалитьданныеинформационнойбазы удалитьизвременногохранилища удалитьобъекты удалитьфайлы универсальноевремя установитьбезопасныйрежим установитьбезопасныйрежимразделенияданных установитьблокировкусеансов установитьвнешнююкомпоненту установитьвремязавершенияспящегосеанса установитьвремязасыпанияпассивногосеанса установитьвремяожиданияблокировкиданных установитьзаголовокклиентскогоприложения установитьзаголовоксистемы установитьиспользованиежурналарегистрации установитьиспользованиесобытияжурналарегистрации установитькраткийзаголовокприложения установитьминимальнуюдлинупаролейпользователей установитьмонопольныйрежим установитьнастройкиклиенталицензирования установитьобновлениепредопределенныхданныхинформационнойбазы установитьотключениебезопасногорежима установитьпараметрыфункциональныхопцийинтерфейса установитьпривилегированныйрежим установитьпроверкусложностипаролейпользователей установитьрасширениеработыскриптографией установитьрасширениеработысфайлами установитьсоединениесвнешнимисточникомданных установитьсоответствиеобъектаиформы установитьсоставстандартногоинтерфейсаodata установитьчасовойпоясинформационнойбазы установитьчасовойпояссеанса формат цел час часовойпояс часовойпояссеанса число числопрописью этоадресвременногохранилища ",p="wsссылки библиотекакартинок библиотекамакетовоформлениякомпоновкиданных библиотекастилей бизнеспроцессы внешниеисточникиданных внешниеобработки внешниеотчеты встроенныепокупки главныйинтерфейс главныйстиль документы доставляемыеуведомления журналыдокументов задачи информацияобинтернетсоединении использованиерабочейдаты историяработыпользователя константы критерииотбора метаданные обработки отображениерекламы отправкадоставляемыхуведомлений отчеты панельзадачос параметрзапуска параметрысеанса перечисления планывидоврасчета планывидовхарактеристик планыобмена планысчетов полнотекстовыйпоиск пользователиинформационнойбазы последовательности проверкавстроенныхпокупок рабочаядата расширенияконфигурации регистрыбухгалтерии регистрынакопления регистрырасчета регистрысведений регламентныезадания сериализаторxdto справочники средствагеопозиционирования средствакриптографии средствамультимедиа средстваотображениярекламы средствапочты средствателефонии фабрикаxdto файловыепотоки фоновыезадания хранилищанастроек хранилищевариантовотчетов хранилищенастроекданныхформ хранилищеобщихнастроек хранилищепользовательскихнастроекдинамическихсписков хранилищепользовательскихнастроекотчетов хранилищесистемныхнастроек ",m=l+c+d+p,u="webцвета windowsцвета windowsшрифты библиотекакартинок рамкистиля символы цветастиля шрифтыстиля ",b="автоматическоесохранениеданныхформывнастройках автонумерациявформе автораздвижениесерий анимациядиаграммы вариантвыравниванияэлементовизаголовков вариантуправлениявысотойтаблицы вертикальнаяпрокруткаформы вертикальноеположение вертикальноеположениеэлемента видгруппыформы виддекорацииформы виддополненияэлементаформы видизмененияданных видкнопкиформы видпереключателя видподписейкдиаграмме видполяформы видфлажка влияниеразмеранапузырекдиаграммы горизонтальноеположение горизонтальноеположениеэлемента группировкаколонок группировкаподчиненныхэлементовформы группыиэлементы действиеперетаскивания дополнительныйрежимотображения допустимыедействияперетаскивания интервалмеждуэлементамиформы использованиевывода использованиеполосыпрокрутки используемоезначениеточкибиржевойдиаграммы историявыборапривводе источникзначенийоситочекдиаграммы источникзначенияразмерапузырькадиаграммы категориягруппыкоманд максимумсерий начальноеотображениедерева начальноеотображениесписка обновлениетекстаредактирования ориентациядендрограммы ориентациядиаграммы ориентацияметокдиаграммы ориентацияметоксводнойдиаграммы ориентацияэлементаформы отображениевдиаграмме отображениевлегендедиаграммы отображениегруппыкнопок отображениезаголовкашкалыдиаграммы отображениезначенийсводнойдиаграммы отображениезначенияизмерительнойдиаграммы отображениеинтерваладиаграммыганта отображениекнопки отображениекнопкивыбора отображениеобсужденийформы отображениеобычнойгруппы отображениеотрицательныхзначенийпузырьковойдиаграммы отображениепанелипоиска отображениеподсказки отображениепредупрежденияприредактировании отображениеразметкиполосырегулирования отображениестраницформы отображениетаблицы отображениетекстазначениядиаграммыганта отображениеуправленияобычнойгруппы отображениефигурыкнопки палитрацветовдиаграммы поведениеобычнойгруппы поддержкамасштабадендрограммы поддержкамасштабадиаграммыганта поддержкамасштабасводнойдиаграммы поисквтаблицепривводе положениезаголовкаэлементаформы положениекартинкикнопкиформы положениекартинкиэлементаграфическойсхемы положениекоманднойпанелиформы положениекоманднойпанелиэлементаформы положениеопорнойточкиотрисовки положениеподписейкдиаграмме положениеподписейшкалызначенийизмерительнойдиаграммы положениесостоянияпросмотра положениестрокипоиска положениетекстасоединительнойлинии положениеуправленияпоиском положениешкалывремени порядокотображенияточекгоризонтальнойгистограммы порядоксерийвлегендедиаграммы размеркартинки расположениезаголовкашкалыдиаграммы растягиваниеповертикалидиаграммыганта режимавтоотображениясостояния режимвводастроктаблицы режимвыборанезаполненного режимвыделениядаты режимвыделениястрокитаблицы режимвыделениятаблицы режимизмененияразмера режимизменениясвязанногозначения режимиспользованиядиалогапечати режимиспользованияпараметракоманды режиммасштабированияпросмотра режимосновногоокнаклиентскогоприложения режимоткрытияокнаформы режимотображениявыделения режимотображениягеографическойсхемы режимотображениязначенийсерии режимотрисовкисеткиграфическойсхемы режимполупрозрачностидиаграммы режимпробеловдиаграммы режимразмещениянастранице режимредактированияколонки режимсглаживаниядиаграммы режимсглаживанияиндикатора режимсписказадач сквозноевыравнивание сохранениеданныхформывнастройках способзаполнениятекстазаголовкашкалыдиаграммы способопределенияограничивающегозначениядиаграммы стандартнаягруппакоманд стандартноеоформление статусоповещенияпользователя стильстрелки типаппроксимациилиниитрендадиаграммы типдиаграммы типединицышкалывремени типимпортасерийслоягеографическойсхемы типлиниигеографическойсхемы типлиниидиаграммы типмаркерагеографическойсхемы типмаркерадиаграммы типобластиоформления типорганизацииисточникаданныхгеографическойсхемы типотображениясериислоягеографическойсхемы типотображенияточечногообъектагеографическойсхемы типотображенияшкалыэлементалегендыгеографическойсхемы типпоискаобъектовгеографическойсхемы типпроекциигеографическойсхемы типразмещенияизмерений типразмещенияреквизитовизмерений типрамкиэлементауправления типсводнойдиаграммы типсвязидиаграммыганта типсоединениязначенийпосериямдиаграммы типсоединенияточекдиаграммы типсоединительнойлинии типстороныэлементаграфическойсхемы типформыотчета типшкалырадарнойдиаграммы факторлиниитрендадиаграммы фигуракнопки фигурыграфическойсхемы фиксациявтаблице форматдняшкалывремени форматкартинки ширинаподчиненныхэлементовформы ",g="виддвижениябухгалтерии виддвижениянакопления видпериодарегистрарасчета видсчета видточкимаршрутабизнеспроцесса использованиеагрегатарегистранакопления использованиегруппиэлементов использованиережимапроведения использованиесреза периодичностьагрегатарегистранакопления режимавтовремя режимзаписидокумента режимпроведениядокумента ",f="авторегистрацияизменений допустимыйномерсообщения отправкаэлементаданных получениеэлементаданных ",_="использованиерасшифровкитабличногодокумента ориентациястраницы положениеитоговколоноксводнойтаблицы положениеитоговстроксводнойтаблицы положениетекстаотносительнокартинки расположениезаголовкагруппировкитабличногодокумента способчтениязначенийтабличногодокумента типдвустороннейпечати типзаполненияобластитабличногодокумента типкурсоровтабличногодокумента типлиниирисункатабличногодокумента типлинииячейкитабличногодокумента типнаправленияпереходатабличногодокумента типотображениявыделениятабличногодокумента типотображениялинийсводнойтаблицы типразмещениятекстатабличногодокумента типрисункатабличногодокумента типсмещениятабличногодокумента типузоратабличногодокумента типфайлатабличногодокумента точностьпечати чередованиерасположениястраниц ",h="отображениевремениэлементовпланировщика ",v="типфайлаформатированногодокумента ",y="обходрезультатазапроса типзаписизапроса ",S="видзаполнениярасшифровкипостроителяотчета типдобавленияпредставлений типизмеренияпостроителяотчета типразмещенияитогов ",C="доступкфайлу режимдиалогавыборафайла режимоткрытияфайла ",x="типизмеренияпостроителязапроса ",E="видданныханализа методкластеризации типединицыинтервалавременианализаданных типзаполнениятаблицырезультатаанализаданных типиспользованиячисловыхзначенийанализаданных типисточникаданныхпоискаассоциаций типколонкианализаданныхдереворешений типколонкианализаданныхкластеризация типколонкианализаданныхобщаястатистика типколонкианализаданныхпоискассоциаций типколонкианализаданныхпоискпоследовательностей типколонкимоделипрогноза типмерырасстоянияанализаданных типотсеченияправилассоциации типполяанализаданных типстандартизациианализаданных типупорядочиванияправилассоциациианализаданных типупорядочиванияшаблоновпоследовательностейанализаданных типупрощениядереварешений ",N="wsнаправлениепараметра вариантxpathxs вариантзаписидатыjson вариантпростоготипаxs видгруппымоделиxs видфасетаxdto действиепостроителяdom завершенностьпростоготипаxs завершенностьсоставноготипаxs завершенностьсхемыxs запрещенныеподстановкиxs исключениягруппподстановкиxs категорияиспользованияатрибутаxs категорияограниченияидентичностиxs категорияограниченияпространствименxs методнаследованияxs модельсодержимогоxs назначениетипаxml недопустимыеподстановкиxs обработкапробельныхсимволовxs обработкасодержимогоxs ограничениезначенияxs параметрыотбораузловdom переносстрокjson позициявдокументеdom пробельныесимволыxml типатрибутаxml типзначенияjson типканоническогоxml типкомпонентыxs типпроверкиxml типрезультатаdomxpath типузлаdom типузлаxml формаxml формапредставленияxs форматдатыjson экранированиесимволовjson ",T="видсравнениякомпоновкиданных действиеобработкирасшифровкикомпоновкиданных направлениесортировкикомпоновкиданных расположениевложенныхэлементоврезультатакомпоновкиданных расположениеитоговкомпоновкиданных расположениегруппировкикомпоновкиданных расположениеполейгруппировкикомпоновкиданных расположениеполякомпоновкиданных расположениереквизитовкомпоновкиданных расположениересурсовкомпоновкиданных типбухгалтерскогоостаткакомпоновкиданных типвыводатекстакомпоновкиданных типгруппировкикомпоновкиданных типгруппыэлементовотборакомпоновкиданных типдополненияпериодакомпоновкиданных типзаголовкаполейкомпоновкиданных типмакетагруппировкикомпоновкиданных типмакетаобластикомпоновкиданных типостаткакомпоновкиданных типпериодакомпоновкиданных типразмещениятекстакомпоновкиданных типсвязинаборовданныхкомпоновкиданных типэлементарезультатакомпоновкиданных расположениелегендыдиаграммыкомпоновкиданных типпримененияотборакомпоновкиданных режимотображенияэлементанастройкикомпоновкиданных режимотображениянастроеккомпоновкиданных состояниеэлементанастройкикомпоновкиданных способвосстановлениянастроеккомпоновкиданных режимкомпоновкирезультата использованиепараметракомпоновкиданных автопозицияресурсовкомпоновкиданных вариантиспользованиягруппировкикомпоновкиданных расположениересурсоввдиаграммекомпоновкиданных фиксациякомпоновкиданных использованиеусловногооформлениякомпоновкиданных ",w="важностьинтернетпочтовогосообщения обработкатекстаинтернетпочтовогосообщения способкодированияинтернетпочтовоговложения способкодированиянеasciiсимволовинтернетпочтовогосообщения типтекстапочтовогосообщения протоколинтернетпочты статусразборапочтовогосообщения ",A="режимтранзакциизаписижурналарегистрации статустранзакциизаписижурналарегистрации уровеньжурналарегистрации ",M="расположениехранилищасертификатовкриптографии режимвключениясертификатовкриптографии режимпроверкисертификатакриптографии типхранилищасертификатовкриптографии ",D="кодировкаименфайловвzipфайле методсжатияzip методшифрованияzip режимвосстановленияпутейфайловzip режимобработкиподкаталоговzip режимсохраненияпутейzip уровеньсжатияzip ",I="звуковоеоповещение направлениепереходакстроке позициявпотоке порядокбайтов режимблокировкиданных режимуправленияблокировкойданных сервисвстроенныхпокупок состояниефоновогозадания типподписчикадоставляемыхуведомлений уровеньиспользованиязащищенногосоединенияftp ",k="направлениепорядкасхемызапроса типдополненияпериодамисхемызапроса типконтрольнойточкисхемызапроса типобъединениясхемызапроса типпараметрадоступнойтаблицысхемызапроса типсоединениясхемызапроса ",R="httpметод автоиспользованиеобщегореквизита автопрефиксномеразадачи вариантвстроенногоязыка видиерархии видрегистранакопления видтаблицывнешнегоисточникаданных записьдвиженийприпроведении заполнениепоследовательностей индексирование использованиебазыпланавидоврасчета использованиебыстроговыбора использованиеобщегореквизита использованиеподчинения использованиеполнотекстовогопоиска использованиеразделяемыхданныхобщегореквизита использованиереквизита назначениеиспользованияприложения назначениерасширенияконфигурации направлениепередачи обновлениепредопределенныхданных оперативноепроведение основноепредставлениевидарасчета основноепредставлениевидахарактеристики основноепредставлениезадачи основноепредставлениепланаобмена основноепредставлениесправочника основноепредставлениесчета перемещениеграницыприпроведении периодичностьномерабизнеспроцесса периодичностьномерадокумента периодичностьрегистрарасчета периодичностьрегистрасведений повторноеиспользованиевозвращаемыхзначений полнотекстовыйпоискпривводепостроке принадлежностьобъекта проведение разделениеаутентификацииобщегореквизита разделениеданныхобщегореквизита разделениерасширенийконфигурацииобщегореквизита режимавтонумерацииобъектов режимзаписирегистра режимиспользованиямодальности режимиспользованиясинхронныхвызововрасширенийплатформыивнешнихкомпонент режимповторногоиспользованиясеансов режимполученияданныхвыборапривводепостроке режимсовместимости режимсовместимостиинтерфейса режимуправленияблокировкойданныхпоумолчанию сериикодовпланавидовхарактеристик сериикодовпланасчетов сериикодовсправочника созданиепривводе способвыбора способпоискастрокипривводепостроке способредактирования типданныхтаблицывнешнегоисточникаданных типкодапланавидоврасчета типкодасправочника типмакета типномерабизнеспроцесса типномерадокумента типномеразадачи типформы удалениедвижений ",L="важностьпроблемыприменениярасширенияконфигурации вариантинтерфейсаклиентскогоприложения вариантмасштабаформклиентскогоприложения вариантосновногошрифтаклиентскогоприложения вариантстандартногопериода вариантстандартнойдатыначала видграницы видкартинки видотображенияполнотекстовогопоиска видрамки видсравнения видцвета видчисловогозначения видшрифта допустимаядлина допустимыйзнак использованиеbyteordermark использованиеметаданныхполнотекстовогопоиска источникрасширенийконфигурации клавиша кодвозвратадиалога кодировкаxbase кодировкатекста направлениепоиска направлениесортировки обновлениепредопределенныхданных обновлениеприизмененииданных отображениепанелиразделов проверказаполнения режимдиалогавопрос режимзапускаклиентскогоприложения режимокругления режимоткрытияформприложения режимполнотекстовогопоиска скоростьклиентскогосоединения состояниевнешнегоисточникаданных состояниеобновленияконфигурациибазыданных способвыборасертификатаwindows способкодированиястроки статуссообщения типвнешнейкомпоненты типплатформы типповеденияклавишиenter типэлементаинформацииовыполненииобновленияконфигурациибазыданных уровеньизоляциитранзакций хешфункция частидаты",P=u+b+g+f+_+h+v+y+S+C+x+E+N+T+w+A+M+D+I+k+R+L,O="comобъект ftpсоединение httpзапрос httpсервисответ httpсоединение wsопределения wsпрокси xbase анализданных аннотацияxs блокировкаданных буфердвоичныхданных включениеxs выражениекомпоновкиданных генераторслучайныхчисел географическаясхема географическиекоординаты графическаясхема группамоделиxs данныерасшифровкикомпоновкиданных двоичныеданные дендрограмма диаграмма диаграммаганта диалогвыборафайла диалогвыборацвета диалогвыборашрифта диалограсписаниярегламентногозадания диалогредактированиястандартногопериода диапазон документdom документhtml документацияxs доставляемоеуведомление записьdom записьfastinfoset записьhtml записьjson записьxml записьzipфайла записьданных записьтекста записьузловdom запрос защищенноесоединениеopenssl значенияполейрасшифровкикомпоновкиданных извлечениетекста импортxs интернетпочта интернетпочтовоесообщение интернетпочтовыйпрофиль интернетпрокси интернетсоединение информациядляприложенияxs использованиеатрибутаxs использованиесобытияжурналарегистрации источникдоступныхнастроеккомпоновкиданных итераторузловdom картинка квалификаторыдаты квалификаторыдвоичныхданных квалификаторыстроки квалификаторычисла компоновщикмакетакомпоновкиданных компоновщикнастроеккомпоновкиданных конструктормакетаоформлениякомпоновкиданных конструкторнастроеккомпоновкиданных конструкторформатнойстроки линия макеткомпоновкиданных макетобластикомпоновкиданных макетоформлениякомпоновкиданных маскаxs менеджеркриптографии наборсхемxml настройкикомпоновкиданных настройкисериализацииjson обработкакартинок обработкарасшифровкикомпоновкиданных обходдереваdom объявлениеатрибутаxs объявлениенотацииxs объявлениеэлементаxs описаниеиспользованиясобытиядоступжурналарегистрации описаниеиспользованиясобытияотказвдоступежурналарегистрации описаниеобработкирасшифровкикомпоновкиданных описаниепередаваемогофайла описаниетипов определениегруппыатрибутовxs определениегруппымоделиxs определениеограниченияидентичностиxs определениепростоготипаxs определениесоставноготипаxs определениетипадокументаdom определенияxpathxs отборкомпоновкиданных пакетотображаемыхдокументов параметрвыбора параметркомпоновкиданных параметрызаписиjson параметрызаписиxml параметрычтенияxml переопределениеxs планировщик полеанализаданных полекомпоновкиданных построительdom построительзапроса построительотчета построительотчетаанализаданных построительсхемxml поток потоквпамяти почта почтовоесообщение преобразованиеxsl преобразованиекканоническомуxml процессорвыводарезультатакомпоновкиданныхвколлекциюзначений процессорвыводарезультатакомпоновкиданныхвтабличныйдокумент процессоркомпоновкиданных разыменовательпространствименdom рамка расписаниерегламентногозадания расширенноеимяxml результатчтенияданных своднаядиаграмма связьпараметравыбора связьпотипу связьпотипукомпоновкиданных сериализаторxdto сертификатклиентаwindows сертификатклиентафайл сертификаткриптографии сертификатыудостоверяющихцентровwindows сертификатыудостоверяющихцентровфайл сжатиеданных системнаяинформация сообщениепользователю сочетаниеклавиш сравнениезначений стандартнаядатаначала стандартныйпериод схемаxml схемакомпоновкиданных табличныйдокумент текстовыйдокумент тестируемоеприложение типданныхxml уникальныйидентификатор фабрикаxdto файл файловыйпоток фасетдлиныxs фасетколичестваразрядовдробнойчастиxs фасетмаксимальноговключающегозначенияxs фасетмаксимальногоисключающегозначенияxs фасетмаксимальнойдлиныxs фасетминимальноговключающегозначенияxs фасетминимальногоисключающегозначенияxs фасетминимальнойдлиныxs фасетобразцаxs фасетобщегоколичестваразрядовxs фасетперечисленияxs фасетпробельныхсимволовxs фильтрузловdom форматированнаястрока форматированныйдокумент фрагментxs хешированиеданных хранилищезначения цвет чтениеfastinfoset чтениеhtml чтениеjson чтениеxml чтениеzipфайла чтениеданных чтениетекста чтениеузловdom шрифт элементрезультатакомпоновкиданных ",F="comsafearray деревозначений массив соответствие списокзначений структура таблицазначений фиксированнаяструктура фиксированноесоответствие фиксированныймассив ",B=O+F,G="null истина ложь неопределено",q=e.inherit(e.NM),U={cN:"string",b:'"|\\|',e:'"|$',c:[{b:'""'}]},z={b:"'",e:"'",eB:!0,eE:!0,c:[{cN:"number",b:"\\d{4}([\\.\\\\/:-]?\\d{2}){0,5}"}]},$=e.inherit(e.CLCM),V={cN:"meta",l:t,b:"#|&",e:"$",k:{"meta-keyword":i+s},c:[$]},W={cN:"symbol",b:"~",e:";|:",eE:!0},H={cN:"function",l:t,v:[{b:"процедура|функция",e:"\\)",k:"процедура функция"},{b:"конецпроцедуры|конецфункции",k:"конецпроцедуры конецфункции"}],c:[{b:"\\(",e:"\\)",endsParent:!0,c:[{cN:"params",l:t,b:t,e:",",eE:!0,eW:!0,k:{keyword:"знач",literal:G},c:[q,U,z]},$]},e.inherit(e.TM,{b:t})]};return{cI:!0,l:t,k:{keyword:i,built_in:m,class:P,type:B,literal:G},c:[V,H,$,W,q,U,z]}})),e.registerLanguage("abnf",(function(e){var t={ruleDeclaration:"^[a-zA-Z][a-zA-Z0-9-]*",unexpectedChars:"[!@#$^&',?+~`|:]"},r=["ALPHA","BIT","CHAR","CR","CRLF","CTL","DIGIT","DQUOTE","HEXDIG","HTAB","LF","LWSP","OCTET","SP","VCHAR","WSP"],a=e.C(";","$"),i={cN:"symbol",b:/%b[0-1]+(-[0-1]+|(\.[0-1]+)+){0,1}/},n={cN:"symbol",b:/%d[0-9]+(-[0-9]+|(\.[0-9]+)+){0,1}/},o={cN:"symbol",b:/%x[0-9A-F]+(-[0-9A-F]+|(\.[0-9A-F]+)+){0,1}/},s={cN:"symbol",b:/%[si]/},l={b:t.ruleDeclaration+"\\s*=",rB:!0,e:/=/,r:0,c:[{cN:"attribute",b:t.ruleDeclaration}]};return{i:t.unexpectedChars,k:r.join(" "),c:[l,a,i,n,o,s,e.QSM,e.NM]}})),e.registerLanguage("accesslog",(function(e){return{c:[{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+\\b",r:0},{cN:"string",b:'"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'"',k:"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE",i:"\\n",r:10},{cN:"string",b:/\[/,e:/\]/,i:"\\n"},{cN:"string",b:'"',e:'"',i:"\\n"}]}})),e.registerLanguage("actionscript",(function(e){var t="[a-zA-Z_$][a-zA-Z0-9_$]*",r="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)",a={cN:"rest_arg",b:"[.]{3}",e:t,r:10};return{aliases:["as"],k:{keyword:"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with",literal:"true false null undefined"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"class",bK:"package",e:"{",c:[e.TM]},{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"meta",bK:"import include",e:";",k:{"meta-keyword":"import include"}},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,a]},{b:":\\s*"+r}]},e.METHOD_GUARD],i:/#/}})),e.registerLanguage("ada",(function(e){var t="\\d(_|\\d)*",r="[eE][-+]?"+t,a=t+"(\\."+t+")?("+r+")?",i="\\w+",n=t+"#"+i+"(\\."+i+")?#("+r+")?",o="\\b("+n+"|"+a+")",s="[A-Za-z](_?[A-Za-z0-9.])*",l="[]{}%#'\"",c=e.C("--","$"),d={b:"\\s+:\\s+",e:"\\s*(:=|;|\\)|=>|$)",i:l,c:[{bK:"loop for declare others",endsParent:!0},{cN:"keyword",bK:"not null constant access function procedure in out aliased exception"},{cN:"type",b:s,endsParent:!0,r:0}]};return{cI:!0,k:{keyword:"abort else new return abs elsif not reverse abstract end accept entry select access exception of separate aliased exit or some all others subtype and for out synchronized array function overriding at tagged generic package task begin goto pragma terminate body private then if procedure type case in protected constant interface is raise use declare range delay limited record when delta loop rem while digits renames with do mod requeue xor",literal:"True False"},c:[c,{cN:"string",b:/"/,e:/"/,c:[{b:/""/,r:0}]},{cN:"string",b:/'.'/},{cN:"number",b:o,r:0},{cN:"symbol",b:"'"+s},{cN:"title",b:"(\\bwith\\s+)?(\\bprivate\\s+)?\\bpackage\\s+(\\bbody\\s+)?",e:"(is|$)",k:"package body",eB:!0,eE:!0,i:l},{b:"(\\b(with|overriding)\\s+)?\\b(function|procedure)\\s+",e:"(\\bis|\\bwith|\\brenames|\\)\\s*;)",k:"overriding function procedure with is renames return",rB:!0,c:[c,{cN:"title",b:"(\\bwith\\s+)?\\b(function|procedure)\\s+",e:"(\\(|\\s+|$)",eB:!0,eE:!0,i:l},d,{cN:"type",b:"\\breturn\\s+",e:"(\\s+|;|$)",k:"return",eB:!0,eE:!0,endsParent:!0,i:l}]},{cN:"type",b:"\\b(sub)?type\\s+",e:"\\s+",k:"type",eB:!0,i:l},d]}})),e.registerLanguage("apache",(function(e){var t={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",t]},t,e.QSM]}}],i:/\S/}})),e.registerLanguage("applescript",(function(e){var t=e.inherit(e.QSM,{i:""}),r={cN:"params",b:"\\(",e:"\\)",c:["self",e.CNM,t]},a=e.C("--","$"),i=e.C("\\(\\*","\\*\\)",{c:["self",a]}),n=[a,i,e.HCM];return{aliases:["osascript"],k:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",literal:"AppleScript false linefeed return pi quote result space tab true",built_in:"alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},c:[t,e.CNM,{cN:"built_in",b:"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b"},{cN:"literal",b:"\\b(text item delimiters|current application|missing value)\\b"},{cN:"keyword",b:"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference)|POSIX file|POSIX path|(date|time) string|quoted form)\\b"},{bK:"on",i:"[${=;\\n]",c:[e.UTM,r]}].concat(n),i:"//|->|=>|\\[\\["}})),e.registerLanguage("cpp",(function(e){var t={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[e.BE]},{b:'(u8?|U)?R"',e:'"',c:[e.BE]},{b:"'\\\\?.",e:"'",i:"."}]},a={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},i={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},e.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},e.CLCM,e.CBCM]},n=e.IR+"\\s*\\(",o={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},s=[t,e.CLCM,e.CBCM,a,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:o,i:"",k:o,c:["self",t]},{b:e.IR+"::",k:o},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:o,c:s.concat([{b:/\(/,e:/\)/,k:o,c:s.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+e.IR+"[\\*&\\s]+)+"+n,rB:!0,e:/[{;=]/,eE:!0,k:o,i:/[^\w\s\*&]/,c:[{b:n,rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:o,r:0,c:[e.CLCM,e.CBCM,r,a,t]},e.CLCM,e.CBCM,i]},{cN:"class",bK:"class struct",e:/[{;:]/,c:[{b://,c:["self"]},e.TM]}]),exports:{preprocessor:i,strings:r,k:o}}})),e.registerLanguage("arduino",(function(e){var t=e.getLanguage("cpp").exports;return{k:{keyword:"boolean byte word string String array "+t.k.keyword,built_in:"setup loop while catch for if do goto try switch case else default break continue return KeyboardController MouseController SoftwareSerial EthernetServer EthernetClient LiquidCrystal RobotControl GSMVoiceCall EthernetUDP EsploraTFT HttpClient RobotMotor WiFiClient GSMScanner FileSystem Scheduler GSMServer YunClient YunServer IPAddress GSMClient GSMModem Keyboard Ethernet Console GSMBand Esplora Stepper Process WiFiUDP GSM_SMS Mailbox USBHost Firmata PImage Client Server GSMPIN FileIO Bridge Serial EEPROM Stream Mouse Audio Servo File Task GPRS WiFi Wire TFT GSM SPI SD runShellCommandAsynchronously analogWriteResolution retrieveCallingNumber printFirmwareVersion analogReadResolution sendDigitalPortPair noListenOnLocalhost readJoystickButton setFirmwareVersion readJoystickSwitch scrollDisplayRight getVoiceCallStatus scrollDisplayLeft writeMicroseconds delayMicroseconds beginTransmission getSignalStrength runAsynchronously getAsynchronously listenOnLocalhost getCurrentCarrier readAccelerometer messageAvailable sendDigitalPorts lineFollowConfig countryNameWrite runShellCommand readStringUntil rewindDirectory readTemperature setClockDivider readLightSensor endTransmission analogReference detachInterrupt countryNameRead attachInterrupt encryptionType readBytesUntil robotNameWrite readMicrophone robotNameRead cityNameWrite userNameWrite readJoystickY readJoystickX mouseReleased openNextFile scanNetworks noInterrupts digitalWrite beginSpeaker mousePressed isActionDone mouseDragged displayLogos noAutoscroll addParameter remoteNumber getModifiers keyboardRead userNameRead waitContinue processInput parseCommand printVersion readNetworks writeMessage blinkVersion cityNameRead readMessage setDataMode parsePacket isListening setBitOrder beginPacket isDirectory motorsWrite drawCompass digitalRead clearScreen serialEvent rightToLeft setTextSize leftToRight requestFrom keyReleased compassRead analogWrite interrupts WiFiServer disconnect playMelody parseFloat autoscroll getPINUsed setPINUsed setTimeout sendAnalog readSlider analogRead beginWrite createChar motorsStop keyPressed tempoWrite readButton subnetMask debugPrint macAddress writeGreen randomSeed attachGPRS readString sendString remotePort releaseAll mouseMoved background getXChange getYChange answerCall getResult voiceCall endPacket constrain getSocket writeJSON getButton available connected findUntil readBytes exitValue readGreen writeBlue startLoop IPAddress isPressed sendSysex pauseMode gatewayIP setCursor getOemKey tuneWrite noDisplay loadImage switchPIN onRequest onReceive changePIN playFile noBuffer parseInt overflow checkPIN knobRead beginTFT bitClear updateIR bitWrite position writeRGB highByte writeRed setSpeed readBlue noStroke remoteIP transfer shutdown hangCall beginSMS endWrite attached maintain noCursor checkReg checkPUK shiftOut isValid shiftIn pulseIn connect println localIP pinMode getIMEI display noBlink process getBand running beginSD drawBMP lowByte setBand release bitRead prepare pointTo readRed setMode noFill remove listen stroke detach attach noTone exists buffer height bitSet circle config cursor random IRread setDNS endSMS getKey micros millis begin print write ready flush width isPIN blink clear press mkdir rmdir close point yield image BSSID click delay read text move peek beep rect line open seek fill size turn stop home find step tone sqrt RSSI SSID end bit tan cos sin pow map abs max min get run put",literal:"DIGITAL_MESSAGE FIRMATA_STRING ANALOG_MESSAGE REPORT_DIGITAL REPORT_ANALOG INPUT_PULLUP SET_PIN_MODE INTERNAL2V56 SYSTEM_RESET LED_BUILTIN INTERNAL1V1 SYSEX_START INTERNAL EXTERNAL DEFAULT OUTPUT INPUT HIGH LOW"},c:[t.preprocessor,e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}})),e.registerLanguage("armasm",(function(e){return{cI:!0,aliases:["arm"],l:"\\.?"+e.IR,k:{meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},c:[{cN:"keyword",b:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?",e:"\\s"},e.C("[;@]","$",{r:0}),e.CBCM,e.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"title",b:"\\|",e:"\\|",i:"\\n",r:0},{cN:"number",v:[{b:"[#$=]?0x[0-9a-f]+"},{b:"[#$=]?0b[01]+"},{b:"[#$=]\\d+"},{b:"\\b\\d+"}],r:0},{cN:"symbol",v:[{b:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{b:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{b:"[=#]\\w+"}],r:0}]}})),e.registerLanguage("xml",(function(e){var t="[A-Za-z0-9\\._:-]+",r={eW:!0,i:/`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("\x3c!--","--\x3e",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[r],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[r],starts:{e:"<\/script>",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}})),e.registerLanguage("asciidoc",(function(e){return{aliases:["adoc"],c:[e.C("^/{4,}\\n","\\n/{4,}$",{r:10}),e.C("^//","$",{r:0}),{cN:"title",b:"^\\.\\w.*$"},{b:"^[=\\*]{4,}\\n",e:"\\n^[=\\*]{4,}$",r:10},{cN:"section",r:10,v:[{b:"^(={1,5}) .+?( \\1)?$"},{b:"^[^\\[\\]\\n]+?\\n[=\\-~\\^\\+]{2,}$"}]},{cN:"meta",b:"^:.+?:",e:"\\s",eE:!0,r:10},{cN:"meta",b:"^\\[.+?\\]$",r:0},{cN:"quote",b:"^_{4,}\\n",e:"\\n_{4,}$",r:10},{cN:"code",b:"^[\\-\\.]{4,}\\n",e:"\\n[\\-\\.]{4,}$",r:10},{b:"^\\+{4,}\\n",e:"\\n\\+{4,}$",c:[{b:"<",e:">",sL:"xml",r:0}],r:10},{cN:"bullet",b:"^(\\*+|\\-+|\\.+|[^\\n]+?::)\\s+"},{cN:"symbol",b:"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+",r:10},{cN:"strong",b:"\\B\\*(?![\\*\\s])",e:"(\\n{2}|\\*)",c:[{b:"\\\\*\\w",r:0}]},{cN:"emphasis",b:"\\B'(?!['\\s])",e:"(\\n{2}|')",c:[{b:"\\\\'\\w",r:0}],r:0},{cN:"emphasis",b:"_(?![_\\s])",e:"(\\n{2}|_)",r:0},{cN:"string",v:[{b:"``.+?''"},{b:"`.+?'"}]},{cN:"code",b:"(`.+?`|\\+.+?\\+)",r:0},{cN:"code",b:"^[ \\t]",e:"$",r:0},{b:"^'{3,}[ \\t]*$",r:10},{b:"(link:)?(http|https|ftp|file|irc|image:?):\\S+\\[.*?\\]",rB:!0,c:[{b:"(link|image:?):",r:0},{cN:"link",b:"\\w",e:"[^\\[]+",r:0},{cN:"string",b:"\\[",e:"\\]",eB:!0,eE:!0,r:0}],r:10}]}})),e.registerLanguage("aspectj",(function(e){var t="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance",r="get set args call";return{k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"aspect",e:/[{;=]/,eE:!0,i:/[:;"\[\]]/,c:[{bK:"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton"},e.UTM,{b:/\([^\)]*/,e:/[)]+/,k:t+" "+r,eE:!1}]},{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,r:0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"pointcut after before around throwing returning",e:/[)]/,eE:!1,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",k:t+" "+r,r:0},e.QSM]},{bK:"new throw",r:0},{cN:"function",b:/\w+ +\w+(\.)?\w+\s*\([^\)]*\)\s*((throws)[\w\s,]+)?[\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:"meta",b:"@[A-Za-z]+"}]}})),e.registerLanguage("autohotkey",(function(e){var t={b:"`[\\s\\S]"};return{cI:!0,aliases:["ahk"],k:{keyword:"Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group",literal:"A|0 true false NOT AND OR",built_in:"ComSpec Clipboard ClipboardAll ErrorLevel"},c:[{cN:"built_in",b:"A_[a-zA-Z0-9]+"},t,e.inherit(e.QSM,{c:[t]}),e.C(";","$",{r:0}),e.CBCM,{cN:"number",b:e.NR,r:0},{cN:"subst",b:"%(?=[a-zA-Z0-9#_$@])",e:"%",i:"[^a-zA-Z0-9#_$@]"},{cN:"built_in",b:"^\\s*\\w+\\s*,"},{cN:"meta",b:"^\\s*#w+",e:"$",r:0},{cN:"symbol",c:[t],v:[{b:'^[^\\n";]+::(?!=)'},{b:'^[^\\n";]+:(?!=)',r:0}]},{b:",\\s*,"}]}})),e.registerLanguage("autoit",(function(e){var t="ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With",r="True False And Null Not Or",a="Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown, UDPShutdown TCPStartup, UDPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait",i={v:[e.C(";","$",{r:0}),e.C("#cs","#ce"),e.C("#comments-start","#comments-end")]},n={b:"\\$[A-z0-9_]+"},o={cN:"string",v:[{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},s={v:[e.BNM,e.CNM]},l={cN:"meta",b:"#",e:"$",k:{"meta-keyword":"comments include include-once NoTrayIcon OnAutoItStartRegister pragma compile RequireAdmin"},c:[{b:/\\\n/,r:0},{bK:"include",k:{"meta-keyword":"include"},e:"$",c:[o,{cN:"meta-string",v:[{b:"<",e:">"},{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},o,i]},c={cN:"symbol",b:"@[A-z0-9_]+"},d={cN:"function",bK:"Func",e:"$",i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:[n,o,s]}]};return{cI:!0,i:/\/\*/,k:{keyword:t,built_in:a,literal:r},c:[i,n,o,s,l,c,d]}})),e.registerLanguage("avrasm",(function(e){return{cI:!0,l:"\\.?"+e.IR,k:{keyword:"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf",meta:".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"},c:[e.CBCM,e.C(";","$",{r:0}),e.CNM,e.BNM,{cN:"number",b:"\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)"},e.QSM,{cN:"string",b:"'",e:"[^\\\\]'",i:"[^\\\\][^']"},{cN:"symbol",b:"^[A-Za-z0-9_.$]+:"},{cN:"meta",b:"#",e:"$"},{cN:"subst",b:"@[0-9]+"}]}})),e.registerLanguage("awk",(function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r="BEGIN END if else while do for in break continue delete next nextfile function func exit|10",a={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,r:10},{b:/(u|b)?r?"""/,e:/"""/,r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]};return{k:{keyword:r},c:[t,a,e.RM,e.HCM,e.NM]}})),e.registerLanguage("axapta",(function(e){return{k:"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:"meta",b:"#",e:"$"},{cN:"class",bK:"class interface",e:"{",eE:!0,i:":",c:[{bK:"extends implements"},e.UTM]}]}})),e.registerLanguage("bash",(function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/\b-?[a-z\._]+\b/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,r,a,t]}})),e.registerLanguage("basic",(function(e){return{cI:!0,i:"^.",l:"[a-zA-Z][a-zA-Z0-9_$%!#]*",k:{keyword:"ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF|0 THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR"},c:[e.QSM,e.C("REM","$",{r:10}),e.C("'","$",{r:0}),{cN:"symbol",b:"^[0-9]+ ",r:10},{cN:"number",b:"\\b([0-9]+[0-9edED.]*[#!]?)",r:0},{cN:"number",b:"(&[hH][0-9a-fA-F]{1,4})"},{cN:"number",b:"(&[oO][0-7]{1,6})"}]}})),e.registerLanguage("bnf",(function(e){return{c:[{cN:"attribute",b://},{b:/::=/,starts:{e:/$/,c:[{b://},e.CLCM,e.CBCM,e.ASM,e.QSM]}}]}})),e.registerLanguage("brainfuck",(function(e){var t={cN:"literal",b:"[\\+\\-]",r:0};return{aliases:["bf"],c:[e.C("[^\\[\\]\\.,\\+\\-<> \r\n]","[\\[\\]\\.,\\+\\-<> \r\n]",{rE:!0,r:0}),{cN:"title",b:"[\\[\\]]",r:0},{cN:"string",b:"[\\.,]",r:0},{b:/\+\+|\-\-/,rB:!0,c:[t]},t]}})),e.registerLanguage("cal",(function(e){var t="div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var",r="false true",a=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},n={cN:"string",b:/(#\d+)+/},o={cN:"number",b:"\\b\\d+(\\.\\d+)?(DT|D|T)",r:0},s={cN:"string",b:'"',e:'"'},l={cN:"function",bK:"procedure",e:/[:;]/,k:"procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:t,c:[i,n]}].concat(a)},c={cN:"class",b:"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\d+) ([^\\r\\n]+)",rB:!0,c:[e.TM,l]};return{cI:!0,k:{keyword:t,literal:r},i:/\/\*/,c:[i,n,o,s,e.NM,c,l]}})),e.registerLanguage("capnproto",(function(e){return{aliases:["capnp"],k:{keyword:"struct enum interface union group import using const annotation extends in of on as with from fixed",built_in:"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List",literal:"true false"},c:[e.QSM,e.NM,e.HCM,{cN:"meta",b:/@0x[\w\d]{16};/,i:/\n/},{cN:"symbol",b:/@\d+\b/},{cN:"class",bK:"struct enum",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:"class",bK:"interface",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]}]}})),e.registerLanguage("ceylon",(function(e){var t="assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty",r="shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small",a="doc by license see throws tagged",i={cN:"subst",eB:!0,eE:!0,b:/``/,e:/``/,k:t,r:10},n=[{cN:"string",b:'"""',e:'"""',r:10},{cN:"string",b:'"',e:'"',c:[i]},{cN:"string",b:"'",e:"'"},{cN:"number",b:"#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?",r:0}];return i.c=n,{k:{keyword:t+" "+r,meta:a},i:"\\$[^01]|#[^0-9a-fA-F]",c:[e.CLCM,e.C("/\\*","\\*/",{c:["self"]}),{cN:"meta",b:'@[a-z]\\w*(?:\\:"[^"]*")?'}].concat(n)}})),e.registerLanguage("clean",(function(e){return{aliases:["clean","icl","dcl"],k:{keyword:"if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr",literal:"True False"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{b:"->|<-[|:]?|::|#!?|>>=|\\{\\||\\|\\}|:==|=:|\\.\\.|<>|`"}]}})),e.registerLanguage("clojure",(function(e){var t={"builtin-name":"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"},r="a-zA-Z_\\-!.?+*=<>&#'",a="["+r+"]["+r+"0-9/;:]*",i="[-+]?\\d+(\\.\\d+)?",n={b:a,r:0},o={cN:"number",b:i,r:0},s=e.inherit(e.QSM,{i:null}),l=e.C(";","$",{r:0}),c={cN:"literal",b:/\b(true|false|nil)\b/},d={b:"[\\[\\{]",e:"[\\]\\}]"},p={cN:"comment",b:"\\^"+a},m=e.C("\\^\\{","\\}"),u={cN:"symbol",b:"[:]{1,2}"+a},b={b:"\\(",e:"\\)"},g={eW:!0,r:0},f={k:t,l:a,cN:"name",b:a,starts:g},_=[b,s,p,m,l,u,d,o,c,n];return b.c=[e.C("comment",""),f,g],g.c=_,d.c=_,m.c=[d],{aliases:["clj"],i:/\S/,c:[b,s,p,m,l,u,d,o,c]}})),e.registerLanguage("clojure-repl",(function(e){return{c:[{cN:"meta",b:/^([\w.-]+|\s*#_)=>/,starts:{e:/$/,sL:"clojure"}}]}})),e.registerLanguage("cmake",(function(e){return{aliases:["cmake.in"],cI:!0,k:{keyword:"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or equal less greater strless strgreater strequal matches"},c:[{cN:"variable",b:"\\${",e:"}"},e.HCM,e.QSM,e.NM]}})),e.registerLanguage("coffeescript",(function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},i=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,a]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[a,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];a.c=i;var n=e.inherit(e.TM,{b:r}),o="(\\(.*\\))?\\s*\\B[-=]>",s={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(i)}]};return{aliases:["coffee","cson","iced"],k:t,i:/\/\*/,c:i.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+o,e:"[-=]>",rB:!0,c:[n,s]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:o,e:"[-=]>",rB:!0,c:[s]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[n]},n]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}})),e.registerLanguage("coq",(function(e){return{k:{keyword:"_ as at cofix else end exists exists2 fix for forall fun if IF in let match mod Prop return Set then Type using where with Abort About Add Admit Admitted All Arguments Assumptions Axiom Back BackTo Backtrack Bind Blacklist Canonical Cd Check Class Classes Close Coercion Coercions CoFixpoint CoInductive Collection Combined Compute Conjecture Conjectures Constant constr Constraint Constructors Context Corollary CreateHintDb Cut Declare Defined Definition Delimit Dependencies DependentDerive Drop eauto End Equality Eval Example Existential Existentials Existing Export exporting Extern Extract Extraction Fact Field Fields File Fixpoint Focus for From Function Functional Generalizable Global Goal Grab Grammar Graph Guarded Heap Hint HintDb Hints Hypotheses Hypothesis ident Identity If Immediate Implicit Import Include Inductive Infix Info Initial Inline Inspect Instance Instances Intro Intros Inversion Inversion_clear Language Left Lemma Let Libraries Library Load LoadPath Local Locate Ltac ML Mode Module Modules Monomorphic Morphism Next NoInline Notation Obligation Obligations Opaque Open Optimize Options Parameter Parameters Parametric Path Paths pattern Polymorphic Preterm Print Printing Program Projections Proof Proposition Pwd Qed Quit Rec Record Recursive Redirect Relation Remark Remove Require Reserved Reset Resolve Restart Rewrite Right Ring Rings Save Scheme Scope Scopes Script Search SearchAbout SearchHead SearchPattern SearchRewrite Section Separate Set Setoid Show Solve Sorted Step Strategies Strategy Structure SubClass Table Tables Tactic Term Test Theorem Time Timeout Transparent Type Typeclasses Types Undelimit Undo Unfocus Unfocused Unfold Universe Universes Unset Unshelve using Variable Variables Variant Verbose Visibility where with",built_in:"abstract absurd admit after apply as assert assumption at auto autorewrite autounfold before bottom btauto by case case_eq cbn cbv change classical_left classical_right clear clearbody cofix compare compute congruence constr_eq constructor contradict contradiction cut cutrewrite cycle decide decompose dependent destruct destruction dintuition discriminate discrR do double dtauto eapply eassumption eauto ecase econstructor edestruct ediscriminate eelim eexact eexists einduction einjection eleft elim elimtype enough equality erewrite eright esimplify_eq esplit evar exact exactly_once exfalso exists f_equal fail field field_simplify field_simplify_eq first firstorder fix fold fourier functional generalize generalizing gfail give_up has_evar hnf idtac in induction injection instantiate intro intro_pattern intros intuition inversion inversion_clear is_evar is_var lapply lazy left lia lra move native_compute nia nsatz omega once pattern pose progress proof psatz quote record red refine reflexivity remember rename repeat replace revert revgoals rewrite rewrite_strat right ring ring_simplify rtauto set setoid_reflexivity setoid_replace setoid_rewrite setoid_symmetry setoid_transitivity shelve shelve_unifiable simpl simple simplify_eq solve specialize split split_Rabs split_Rmult stepl stepr subst sum swap symmetry tactic tauto time timeout top transitivity trivial try tryif unfold unify until using vm_compute with"},c:[e.QSM,e.C("\\(\\*","\\*\\)"),e.CNM,{cN:"type",eB:!0,b:"\\|\\s*",e:"\\w+"},{b:/[-=]>/}]}})),e.registerLanguage("cos",(function(e){var t={cN:"string",v:[{b:'"',e:'"',c:[{b:'""',r:0}]}]},r={cN:"number",b:"\\b(\\d+(\\.\\d*)?|\\.\\d+)",r:0},a="property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii";return{cI:!0,aliases:["cos","cls"],k:a,c:[r,t,e.CLCM,e.CBCM,{cN:"comment",b:/;/,e:"$",r:0},{cN:"built_in",b:/(?:\$\$?|\.\.)\^?[a-zA-Z]+/},{cN:"built_in",b:/\$\$\$[a-zA-Z]+/},{cN:"built_in",b:/%[a-z]+(?:\.[a-z]+)*/},{cN:"symbol",b:/\^%?[a-zA-Z][\w]*/},{cN:"keyword",b:/##class|##super|#define|#dim/},{b:/&sql\(/,e:/\)/,eB:!0,eE:!0,sL:"sql"},{b:/&(js|jscript|javascript)/,eB:!0,eE:!0,sL:"javascript"},{b:/&html<\s*\s*>/,sL:"xml"}]}})),e.registerLanguage("crmsh",(function(e){var t="primitive rsc_template",r="group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml",a="property rsc_defaults op_defaults",i="params meta operations op rule attributes utilization",n="read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\",o="number string",s="Master Started Slave Stopped start promote demote stop monitor true false";return{aliases:["crm","pcmk"],cI:!0,k:{keyword:i+" "+n+" "+o,literal:s},c:[e.HCM,{bK:"node",starts:{e:"\\s*([\\w_-]+:)?",starts:{cN:"title",e:"\\s*[\\$\\w_][\\w_-]*"}}},{bK:t,starts:{cN:"title",e:"\\s*[\\$\\w_][\\w_-]*",starts:{e:"\\s*@?[\\w_][\\w_\\.:-]*"}}},{b:"\\b("+r.split(" ").join("|")+")\\s+",k:r,starts:{cN:"title",e:"[\\$\\w_][\\w_-]*"}},{bK:a,starts:{cN:"title",e:"\\s*([\\w_-]+:)?"}},e.QSM,{cN:"meta",b:"(ocf|systemd|service|lsb):[\\w_:-]+",r:0},{cN:"number",b:"\\b\\d+(\\.\\d+)?(ms|s|h|m)?",r:0},{cN:"literal",b:"[-]?(infinity|inf)",r:0},{cN:"attr",b:/([A-Za-z\$_\#][\w_-]+)=/,r:0},{cN:"tag",b:"",r:0}]}})),e.registerLanguage("crystal",(function(e){function t(e,t){var r=[{b:e,e:t}];return r[0].c=r,r}var r="(_[uif](8|16|32|64))?",a="[a-zA-Z_]\\w*[!?=]?",i="!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",n="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\][=?]?",o={keyword:"abstract alias as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__",literal:"false nil true"},s={cN:"subst",b:"#{",e:"}",k:o},l={cN:"template-variable",v:[{b:"\\{\\{",e:"\\}\\}"},{b:"\\{%",e:"%\\}"}],k:o},c={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%w?\\(",e:"\\)",c:t("\\(","\\)")},{b:"%w?\\[",e:"\\]",c:t("\\[","\\]")},{b:"%w?{",e:"}",c:t("{","}")},{b:"%w?<",e:">",c:t("<",">")},{b:"%w?/",e:"/"},{b:"%w?%",e:"%"},{b:"%w?-",e:"-"},{b:"%w?\\|",e:"\\|"},{b:/<<-\w+$/,e:/^\s*\w+$/}],r:0},d={cN:"string",v:[{b:"%q\\(",e:"\\)",c:t("\\(","\\)")},{b:"%q\\[",e:"\\]",c:t("\\[","\\]")},{b:"%q{",e:"}",c:t("{","}")},{b:"%q<",e:">",c:t("<",">")},{b:"%q/",e:"/"},{b:"%q%",e:"%"},{b:"%q-",e:"-"},{b:"%q\\|",e:"\\|"},{b:/<<-'\w+'$/,e:/^\s*\w+$/}],r:0},p={b:"("+i+")\\s*",c:[{cN:"regexp",c:[e.BE,s],v:[{b:"//[a-z]*",r:0},{b:"/",e:"/[a-z]*"},{b:"%r\\(",e:"\\)",c:t("\\(","\\)")},{b:"%r\\[",e:"\\]",c:t("\\[","\\]")},{b:"%r{",e:"}",c:t("{","}")},{b:"%r<",e:">",c:t("<",">")},{b:"%r/",e:"/"},{b:"%r%",e:"%"},{b:"%r-",e:"-"},{b:"%r\\|",e:"\\|"}]}],r:0},m={cN:"regexp",c:[e.BE,s],v:[{b:"%r\\(",e:"\\)",c:t("\\(","\\)")},{b:"%r\\[",e:"\\]",c:t("\\[","\\]")},{b:"%r{",e:"}",c:t("{","}")},{b:"%r<",e:">",c:t("<",">")},{b:"%r/",e:"/"},{b:"%r%",e:"%"},{b:"%r-",e:"-"},{b:"%r\\|",e:"\\|"}],r:0},u={cN:"meta",b:"@\\[",e:"\\]",c:[e.inherit(e.QSM,{cN:"meta-string"})]},b=[l,c,d,p,m,u,e.HCM,{cN:"class",bK:"class module struct",e:"$|;",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<"}]},{cN:"class",bK:"lib enum union",e:"$|;",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"})],r:10},{cN:"function",bK:"def",e:/\B\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},{cN:"function",bK:"fun macro",e:/\B\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})],r:5},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[c,{b:n}],r:0},{cN:"number",v:[{b:"\\b0b([01_]*[01])"+r},{b:"\\b0o([0-7_]*[0-7])"+r},{b:"\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])"+r},{b:"\\b(([0-9][0-9_]*[0-9]|[0-9])(\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)"+r}],r:0}];return s.c=b,l.c=b.slice(1),{aliases:["cr"],l:a,k:o,c:b}})),e.registerLanguage("cs",(function(e){var t={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long nameof object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},a=e.inherit(r,{i:/\n/}),i={cN:"subst",b:"{",e:"}",k:t},n=e.inherit(i,{i:/\n/}),o={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,n]},s={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},i]},l=e.inherit(s,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},n]});i.c=[s,o,r,e.ASM,e.QSM,e.CNM,e.CBCM],n.c=[l,o,a,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var c={v:[s,o,r,e.ASM,e.QSM]},d=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:t,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:"\x3c!--|--\x3e"},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},c,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{cN:"meta",b:"^\\s*\\[",eB:!0,e:"\\]",eE:!0,c:[{cN:"meta-string",b:/"/,e:/"/}]},{bK:"new return throw await else",r:0},{cN:"function",b:"("+d+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[c,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}})),e.registerLanguage("csp",(function(e){return{cI:!1,l:"[a-zA-Z][a-zA-Z0-9_-]*",k:{keyword:"base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src"},c:[{cN:"string",b:"'",e:"'"},{cN:"attribute",b:"^Content",e:":",eE:!0}]}})),e.registerLanguage("css",(function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:t,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}})),e.registerLanguage("d",(function(e){var t={keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},r="(0|[1-9][\\d_]*)",a="(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)",i="0[bB][01_]+",n="([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)",o="0[xX]"+n,s="([eE][+-]?"+a+")",l="("+a+"(\\.\\d*|"+s+")|\\d+\\."+a+a+"|\\."+r+s+"?)",c="(0[xX]("+n+"\\."+n+"|\\.?"+n+")[pP][+-]?"+a+")",d="("+r+"|"+i+"|"+o+")",p="("+c+"|"+l+")",m="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",u={cN:"number",b:"\\b"+d+"(L|u|U|Lu|LU|uL|UL)?",r:0},b={cN:"number",b:"\\b("+p+"([fF]|L|i|[fF]i|Li)?|"+d+"(i|[fF]i|Li))",r:0},g={cN:"string",b:"'("+m+"|.)",e:"'",i:"."},f={b:m,r:0},_={cN:"string",b:'"',c:[f],e:'"[cwd]?'},h={cN:"string",b:'[rq]"',e:'"[cwd]?',r:5},v={cN:"string",b:"`",e:"`[cwd]?"},y={cN:"string",b:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',r:10},S={cN:"string",b:'q"\\{',e:'\\}"'},C={cN:"meta",b:"^#!",e:"$",r:5},x={cN:"meta",b:"#(line)",e:"$",r:5},E={cN:"keyword",b:"@[a-zA-Z_][a-zA-Z_\\d]*"},N=e.C("\\/\\+","\\+\\/",{c:["self"],r:10});return{l:e.UIR,k:t,c:[e.CLCM,e.CBCM,N,y,_,h,v,S,b,u,g,C,x,E]}})),e.registerLanguage("markdown",(function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}|\t)",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}})),e.registerLanguage("dart",(function(e){var t={cN:"subst",b:"\\$\\{",e:"}",k:"true false null this is new super"},r={cN:"string",v:[{b:"r'''",e:"'''"},{b:'r"""',e:'"""'},{b:"r'",e:"'",i:"\\n"},{b:'r"',e:'"',i:"\\n"},{b:"'''",e:"'''",c:[e.BE,t]},{b:'"""',e:'"""',c:[e.BE,t]},{b:"'",e:"'",i:"\\n",c:[e.BE,t]},{b:'"',e:'"',i:"\\n",c:[e.BE,t]}]};t.c=[e.CNM,r];var a={keyword:"assert async await break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch sync this throw true try var void while with yield abstract as dynamic export external factory get implements import library operator part set static typedef",built_in:"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList"};return{k:a,c:[r,e.C("/\\*\\*","\\*/",{sL:"markdown"}),e.C("///","$",{sL:"markdown"}),e.CLCM,e.CBCM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"meta",b:"@[A-Za-z]+"},{b:"=>"}]}})),e.registerLanguage("delphi",(function(e){var t="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure absolute reintroduce operator as is abstract alias assembler bitpacked break continue cppdecl cvar enumerator experimental platform deprecated unimplemented dynamic export far16 forward generic helper implements interrupt iochecks local name nodefault noreturn nostackframe oldfpccall otherwise saveregisters softfloat specialize strict unaligned varargs ",r=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],a={cN:"meta",v:[{b:/\{\$/,e:/\}/},{b:/\(\*\$/,e:/\*\)/}]},i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},n={cN:"string",b:/(#\d+)+/},o={b:e.IR+"\\s*=\\s*class\\s*\\(",rB:!0,c:[e.TM]},s={cN:"function",bK:"function constructor destructor procedure",e:/[:;]/,k:"function constructor|10 destructor|10 procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:t,c:[i,n,a].concat(r)},a].concat(r)};return{aliases:["dpr","dfm","pas","pascal","freepascal","lazarus","lpr","lfm"],cI:!0,k:t,i:/"|\$[G-Zg-z]|\/\*|<\/|\|/,c:[i,n,e.NM,o,s,a].concat(r)}})),e.registerLanguage("diff",(function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}})),e.registerLanguage("django",(function(e){var t={b:/\|[A-Za-z]+:?/,k:{name:"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone"},c:[e.QSM,e.ASM]};return{aliases:["jinja"],cI:!0,sL:"xml",c:[e.C(/\{%\s*comment\s*%}/,/\{%\s*endcomment\s*%}/),e.C(/\{#/,/#}/),{cN:"template-tag",b:/\{%/,e:/%}/,c:[{cN:"name",b:/\w+/,k:{name:"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim"},starts:{eW:!0,k:"in by as",c:[t],r:0}}]},{cN:"template-variable",b:/\{\{/,e:/}}/,c:[t]}]}})),e.registerLanguage("dns",(function(e){return{aliases:["bind","zone"],k:{keyword:"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT"},c:[e.C(";","$",{r:0}),{cN:"meta",b:/^\$(TTL|GENERATE|INCLUDE|ORIGIN)\b/},{cN:"number",b:"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))\\b"},{cN:"number",b:"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\b"},e.inherit(e.NM,{b:/\b\d+[dhwm]?/})]}})),e.registerLanguage("dockerfile",(function(e){return{aliases:["docker"],cI:!0,k:"from maintainer expose env arg user onbuild stopsignal",c:[e.HCM,e.ASM,e.QSM,e.NM,{bK:"run cmd entrypoint volume add copy workdir label healthcheck shell",starts:{e:/[^\\]\n/,sL:"bash"}}],i:"",i:"\\n"}]},t,e.CLCM,e.CBCM]},i={cN:"variable",b:"\\&[a-z\\d_]*\\b"},n={cN:"meta-keyword",b:"/[a-z][a-z\\d-]*/"},o={cN:"symbol",b:"^\\s*[a-zA-Z_][a-zA-Z\\d_]*:"},s={cN:"params",b:"<",e:">",c:[r,i]},l={cN:"class",b:/[a-zA-Z_][a-zA-Z\d_@]*\s{/,e:/[{;=]/,rB:!0,eE:!0},c={cN:"class",b:"/\\s*{",e:"};",r:10,c:[i,n,o,l,s,e.CLCM,e.CBCM,r,t]};return{k:"",c:[c,i,n,o,l,s,e.CLCM,e.CBCM,r,t,a,{b:e.IR+"::",k:""}]}})),e.registerLanguage("dust",(function(e){var t="if eq ne lt lte gt gte select default math sep";return{aliases:["dst"],cI:!0,sL:"xml",c:[{cN:"template-tag",b:/\{[#\/]/,e:/\}/,i:/;/,c:[{cN:"name",b:/[a-zA-Z\.-]+/,starts:{eW:!0,r:0,c:[e.QSM]}}]},{cN:"template-variable",b:/\{/,e:/\}/,i:/;/,k:t}]}})),e.registerLanguage("ebnf",(function(e){var t=e.C(/\(\*/,/\*\)/),r={cN:"attribute",b:/^[ ]*[a-zA-Z][a-zA-Z-]*([\s-]+[a-zA-Z][a-zA-Z]*)*/},a={cN:"meta",b:/\?.*\?/},i={b:/=/,e:/;/,c:[t,a,e.ASM,e.QSM]};return{i:/\S/,c:[t,r,i]}})),e.registerLanguage("elixir",(function(e){var t="[a-zA-Z_][a-zA-Z0-9_]*(\\!|\\?)?",r="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",a="and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote",i={cN:"subst",b:"#\\{",e:"}",l:t,k:a},n={cN:"string",c:[e.BE,i],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]},o={cN:"function",bK:"def defp defmacro",e:/\B\b/,c:[e.inherit(e.TM,{b:t,endsParent:!0})]},s=e.inherit(o,{cN:"class",bK:"defimpl defmodule defprotocol defrecord",e:/\bdo\b|$|;/}),l=[n,e.HCM,s,o,{cN:"symbol",b:":(?!\\s)",c:[n,{b:r}],r:0},{cN:"symbol",b:t+":",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"->"},{b:"("+e.RSR+")\\s*",c:[e.HCM,{cN:"regexp",i:"\\n",c:[e.BE,i],v:[{b:"/",e:"/[a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}],r:0}];return i.c=l,{l:t,k:a,c:l}})),e.registerLanguage("elm",(function(e){var t={v:[e.C("--","$"),e.C("{-","-}",{c:["self"]})]},r={cN:"type",b:"\\b[A-Z][\\w']*",r:0},a={b:"\\(",e:"\\)",i:'"',c:[{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},t]},i={b:"{",e:"}",c:a.c};return{k:"let in if then else case of where module import exposing type alias as infix infixl infixr port effect command subscription",c:[{bK:"port effect module",e:"exposing",k:"port effect module where command subscription exposing",c:[a,t],i:"\\W\\.|;"},{b:"import",e:"$",k:"import as exposing",c:[a,t],i:"\\W\\.|;"},{b:"type",e:"$",k:"type alias",c:[r,a,i,t]},{bK:"infix infixl infixr",e:"$",c:[e.CNM,t]},{b:"port",e:"$",k:"port",c:[t]},e.QSM,e.CNM,r,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),t,{b:"->|<-"}],i:/;/}})),e.registerLanguage("ruby",(function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},i={b:"#<",e:">"},n=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],o={cN:"subst",b:"#\\{",e:"}",k:r},s={cN:"string",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},l={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},c=[s,i,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(n)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),l].concat(n)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[s,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[i,{cN:"regexp",c:[e.BE,o],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(n),r:0}].concat(n);o.c=c,l.c=c;var d="[>?]>",p="[\\w#]+\\(\\w+\\):\\d+:\\d+>",m="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",u=[{b:/^\s*=>/,starts:{e:"$",c:c}},{cN:"meta",b:"^("+d+"|"+p+"|"+m+")",starts:{e:"$",c:c}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:n.concat(u).concat(c)}})),e.registerLanguage("erb",(function(e){return{sL:"xml",c:[e.C("<%#","%>"),{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0}]}})),e.registerLanguage("erlang-repl",(function(e){return{k:{built_in:"spawn spawn_link self",keyword:"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},c:[{cN:"meta",b:"^[0-9]+> ",r:10},e.C("%","$"),{cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},e.ASM,e.QSM,{b:"\\?(::)?([A-Z]\\w*(::)?)+"},{b:"->"},{b:"ok"},{b:"!"},{b:"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",r:0},{b:"[A-Z][a-zA-Z0-9_']*",r:0}]}})),e.registerLanguage("erlang",(function(e){var t="[a-z'][a-zA-Z0-9_']*",r="("+t+":"+t+"|"+t+")",a={keyword:"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",literal:"false true"},i=e.C("%","$"),n={cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},o={b:"fun\\s+"+t+"/\\d+"},s={b:r+"\\(",e:"\\)",rB:!0,r:0,c:[{b:r,r:0},{b:"\\(",e:"\\)",eW:!0,rE:!0,r:0}]},l={b:"{",e:"}",r:0},c={b:"\\b_([A-Z][A-Za-z0-9_]*)?",r:0},d={b:"[A-Z][a-zA-Z0-9_]*",r:0},p={b:"#"+e.UIR,r:0,rB:!0,c:[{b:"#"+e.UIR,r:0},{b:"{",e:"}",r:0}]},m={bK:"fun receive if try case",e:"end",k:a};m.c=[i,o,e.inherit(e.ASM,{cN:""}),m,s,e.QSM,n,l,c,d,p];var u=[i,o,m,s,e.QSM,n,l,c,d,p];s.c[1].c=u,l.c=u,p.c[1].c=u;var b={cN:"params",b:"\\(",e:"\\)",c:u};return{aliases:["erl"],k:a,i:"(",rB:!0,i:"\\(|#|//|/\\*|\\\\|:|;",c:[b,e.inherit(e.TM,{b:t})],starts:{e:";|\\.",k:a,c:u}},i,{b:"^-",e:"\\.",r:0,eE:!0,rB:!0,l:"-"+e.IR,k:"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec",c:[b]},n,e.QSM,p,c,d,l,{b:/\.$/}]}})),e.registerLanguage("excel",(function(e){return{aliases:["xlsx","xls"],cI:!0,l:/[a-zA-Z][\w\.]*/,k:{built_in:"ABS ACCRINT ACCRINTM ACOS ACOSH ACOT ACOTH AGGREGATE ADDRESS AMORDEGRC AMORLINC AND ARABIC AREAS ASC ASIN ASINH ATAN ATAN2 ATANH AVEDEV AVERAGE AVERAGEA AVERAGEIF AVERAGEIFS BAHTTEXT BASE BESSELI BESSELJ BESSELK BESSELY BETADIST BETA.DIST BETAINV BETA.INV BIN2DEC BIN2HEX BIN2OCT BINOMDIST BINOM.DIST BINOM.DIST.RANGE BINOM.INV BITAND BITLSHIFT BITOR BITRSHIFT BITXOR CALL CEILING CEILING.MATH CEILING.PRECISE CELL CHAR CHIDIST CHIINV CHITEST CHISQ.DIST CHISQ.DIST.RT CHISQ.INV CHISQ.INV.RT CHISQ.TEST CHOOSE CLEAN CODE COLUMN COLUMNS COMBIN COMBINA COMPLEX CONCAT CONCATENATE CONFIDENCE CONFIDENCE.NORM CONFIDENCE.T CONVERT CORREL COS COSH COT COTH COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS COUPDAYBS COUPDAYS COUPDAYSNC COUPNCD COUPNUM COUPPCD COVAR COVARIANCE.P COVARIANCE.S CRITBINOM CSC CSCH CUBEKPIMEMBER CUBEMEMBER CUBEMEMBERPROPERTY CUBERANKEDMEMBER CUBESET CUBESETCOUNT CUBEVALUE CUMIPMT CUMPRINC DATE DATEDIF DATEVALUE DAVERAGE DAY DAYS DAYS360 DB DBCS DCOUNT DCOUNTA DDB DEC2BIN DEC2HEX DEC2OCT DECIMAL DEGREES DELTA DEVSQ DGET DISC DMAX DMIN DOLLAR DOLLARDE DOLLARFR DPRODUCT DSTDEV DSTDEVP DSUM DURATION DVAR DVARP EDATE EFFECT ENCODEURL EOMONTH ERF ERF.PRECISE ERFC ERFC.PRECISE ERROR.TYPE EUROCONVERT EVEN EXACT EXP EXPON.DIST EXPONDIST FACT FACTDOUBLE FALSE|0 F.DIST FDIST F.DIST.RT FILTERXML FIND FINDB F.INV F.INV.RT FINV FISHER FISHERINV FIXED FLOOR FLOOR.MATH FLOOR.PRECISE FORECAST FORECAST.ETS FORECAST.ETS.CONFINT FORECAST.ETS.SEASONALITY FORECAST.ETS.STAT FORECAST.LINEAR FORMULATEXT FREQUENCY F.TEST FTEST FV FVSCHEDULE GAMMA GAMMA.DIST GAMMADIST GAMMA.INV GAMMAINV GAMMALN GAMMALN.PRECISE GAUSS GCD GEOMEAN GESTEP GETPIVOTDATA GROWTH HARMEAN HEX2BIN HEX2DEC HEX2OCT HLOOKUP HOUR HYPERLINK HYPGEOM.DIST HYPGEOMDIST IF|0 IFERROR IFNA IFS IMABS IMAGINARY IMARGUMENT IMCONJUGATE IMCOS IMCOSH IMCOT IMCSC IMCSCH IMDIV IMEXP IMLN IMLOG10 IMLOG2 IMPOWER IMPRODUCT IMREAL IMSEC IMSECH IMSIN IMSINH IMSQRT IMSUB IMSUM IMTAN INDEX INDIRECT INFO INT INTERCEPT INTRATE IPMT IRR ISBLANK ISERR ISERROR ISEVEN ISFORMULA ISLOGICAL ISNA ISNONTEXT ISNUMBER ISODD ISREF ISTEXT ISO.CEILING ISOWEEKNUM ISPMT JIS KURT LARGE LCM LEFT LEFTB LEN LENB LINEST LN LOG LOG10 LOGEST LOGINV LOGNORM.DIST LOGNORMDIST LOGNORM.INV LOOKUP LOWER MATCH MAX MAXA MAXIFS MDETERM MDURATION MEDIAN MID MIDBs MIN MINIFS MINA MINUTE MINVERSE MIRR MMULT MOD MODE MODE.MULT MODE.SNGL MONTH MROUND MULTINOMIAL MUNIT N NA NEGBINOM.DIST NEGBINOMDIST NETWORKDAYS NETWORKDAYS.INTL NOMINAL NORM.DIST NORMDIST NORMINV NORM.INV NORM.S.DIST NORMSDIST NORM.S.INV NORMSINV NOT NOW NPER NPV NUMBERVALUE OCT2BIN OCT2DEC OCT2HEX ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD OFFSET OR PDURATION PEARSON PERCENTILE.EXC PERCENTILE.INC PERCENTILE PERCENTRANK.EXC PERCENTRANK.INC PERCENTRANK PERMUT PERMUTATIONA PHI PHONETIC PI PMT POISSON.DIST POISSON POWER PPMT PRICE PRICEDISC PRICEMAT PROB PRODUCT PROPER PV QUARTILE QUARTILE.EXC QUARTILE.INC QUOTIENT RADIANS RAND RANDBETWEEN RANK.AVG RANK.EQ RANK RATE RECEIVED REGISTER.ID REPLACE REPLACEB REPT RIGHT RIGHTB ROMAN ROUND ROUNDDOWN ROUNDUP ROW ROWS RRI RSQ RTD SEARCH SEARCHB SEC SECH SECOND SERIESSUM SHEET SHEETS SIGN SIN SINH SKEW SKEW.P SLN SLOPE SMALL SQL.REQUEST SQRT SQRTPI STANDARDIZE STDEV STDEV.P STDEV.S STDEVA STDEVP STDEVPA STEYX SUBSTITUTE SUBTOTAL SUM SUMIF SUMIFS SUMPRODUCT SUMSQ SUMX2MY2 SUMX2PY2 SUMXMY2 SWITCH SYD T TAN TANH TBILLEQ TBILLPRICE TBILLYIELD T.DIST T.DIST.2T T.DIST.RT TDIST TEXT TEXTJOIN TIME TIMEVALUE T.INV T.INV.2T TINV TODAY TRANSPOSE TREND TRIM TRIMMEAN TRUE|0 TRUNC T.TEST TTEST TYPE UNICHAR UNICODE UPPER VALUE VAR VAR.P VAR.S VARA VARP VARPA VDB VLOOKUP WEBSERVICE WEEKDAY WEEKNUM WEIBULL WEIBULL.DIST WORKDAY WORKDAY.INTL XIRR XNPV XOR YEAR YEARFRAC YIELD YIELDDISC YIELDMAT Z.TEST ZTEST"},c:[{b:/^=/,e:/[^=]/,rE:!0,i:/=/,r:10},{cN:"symbol",b:/\b[A-Z]{1,2}\d+\b/,e:/[^\d]/,eE:!0,r:0},{cN:"symbol",b:/[A-Z]{0,2}\d*:[A-Z]{0,2}\d*/,r:0},e.BE,e.QSM,{cN:"number",b:e.NR+"(%)?",r:0},e.C(/\bN\(/,/\)/,{eB:!0,eE:!0,i:/\n/})]}})),e.registerLanguage("fix",(function(e){return{c:[{b:/[^\u2401\u0001]+/,e:/[\u2401\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\u2401\u0001=]+)/,e:/=([^\u2401\u0001=]+)/,rE:!0,rB:!1,cN:"attr"},{b:/=/,e:/([\u2401\u0001])/,eE:!0,eB:!0,cN:"string"}]}],cI:!0}})),e.registerLanguage("flix",(function(e){var t={cN:"string",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},r={cN:"string",v:[{b:'"',e:'"'}]},a={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/},i={cN:"function",bK:"def",e:/[:={\[(\n;]/,eE:!0,c:[a]};return{k:{literal:"true false",keyword:"case class def else enum if impl import in lat rel index let match namespace switch type yield with"},c:[e.CLCM,e.CBCM,t,r,i,e.CNM]}})),e.registerLanguage("fortran",(function(e){var t={cN:"params",b:"\\(",e:"\\)"},r={literal:".False. .True.",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image"};return{cI:!0,aliases:["f90","f95"],k:r,i:/\/\*/,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}})),e.registerLanguage("fsharp",(function(e){var t={b:"<",e:">",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:["fs"],k:"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",i:/\/\*/,c:[{cN:"keyword",b:/\b(yield|return|let|do)!/},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},{cN:"string",b:'"""',e:'"""'},e.C("\\(\\*","\\*\\)"),{cN:"class",bK:"type",e:"\\(|=|$",eE:!0,c:[e.UTM,t]},{cN:"meta",b:"\\[<",e:">\\]",r:10},{cN:"symbol",b:"\\B('[A-Za-z])\\b",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}})),e.registerLanguage("gams",(function(e){var t={keyword:"abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes",literal:"eps inf na","built-in":"abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart"},r={cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0},a={cN:"symbol",v:[{b:/\=[lgenxc]=/},{b:/\$/}]},i={cN:"comment",v:[{b:"'",e:"'"},{b:'"',e:'"'}],i:"\\n",c:[e.BE]},n={b:"/",e:"/",k:t,c:[i,e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM]},o={b:/[a-z][a-z0-9_]*(\([a-z0-9_, ]*\))?[ \t]+/,eB:!0,e:"$",eW:!0,c:[i,n,{cN:"comment",b:/([ ]*[a-z0-9&#*=?@>\\<:\-,()$\[\]_.{}!+%^]+)+/,r:0}]};return{aliases:["gms"],cI:!0,k:t,c:[e.C(/^\$ontext/,/^\$offtext/),{cN:"meta",b:"^\\$[a-z0-9]+",e:"$",rB:!0,c:[{cN:"meta-keyword",b:"^\\$[a-z0-9]+"}]},e.C("^\\*","$"),e.CLCM,e.CBCM,e.QSM,e.ASM,{bK:"set sets parameter parameters variable variables scalar scalars equation equations",e:";",c:[e.C("^\\*","$"),e.CLCM,e.CBCM,e.QSM,e.ASM,n,o]},{bK:"table",e:";",rB:!0,c:[{bK:"table",e:"$",c:[o]},e.C("^\\*","$"),e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM]},{cN:"function",b:/^[a-z][a-z0-9_,\-+' ()$]+\.{2}/,rB:!0,c:[{cN:"title",b:/^[a-z0-9_]+/},r,a]},e.CNM,a]}})),e.registerLanguage("gauss",(function(e){var t={keyword:"and bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new not open or output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint",built_in:"abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall_Greeks AmericanBinomCall_ImpVol AmericanBinomPut AmericanBinomPut_Greeks AmericanBinomPut_ImpVol AmericanBSCall AmericanBSCall_Greeks AmericanBSCall_ImpVol AmericanBSPut AmericanBSPut_Greeks AmericanBSPut_ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall_Greeks EuropeanBinomCall_ImpVol EuropeanBinomPut EuropeanBinomPut_Greeks EuropeanBinomPut_ImpVol EuropeanBSCall EuropeanBSCall_Greeks EuropeanBSCall_ImpVol EuropeanBSPut EuropeanBSPut_Greeks EuropeanBSPut_ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getdims getf getGAUSShome getmatrix getmatrix4D getname getnamef getNextTradingDay getNextWeekDay getnr getorders getpath getPreviousTradingDay getPreviousWeekDay getRow getscalar3D getscalar4D getTrRow getwind glm gradcplx gradMT gradMTm gradMTT gradMTTm gradp graphprt graphset hasimag header headermt hess hessMT hessMTg hessMTgw hessMTm hessMTmw hessMTT hessMTTg hessMTTgw hessMTTm hessMTw hessp hist histf histp hsec imag indcv indexcat indices indices2 indicesf indicesfn indnv indsav integrate1d integrateControlCreate intgrat2 intgrat3 inthp1 inthp2 inthp3 inthp4 inthpControlCreate intquad1 intquad2 intquad3 intrleav intrleavsa intrsect intsimp inv invpd invswp iscplx iscplxf isden isinfnanmiss ismiss key keyav keyw lag lag1 lagn lapEighb lapEighi lapEighvb lapEighvi lapgEig lapgEigh lapgEighv lapgEigv lapgSchur lapgSvdcst lapgSvds lapgSvdst lapSvdcusv lapSvds lapSvdusv ldlp ldlsol linSolve listwise ln lncdfbvn lncdfbvn2 lncdfmvn lncdfn lncdfn2 lncdfnc lnfact lngammacplx lnpdfmvn lnpdfmvt lnpdfn lnpdft loadd loadstruct loadwind loess loessmt loessmtControlCreate log loglog logx logy lower lowmat lowmat1 ltrisol lu lusol machEpsilon make makevars makewind margin matalloc matinit mattoarray maxbytes maxc maxindc maxv maxvec mbesselei mbesselei0 mbesselei1 mbesseli mbesseli0 mbesseli1 meanc median mergeby mergevar minc minindc minv miss missex missrv moment momentd movingave movingaveExpwgt movingaveWgt nextindex nextn nextnevn nextwind ntos null null1 numCombinations ols olsmt olsmtControlCreate olsqr olsqr2 olsqrmt ones optn optnevn orth outtyp pacf packedToSp packr parse pause pdfCauchy pdfChi pdfExp pdfGenPareto pdfHyperGeo pdfLaplace pdfLogistic pdfn pdfPoisson pdfRayleigh pdfWeibull pi pinv pinvmt plotAddArrow plotAddBar plotAddBox plotAddHist plotAddHistF plotAddHistP plotAddPolar plotAddScatter plotAddShape plotAddTextbox plotAddTS plotAddXY plotArea plotBar plotBox plotClearLayout plotContour plotCustomLayout plotGetDefaults plotHist plotHistF plotHistP plotLayout plotLogLog plotLogX plotLogY plotOpenWindow plotPolar plotSave plotScatter plotSetAxesPen plotSetBar plotSetBarFill plotSetBarStacked plotSetBkdColor plotSetFill plotSetGrid plotSetLegend plotSetLineColor plotSetLineStyle plotSetLineSymbol plotSetLineThickness plotSetNewWindow plotSetTitle plotSetWhichYAxis plotSetXAxisShow plotSetXLabel plotSetXRange plotSetXTicInterval plotSetXTicLabel plotSetYAxisShow plotSetYLabel plotSetYRange plotSetZAxisShow plotSetZLabel plotSurface plotTS plotXY polar polychar polyeval polygamma polyint polymake polymat polymroot polymult polyroot pqgwin previousindex princomp printfm printfmt prodc psi putarray putf putvals pvCreate pvGetIndex pvGetParNames pvGetParVector pvLength pvList pvPack pvPacki pvPackm pvPackmi pvPacks pvPacksi pvPacksm pvPacksmi pvPutParVector pvTest pvUnpack QNewton QNewtonmt QNewtonmtControlCreate QNewtonmtOutCreate QNewtonSet QProg QProgmt QProgmtInCreate qqr qqre qqrep qr qre qrep qrsol qrtsol qtyr qtyre qtyrep quantile quantiled qyr qyre qyrep qz rank rankindx readr real reclassify reclassifyCuts recode recserar recsercp recserrc rerun rescale reshape rets rev rfft rffti rfftip rfftn rfftnp rfftp rndBernoulli rndBeta rndBinomial rndCauchy rndChiSquare rndCon rndCreateState rndExp rndGamma rndGeo rndGumbel rndHyperGeo rndi rndKMbeta rndKMgam rndKMi rndKMn rndKMnb rndKMp rndKMu rndKMvm rndLaplace rndLCbeta rndLCgam rndLCi rndLCn rndLCnb rndLCp rndLCu rndLCvm rndLogNorm rndMTu rndMVn rndMVt rndn rndnb rndNegBinomial rndp rndPoisson rndRayleigh rndStateSkip rndu rndvm rndWeibull rndWishart rotater round rows rowsf rref sampleData satostrC saved saveStruct savewind scale scale3d scalerr scalinfnanmiss scalmiss schtoc schur searchsourcepath seekr select selif seqa seqm setdif setdifsa setvars setvwrmode setwind shell shiftr sin singleindex sinh sleep solpd sortc sortcc sortd sorthc sorthcc sortind sortindc sortmc sortr sortrc spBiconjGradSol spChol spConjGradSol spCreate spDenseSubmat spDiagRvMat spEigv spEye spLDL spline spLU spNumNZE spOnes spreadSheetReadM spreadSheetReadSA spreadSheetWrite spScale spSubmat spToDense spTrTDense spTScalar spZeros sqpSolve sqpSolveMT sqpSolveMTControlCreate sqpSolveMTlagrangeCreate sqpSolveMToutCreate sqpSolveSet sqrt statements stdc stdsc stocv stof strcombine strindx strlen strput strrindx strsect strsplit strsplitPad strtodt strtof strtofcplx strtriml strtrimr strtrunc strtruncl strtruncpad strtruncr submat subscat substute subvec sumc sumr surface svd svd1 svd2 svdcusv svds svdusv sysstate tab tan tanh tempname threadBegin threadEnd threadEndFor threadFor threadJoin threadStat time timedt timestr timeutc title tkf2eps tkf2ps tocart todaydt toeplitz token topolar trapchk trigamma trimr trunc type typecv typef union unionsa uniqindx uniqindxsa unique uniquesa upmat upmat1 upper utctodt utctodtv utrisol vals varCovMS varCovXS varget vargetl varmall varmares varput varputl vartypef vcm vcms vcx vcxs vec vech vecr vector vget view viewxyz vlist vnamecv volume vput vread vtypecv wait waitc walkindex where window writer xlabel xlsGetSheetCount xlsGetSheetSize xlsGetSheetTypes xlsMakeRange xlsReadM xlsReadSA xlsWrite xlsWriteM xlsWriteSA xpnd xtics xy xyz ylabel ytics zeros zeta zlabel ztics cdfEmpirical dot h5create h5open h5read h5readAttribute h5write h5writeAttribute ldl plotAddErrorBar plotAddSurface plotCDFEmpirical plotSetColormap plotSetContourLabels plotSetLegendFont plotSetTextInterpreter plotSetXTicCount plotSetYTicCount plotSetZLevels powerm strjoin strtrim sylvester",literal:"DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS"},r={cN:"meta",b:"#",e:"$",k:{"meta-keyword":"define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline"},c:[{b:/\\\n/,r:0},{bK:"include",e:"$",k:{"meta-keyword":"include"},c:[{cN:"meta-string",b:'"',e:'"',i:"\\n"}]},e.CLCM,e.CBCM]},a=e.UIR+"\\s*\\(?",i=[{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.CNM,e.CLCM,e.CBCM]}];return{aliases:["gss"],cI:!0,k:t,i:"(\\{[%#]|[%#]\\})",c:[e.CNM,e.CLCM,e.CBCM,e.C("@","@"),r,{cN:"string",b:'"',e:'"',c:[e.BE]},{cN:"function",bK:"proc keyword",e:";",eE:!0,k:t,c:[{b:a,rB:!0,c:[e.UTM],r:0},e.CNM,e.CLCM,e.CBCM,r].concat(i)},{cN:"function",bK:"fn",e:";",eE:!0,k:t,c:[{b:a+e.IR+"\\)?\\s*\\=\\s*",rB:!0,c:[e.UTM],r:0},e.CNM,e.CLCM,e.CBCM].concat(i)},{cN:"function",b:"\\bexternal (proc|keyword|fn)\\s+",e:";",eE:!0,k:t,c:[{b:a,rB:!0,c:[e.UTM],r:0},e.CLCM,e.CBCM]},{cN:"function",b:"\\bexternal (matrix|string|array|sparse matrix|struct "+e.IR+")\\s+",e:";",eE:!0,k:t,c:[e.CLCM,e.CBCM]}]}})),e.registerLanguage("gcode",(function(e){var t="[A-Z_][A-Z0-9_.]*",r="\\%",a="IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR",i={cN:"meta",b:"([O])([0-9]+)"},n=[e.CLCM,e.CBCM,e.C(/\(/,/\)/),e.inherit(e.CNM,{b:"([-+]?([0-9]*\\.?[0-9]+\\.?))|"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"name",b:"([G])([0-9]+\\.?[0-9]?)"},{cN:"name",b:"([M])([0-9]+\\.?[0-9]?)"},{cN:"attr",b:"(VC|VS|#)",e:"(\\d+)"},{cN:"attr",b:"(VZOFX|VZOFY|VZOFZ)"},{cN:"built_in",b:"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)",e:"([-+]?([0-9]*\\.?[0-9]+\\.?))(\\])"},{cN:"symbol",v:[{b:"N",e:"\\d+",i:"\\W"}]}];return{aliases:["nc"],cI:!0,l:t,k:a,c:[{cN:"meta",b:r},i].concat(n)}})),e.registerLanguage("gherkin",(function(e){return{aliases:["feature"],k:"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",c:[{cN:"symbol",b:"\\*",r:0},{cN:"meta",b:"@[^@\\s]+"},{b:"\\|",e:"\\|\\w*$",c:[{cN:"string",b:"[^|]+"}]},{cN:"variable",b:"<",e:">"},e.HCM,{cN:"string",b:'"""',e:'"""'},e.QSM]}})),e.registerLanguage("glsl",(function(e){return{k:{keyword:"break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly",type:"atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBufferiimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void",built_in:"gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow",literal:"true false"},i:'"',c:[e.CLCM,e.CBCM,e.CNM,{cN:"meta",b:"#",e:"$"}]}})),e.registerLanguage("go",(function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"",e:",\\s+",rB:!0,eW:!0,c:[{cN:"attr",b:":\\w+"},e.ASM,e.QSM,{b:"\\w+",r:0}]}]},{b:"\\(\\s*",e:"\\s*\\)",eE:!0,c:[{b:"\\w+\\s*=",e:"\\s+",rB:!0,eW:!0,c:[{cN:"attr",b:"\\w+",r:0},e.ASM,e.QSM,{b:"\\w+",r:0}]}]}]},{b:"^\\s*[=~]\\s*"},{b:"#{",starts:{e:"}",sL:"ruby"}}]}})),e.registerLanguage("handlebars",(function(e){var t={"builtin-name":"each in with if else unless bindattr action collection debugger log outlet template unbound view yield"};return{aliases:["hbs","html.hbs","html.handlebars"],cI:!0,sL:"xml",c:[e.C("{{!(--)?","(--)?}}"),{cN:"template-tag",b:/\{\{[#\/]/,e:/\}\}/,c:[{cN:"name",b:/[a-zA-Z\.-]+/,k:t,starts:{eW:!0,r:0,c:[e.QSM]}}]},{cN:"template-variable",b:/\{\{/,e:/\}\}/,k:t}]}})),e.registerLanguage("haskell",(function(e){var t={v:[e.C("--","$"),e.C("{-","-}",{c:["self"]})]},r={cN:"meta",b:"{-#",e:"#-}"},a={cN:"meta",b:"^#",e:"$"},i={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n={b:"\\(",e:"\\)",i:'"',c:[r,a,{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TM,{b:"[_a-z][\\w']*"}),t]},o={b:"{",e:"}",c:n.c};return{aliases:["hs"],k:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",c:[{bK:"module",e:"where",k:"module where",c:[n,t],i:"\\W\\.|;"},{b:"\\bimport\\b",e:"$",k:"import qualified as hiding",c:[n,t],i:"\\W\\.|;"},{cN:"class",b:"^(\\s*)?(class|instance)\\b",e:"where",k:"class family instance where",c:[i,n,t]},{cN:"class",b:"\\b(data|(new)?type)\\b",e:"$",k:"data family type newtype deriving",c:[r,i,n,o,t]},{bK:"default",e:"$",c:[i,n,t]},{bK:"infix infixl infixr",e:"$",c:[e.CNM,t]},{b:"\\bforeign\\b",e:"$",k:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",c:[i,e.QSM,t]},{cN:"meta",b:"#!\\/usr\\/bin\\/env runhaskell",e:"$"},r,a,e.QSM,e.CNM,i,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),t,{b:"->|<-"}]}})),e.registerLanguage("haxe",(function(e){var t="Int Float String Bool Dynamic Void Array ";return{aliases:["hx"],k:{keyword:"break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while "+t,built_in:"trace this",literal:"true false null _"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"},{cN:"subst",b:"\\$",e:"\\W}"}]},e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"meta",b:"@:",e:"$"},{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elseif end error"}},{cN:"type",b:":[ \t]*",e:"[^A-Za-z0-9_ \t\\->]",eB:!0,eE:!0,r:0},{cN:"type",b:":[ \t]*",e:"\\W",eB:!0,eE:!0},{cN:"type",b:"new *",e:"\\W",eB:!0,eE:!0},{cN:"class",bK:"enum",e:"\\{",c:[e.TM]},{cN:"class",bK:"abstract",e:"[\\{$]",c:[{cN:"type",b:"\\(",e:"\\)",eB:!0,eE:!0},{cN:"type",b:"from +",e:"\\W",eB:!0,eE:!0},{cN:"type",b:"to +",e:"\\W",eB:!0,eE:!0},e.TM],k:{keyword:"abstract from to"}},{cN:"class",b:"\\b(class|interface) +",e:"[\\{$]",eE:!0,k:"class interface",c:[{cN:"keyword",b:"\\b(extends|implements) +",k:"extends implements",c:[{cN:"type",b:e.IR,r:0}]},e.TM]},{cN:"function",bK:"function",e:"\\(",eE:!0,i:"\\S",c:[e.TM]}],i:/<\//}})),e.registerLanguage("hsp",(function(e){return{cI:!0,l:/[\w\._]+/,k:"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,{cN:"string",b:'{"',e:'"}',c:[e.BE]},e.C(";","$",{r:0}),{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib"},c:[e.inherit(e.QSM,{cN:"meta-string"}),e.NM,e.CNM,e.CLCM,e.CBCM]},{cN:"symbol",b:"^\\*(\\w+|@)"},e.NM,e.CNM]}})),e.registerLanguage("htmlbars",(function(e){var t="action collection component concat debugger each each-in else get hash if input link-to loc log mut outlet partial query-params render textarea unbound unless with yield view",r={i:/\}\}/,b:/[a-zA-Z0-9_]+=/,rB:!0,r:0,c:[{cN:"attr",b:/[a-zA-Z0-9_]+/}]},a=({i:/\}\}/,b:/\)/,e:/\)/,c:[{b:/[a-zA-Z\.\-]+/,k:{built_in:t},starts:{eW:!0,r:0,c:[e.QSM]}}]},{eW:!0,r:0,k:{keyword:"as",built_in:t},c:[e.QSM,r,e.NM]});return{cI:!0,sL:"xml",c:[e.C("{{!(--)?","(--)?}}"),{cN:"template-tag",b:/\{\{[#\/]/,e:/\}\}/,c:[{cN:"name",b:/[a-zA-Z\.\-]+/,k:{"builtin-name":t},starts:a}]},{cN:"template-variable",b:/\{\{[a-zA-Z][a-zA-Z\-]+/,e:/\}\}/,k:{keyword:"as",built_in:t},c:[e.QSM]}]}})),e.registerLanguage("http",(function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}})),e.registerLanguage("hy",(function(e){var t={"builtin-name":"!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= ~"},r="a-zA-Z_\\-!.?+*=<>&#'",a="["+r+"]["+r+"0-9/;:]*",i="[-+]?\\d+(\\.\\d+)?",n={cN:"meta",b:"^#!",e:"$"},o={b:a,r:0},s={cN:"number",b:i,r:0},l=e.inherit(e.QSM,{i:null}),c=e.C(";","$",{r:0}),d={cN:"literal",b:/\b([Tt]rue|[Ff]alse|nil|None)\b/},p={b:"[\\[\\{]",e:"[\\]\\}]"},m={cN:"comment",b:"\\^"+a},u=e.C("\\^\\{","\\}"),b={cN:"symbol",b:"[:]{1,2}"+a},g={b:"\\(",e:"\\)"},f={eW:!0,r:0},_={k:t,l:a,cN:"name",b:a,starts:f},h=[g,l,m,u,c,b,p,s,d,o];return g.c=[e.C("comment",""),_,f],f.c=h,p.c=h,{aliases:["hylang"],i:/\S/,c:[n,g,l,m,u,c,b,p,s,d]}})),e.registerLanguage("inform7",(function(e){var t="\\[",r="\\]";return{aliases:["i7"],cI:!0,k:{keyword:"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"},c:[{cN:"string",b:'"',e:'"',r:0,c:[{cN:"subst",b:t,e:r}]},{cN:"section",b:/^(Volume|Book|Part|Chapter|Section|Table)\b/,e:"$"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\b/,e:":",c:[{b:"\\(This",e:"\\)"}]},{cN:"comment",b:t,e:r,c:["self"]}]}})),e.registerLanguage("ini",(function(e){var t={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},t,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}})),e.registerLanguage("irpf90",(function(e){var t={cN:"params",b:"\\(",e:"\\)"},r={literal:".False. .True.",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here"};return{cI:!0,k:r,i:/\/\*/,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),e.C("begin_doc","end_doc",{r:10}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}})),e.registerLanguage("java",(function(e){var t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=t+"(<"+t+"(\\s*,\\s*"+t+")*>)?",a="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",i="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",n={cN:"number",b:i,r:0};return{aliases:["jsp"],k:a,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+r+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},n,{cN:"meta",b:"@[A-Za-z]+"}]}})),e.registerLanguage("javascript",(function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},i={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},n={cN:"string",b:"`",e:"`",c:[e.BE,i]};i.c=[e.ASM,e.QSM,n,a,e.RM];var o=i.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,n,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:o}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:o}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}})),e.registerLanguage("jboss-cli",(function(e){var t={b:/[\w-]+ *=/,rB:!0,r:0,c:[{cN:"attr",b:/[\w-]+/}]},r={cN:"params",b:/\(/,e:/\)/,c:[t],r:0},a={cN:"function",b:/:[\w\-.]+/,r:0},i={cN:"string",b:/\B(([\/.])[\w\-.\/=]+)+/},n={cN:"params",b:/--[\w\-=\/]+/};return{aliases:["wildfly-cli"],l:"[a-z-]+",k:{keyword:"alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source",literal:"true false"},c:[e.HCM,e.QSM,n,a,i,r]}})),e.registerLanguage("json",(function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},i={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},n={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,i,n),{c:r,k:t,i:"\\S"}})),e.registerLanguage("julia",(function(e){var t={keyword:"in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias ",literal:"true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi γ π φ ",built_in:"ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool "},r="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",a={l:r,k:t,i:/<\//},i={cN:"number",b:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,r:0},n={cN:"string",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},o={cN:"subst",b:/\$\(/,e:/\)/,k:t},s={cN:"variable",b:"\\$"+r},l={cN:"string",c:[e.BE,o,s],v:[{b:/\w*"""/,e:/"""\w*/,r:10},{b:/\w*"/,e:/"\w*/}]},c={cN:"string",c:[e.BE,o,s],b:"`",e:"`"},d={cN:"meta",b:"@"+r},p={cN:"comment",v:[{b:"#=",e:"=#",r:10},{b:"#",e:"$"}]};return a.c=[i,n,l,c,d,p,e.HCM,{cN:"keyword",b:"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"},{b:/<:/}],o.c=a.c,a})),e.registerLanguage("julia-repl",(function(e){return{c:[{cN:"meta",b:/^julia>/,r:10,starts:{e:/^(?![ ]{6})/,sL:"julia"},aliases:["jldoctest"]}]}})),e.registerLanguage("kotlin",(function(e){var t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit initinterface annotation data sealed internal infix operator out by constructor super trait volatile transient native default",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},r={cN:"keyword",b:/\b(break|continue|return|this)\b/,starts:{c:[{cN:"symbol",b:/@\w+/}]}},a={cN:"symbol",b:e.UIR+"@"},i={cN:"subst",b:"\\${",e:"}",c:[e.ASM,e.CNM]},n={cN:"variable",b:"\\$"+e.UIR},o={cN:"string",v:[{b:'"""',e:'"""',c:[n,i]},{b:"'",e:"'",i:/\n/,c:[e.BE]},{b:'"',e:'"',i:/\n/,c:[e.BE,n,i]}]},s={cN:"meta",b:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UIR+")?"},l={cN:"meta",b:"@"+e.UIR,c:[{b:/\(/,e:/\)/,c:[e.inherit(o,{cN:"meta-string"})]}]};return{k:t,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,r,a,s,l,{cN:"function",bK:"fun",e:"[(]|$",rB:!0,eE:!0,k:t,i:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,r:5,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"type",b://,k:"reified",r:0},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,r:0,c:[{b:/:/,e:/[=,\/]/,eW:!0,c:[{cN:"type",b:e.UIR},e.CLCM,e.CBCM],r:0},e.CLCM,e.CBCM,s,l,o,e.CNM]},e.CBCM]},{cN:"class",bK:"class interface trait",e:/[:\{(]|$/,eE:!0,i:"extends implements",c:[{bK:"public protected internal private constructor"},e.UTM,{cN:"type",b://,eB:!0,eE:!0,r:0},{cN:"type",b:/[,:]\s*/,e:/[<\(,]|$/,eB:!0,rE:!0},s,l]},o,{cN:"meta",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.CNM]}})),e.registerLanguage("lasso",(function(e){var t="[a-zA-Z_][\\w.]*",r="<\\?(lasso(script)?|=)",a="\\]|\\?>",i={literal:"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",built_in:"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock",keyword:"cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"},n=e.C("\x3c!--","--\x3e",{r:0}),o={cN:"meta",b:"\\[noprocess\\]",starts:{e:"\\[/noprocess\\]",rE:!0,c:[n]}},s={cN:"meta",b:"\\[/noprocess|"+r},l={cN:"symbol",b:"'"+t+"'"},c=[e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+"|(-?infinity|NaN)\\b"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"`",e:"`"},{v:[{b:"[#$]"+t},{b:"#",e:"\\d+",i:"\\W"}]},{cN:"type",b:"::\\s*",e:t,i:"\\W"},{cN:"params",v:[{b:"-(?!infinity)"+t,r:0},{b:"(\\.\\.\\.)"}]},{b:/(->|\.)\s*/,r:0,c:[l]},{cN:"class",bK:"define",rE:!0,e:"\\(|=>",c:[e.inherit(e.TM,{b:t+"(=(?!>))?|[-+*/%](?!>)"})]}];return{aliases:["ls","lassoscript"],cI:!0,l:t+"|&[lg]t;",k:i,c:[{cN:"meta",b:a,r:0,starts:{e:"\\[|"+r,rE:!0,r:0,c:[n]}},o,s,{cN:"meta",b:"\\[no_square_brackets",starts:{e:"\\[/no_square_brackets\\]",l:t+"|&[lg]t;",k:i,c:[{cN:"meta",b:a,r:0,starts:{e:"\\[noprocess\\]|"+r,rE:!0,c:[n]}},o,s].concat(c)}},{cN:"meta",b:"\\[",r:0},{cN:"meta",b:"^#!",e:"lasso9$",r:10}].concat(c)}})),e.registerLanguage("ldif",(function(e){return{c:[{cN:"attribute",b:"^dn",e:": ",eE:!0,starts:{e:"$",r:0},r:10},{cN:"attribute",b:"^\\w",e:": ",eE:!0,starts:{e:"$",r:0}},{cN:"literal",b:"^-",e:"$"},e.HCM]}})),e.registerLanguage("leaf",(function(e){return{c:[{cN:"function",b:"#+[A-Za-z_0-9]*\\(",e:" {",rB:!0,eE:!0,c:[{cN:"keyword",b:"#+"},{cN:"title",b:"[A-Za-z_][A-Za-z_0-9]*"},{cN:"params",b:"\\(",e:"\\)",endsParent:!0,c:[{cN:"string",b:'"',e:'"'},{cN:"variable",b:"[A-Za-z_][A-Za-z_0-9]*"}]}]}]}})),e.registerLanguage("less",(function(e){var t="[\\w-]+",r="("+t+"|@{"+t+"})",a=[],i=[],n=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},o=function(e,t,r){return{cN:e,b:t,r:r}},s={b:"\\(",e:"\\)",c:i,r:0};i.push(e.CLCM,e.CBCM,n("'"),n('"'),e.CSSNM,{b:"(url|data-uri)\\(",starts:{cN:"string",e:"[\\)\\n]",eE:!0}},o("number","#[0-9A-Fa-f]+\\b"),s,o("variable","@@?"+t,10),o("variable","@{"+t+"}"),o("built_in","~?`[^`]*?`"),{cN:"attribute",b:t+"\\s*:",e:":",rB:!0,eE:!0},{cN:"meta",b:"!important"});var l=i.concat({b:"{",e:"}",c:a}),c={bK:"when",eW:!0,c:[{bK:"and not"}].concat(i)},d={b:r+"\\s*:",rB:!0,e:"[;}]",r:0,c:[{cN:"attribute",b:r,e:":",eE:!0,starts:{eW:!0,i:"[<=$]",r:0,c:i}}]},p={cN:"keyword",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:i,r:0}},m={cN:"variable",v:[{b:"@"+t+"\\s*:",r:15},{b:"@"+t}],starts:{e:"[;}]",rE:!0,c:l}},u={v:[{b:"[\\.#:&\\[>]",e:"[;{}]"},{b:r,e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",r:0,c:[e.CLCM,e.CBCM,c,o("keyword","all\\b"),o("variable","@{"+t+"}"),o("selector-tag",r+"%?",0),o("selector-id","#"+r),o("selector-class","\\."+r,0),o("selector-tag","&",0),{cN:"selector-attr",b:"\\[",e:"\\]"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"\\(",e:"\\)",c:l},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,p,m,d,u),{cI:!0,i:"[=>'/<($\"]",c:a}})),e.registerLanguage("lisp",(function(e){var t="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",r="\\|[^]*?\\|",a="(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",i={cN:"meta",b:"^#!",e:"$"},n={cN:"literal",b:"\\b(t{1}|nil)\\b"},o={cN:"number",v:[{b:a,r:0},{b:"#(b|B)[0-1]+(/[0-1]+)?"},{b:"#(o|O)[0-7]+(/[0-7]+)?"},{b:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{b:"#(c|C)\\("+a+" +"+a,e:"\\)"}]},s=e.inherit(e.QSM,{i:null}),l=e.C(";","$",{r:0}),c={b:"\\*",e:"\\*"},d={cN:"symbol",b:"[:&]"+t},p={b:t,r:0},m={b:r},u={b:"\\(",e:"\\)",c:["self",n,s,o,p]},b={c:[o,s,c,d,u,p],v:[{b:"['`]\\(",e:"\\)"},{b:"\\(quote ",e:"\\)",k:{name:"quote"}},{b:"'"+r}]},g={v:[{b:"'"+t},{b:"#'"+t+"(::"+t+")*"}]},f={b:"\\(\\s*",e:"\\)"},_={eW:!0,r:0};return f.c=[{cN:"name",v:[{b:t},{b:r}]},_],_.c=[b,g,f,n,o,s,l,c,d,m,p],{i:/\S/,c:[o,i,n,s,l,b,g,f,p]}})),e.registerLanguage("livecodeserver",(function(e){var t={b:"\\b[gtps][A-Z]+[A-Za-z0-9_\\-]*\\b|\\$_[A-Z]+",r:0},r=[e.CBCM,e.HCM,e.C("--","$"),e.C("[^:]//","$")],a=e.inherit(e.TM,{v:[{b:"\\b_*rig[A-Z]+[A-Za-z0-9_\\-]*"},{b:"\\b_[a-z0-9\\-]+"}]}),i=e.inherit(e.TM,{b:"\\b([A-Za-z0-9_\\-]+)\\b"});return{cI:!1,k:{keyword:"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys",literal:"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK",built_in:"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write"},c:[t,{cN:"keyword",b:"\\bend\\sif\\b"},{cN:"function",bK:"function",e:"$",c:[t,i,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"function",b:"\\bend\\s+",e:"$",k:"end",c:[i,a],r:0},{bK:"command on",e:"$",c:[t,i,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"meta",v:[{b:"<\\?(rev|lc|livecode)",r:10},{b:"<\\?"},{b:"\\?>"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(r),i:";$|^\\[|^=|&|{"}})),e.registerLanguage("livescript",(function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf",literal:"true false null undefined yes no on off it that void",built_in:"npm require console print module global window document"},r="[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",a=e.inherit(e.TM,{b:r}),i={cN:"subst",b:/#\{/,e:/}/,k:t},n={cN:"subst",b:/#[A-Za-z$_]/,e:/(?:\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},o=[e.BNM,{cN:"number",b:"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",r:0,starts:{e:"(\\s*/)?",r:0}},{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,i,n]},{b:/"/,e:/"/,c:[e.BE,i,n]},{b:/\\/,e:/(\s|$)/,eE:!0}]},{cN:"regexp",v:[{b:"//",e:"//[gim]*",c:[i,e.HCM]},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{b:"``",e:"``",eB:!0,eE:!0,sL:"javascript"}];i.c=o;var s={cN:"params",b:"\\(",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(o)}]};return{aliases:["ls"],k:t,i:/\/\*/,c:o.concat([e.C("\\/\\*","\\*\\/"),e.HCM,{cN:"function",c:[a,s],rB:!0,v:[{b:"("+r+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B\\->\\*?",e:"\\->\\*?"},{b:"("+r+"\\s*(?:=|:=)\\s*)?!?(\\(.*\\))?\\s*\\B[-~]{1,2}>\\*?",e:"[-~]{1,2}>\\*?"},{b:"("+r+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B!?[-~]{1,2}>\\*?",e:"!?[-~]{1,2}>\\*?"}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[a]},a]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}})),e.registerLanguage("llvm",(function(e){var t="([-a-zA-Z$._][\\w\\-$.]*)";return{k:"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double",c:[{cN:"keyword",b:"i\\d+"},e.C(";","\\n",{r:0}),e.QSM,{cN:"string",v:[{b:'"',e:'[^\\\\]"'}],r:0},{cN:"title",v:[{b:"@"+t},{b:"@\\d+"},{b:"!"+t},{b:"!\\d+"+t}]},{cN:"symbol",v:[{b:"%"+t},{b:"%\\d+"},{b:"#\\d+"}]},{cN:"number",v:[{b:"0[xX][a-fA-F0-9]+"},{b:"-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?"}],r:0}]}})),e.registerLanguage("lsl",(function(e){var t={cN:"subst",b:/\\[tn"\\]/},r={cN:"string",b:'"',e:'"',c:[t]},a={cN:"number",b:e.CNR},i={cN:"literal",v:[{b:"\\b(?:PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\b"},{b:"\\b(?:XP_ERROR_(?:EXPERIENCES_DISABLED|EXPERIENCE_(?:DISABLED|SUSPENDED)|INVALID_(?:EXPERIENCE|PARAMETERS)|KEY_NOT_FOUND|MATURITY_EXCEEDED|NONE|NOT_(?:FOUND|PERMITTED(?:_LAND)?)|NO_EXPERIENCE|QUOTA_EXCEEDED|RETRY_UPDATE|STORAGE_EXCEPTION|STORE_DISABLED|THROTTLED|UNKNOWN_ERROR)|JSON_APPEND|STATUS_(?:PHYSICS|ROTATE_[XYZ]|PHANTOM|SANDBOX|BLOCK_GRAB(?:_OBJECT)?|(?:DIE|RETURN)_AT_EDGE|CAST_SHADOWS|OK|MALFORMED_PARAMS|TYPE_MISMATCH|BOUNDS_ERROR|NOT_(?:FOUND|SUPPORTED)|INTERNAL_ERROR|WHITELIST_FAILED)|AGENT(?:_(?:BY_(?:LEGACY_|USER)NAME|FLYING|ATTACHMENTS|SCRIPTED|MOUSELOOK|SITTING|ON_OBJECT|AWAY|WALKING|IN_AIR|TYPING|CROUCHING|BUSY|ALWAYS_RUN|AUTOPILOT|LIST_(?:PARCEL(?:_OWNER)?|REGION)))?|CAMERA_(?:PITCH|DISTANCE|BEHINDNESS_(?:ANGLE|LAG)|(?:FOCUS|POSITION)(?:_(?:THRESHOLD|LOCKED|LAG))?|FOCUS_OFFSET|ACTIVE)|ANIM_ON|LOOP|REVERSE|PING_PONG|SMOOTH|ROTATE|SCALE|ALL_SIDES|LINK_(?:ROOT|SET|ALL_(?:OTHERS|CHILDREN)|THIS)|ACTIVE|PASS(?:IVE|_(?:ALWAYS|IF_NOT_HANDLED|NEVER))|SCRIPTED|CONTROL_(?:FWD|BACK|(?:ROT_)?(?:LEFT|RIGHT)|UP|DOWN|(?:ML_)?LBUTTON)|PERMISSION_(?:RETURN_OBJECTS|DEBIT|OVERRIDE_ANIMATIONS|SILENT_ESTATE_MANAGEMENT|TAKE_CONTROLS|TRIGGER_ANIMATION|ATTACH|CHANGE_LINKS|(?:CONTROL|TRACK)_CAMERA|TELEPORT)|INVENTORY_(?:TEXTURE|SOUND|OBJECT|SCRIPT|LANDMARK|CLOTHING|NOTECARD|BODYPART|ANIMATION|GESTURE|ALL|NONE)|CHANGED_(?:INVENTORY|COLOR|SHAPE|SCALE|TEXTURE|LINK|ALLOWED_DROP|OWNER|REGION(?:_START)?|TELEPORT|MEDIA)|OBJECT_(?:CLICK_ACTION|HOVER_HEIGHT|LAST_OWNER_ID|(?:PHYSICS|SERVER|STREAMING)_COST|UNKNOWN_DETAIL|CHARACTER_TIME|PHANTOM|PHYSICS|TEMP_ON_REZ|NAME|DESC|POS|PRIM_(?:COUNT|EQUIVALENCE)|RETURN_(?:PARCEL(?:_OWNER)?|REGION)|REZZER_KEY|ROO?T|VELOCITY|OMEGA|OWNER|GROUP|CREATOR|ATTACHED_POINT|RENDER_WEIGHT|(?:BODY_SHAPE|PATHFINDING)_TYPE|(?:RUNNING|TOTAL)_SCRIPT_COUNT|TOTAL_INVENTORY_COUNT|SCRIPT_(?:MEMORY|TIME))|TYPE_(?:INTEGER|FLOAT|STRING|KEY|VECTOR|ROTATION|INVALID)|(?:DEBUG|PUBLIC)_CHANNEL|ATTACH_(?:AVATAR_CENTER|CHEST|HEAD|BACK|PELVIS|MOUTH|CHIN|NECK|NOSE|BELLY|[LR](?:SHOULDER|HAND|FOOT|EAR|EYE|[UL](?:ARM|LEG)|HIP)|(?:LEFT|RIGHT)_PEC|HUD_(?:CENTER_[12]|TOP_(?:RIGHT|CENTER|LEFT)|BOTTOM(?:_(?:RIGHT|LEFT))?)|[LR]HAND_RING1|TAIL_(?:BASE|TIP)|[LR]WING|FACE_(?:JAW|[LR]EAR|[LR]EYE|TOUNGE)|GROIN|HIND_[LR]FOOT)|LAND_(?:LEVEL|RAISE|LOWER|SMOOTH|NOISE|REVERT)|DATA_(?:ONLINE|NAME|BORN|SIM_(?:POS|STATUS|RATING)|PAYINFO)|PAYMENT_INFO_(?:ON_FILE|USED)|REMOTE_DATA_(?:CHANNEL|REQUEST|REPLY)|PSYS_(?:PART_(?:BF_(?:ZERO|ONE(?:_MINUS_(?:DEST_COLOR|SOURCE_(ALPHA|COLOR)))?|DEST_COLOR|SOURCE_(ALPHA|COLOR))|BLEND_FUNC_(DEST|SOURCE)|FLAGS|(?:START|END)_(?:COLOR|ALPHA|SCALE|GLOW)|MAX_AGE|(?:RIBBON|WIND|INTERP_(?:COLOR|SCALE)|BOUNCE|FOLLOW_(?:SRC|VELOCITY)|TARGET_(?:POS|LINEAR)|EMISSIVE)_MASK)|SRC_(?:MAX_AGE|PATTERN|ANGLE_(?:BEGIN|END)|BURST_(?:RATE|PART_COUNT|RADIUS|SPEED_(?:MIN|MAX))|ACCEL|TEXTURE|TARGET_KEY|OMEGA|PATTERN_(?:DROP|EXPLODE|ANGLE(?:_CONE(?:_EMPTY)?)?)))|VEHICLE_(?:REFERENCE_FRAME|TYPE_(?:NONE|SLED|CAR|BOAT|AIRPLANE|BALLOON)|(?:LINEAR|ANGULAR)_(?:FRICTION_TIMESCALE|MOTOR_DIRECTION)|LINEAR_MOTOR_OFFSET|HOVER_(?:HEIGHT|EFFICIENCY|TIMESCALE)|BUOYANCY|(?:LINEAR|ANGULAR)_(?:DEFLECTION_(?:EFFICIENCY|TIMESCALE)|MOTOR_(?:DECAY_)?TIMESCALE)|VERTICAL_ATTRACTION_(?:EFFICIENCY|TIMESCALE)|BANKING_(?:EFFICIENCY|MIX|TIMESCALE)|FLAG_(?:NO_DEFLECTION_UP|LIMIT_(?:ROLL_ONLY|MOTOR_UP)|HOVER_(?:(?:WATER|TERRAIN|UP)_ONLY|GLOBAL_HEIGHT)|MOUSELOOK_(?:STEER|BANK)|CAMERA_DECOUPLED))|PRIM_(?:ALPHA_MODE(?:_(?:BLEND|EMISSIVE|MASK|NONE))?|NORMAL|SPECULAR|TYPE(?:_(?:BOX|CYLINDER|PRISM|SPHERE|TORUS|TUBE|RING|SCULPT))?|HOLE_(?:DEFAULT|CIRCLE|SQUARE|TRIANGLE)|MATERIAL(?:_(?:STONE|METAL|GLASS|WOOD|FLESH|PLASTIC|RUBBER))?|SHINY_(?:NONE|LOW|MEDIUM|HIGH)|BUMP_(?:NONE|BRIGHT|DARK|WOOD|BARK|BRICKS|CHECKER|CONCRETE|TILE|STONE|DISKS|GRAVEL|BLOBS|SIDING|LARGETILE|STUCCO|SUCTION|WEAVE)|TEXGEN_(?:DEFAULT|PLANAR)|SCULPT_(?:TYPE_(?:SPHERE|TORUS|PLANE|CYLINDER|MASK)|FLAG_(?:MIRROR|INVERT))|PHYSICS(?:_(?:SHAPE_(?:CONVEX|NONE|PRIM|TYPE)))?|(?:POS|ROT)_LOCAL|SLICE|TEXT|FLEXIBLE|POINT_LIGHT|TEMP_ON_REZ|PHANTOM|POSITION|SIZE|ROTATION|TEXTURE|NAME|OMEGA|DESC|LINK_TARGET|COLOR|BUMP_SHINY|FULLBRIGHT|TEXGEN|GLOW|MEDIA_(?:ALT_IMAGE_ENABLE|CONTROLS|(?:CURRENT|HOME)_URL|AUTO_(?:LOOP|PLAY|SCALE|ZOOM)|FIRST_CLICK_INTERACT|(?:WIDTH|HEIGHT)_PIXELS|WHITELIST(?:_ENABLE)?|PERMS_(?:INTERACT|CONTROL)|PARAM_MAX|CONTROLS_(?:STANDARD|MINI)|PERM_(?:NONE|OWNER|GROUP|ANYONE)|MAX_(?:URL_LENGTH|WHITELIST_(?:SIZE|COUNT)|(?:WIDTH|HEIGHT)_PIXELS)))|MASK_(?:BASE|OWNER|GROUP|EVERYONE|NEXT)|PERM_(?:TRANSFER|MODIFY|COPY|MOVE|ALL)|PARCEL_(?:MEDIA_COMMAND_(?:STOP|PAUSE|PLAY|LOOP|TEXTURE|URL|TIME|AGENT|UNLOAD|AUTO_ALIGN|TYPE|SIZE|DESC|LOOP_SET)|FLAG_(?:ALLOW_(?:FLY|(?:GROUP_)?SCRIPTS|LANDMARK|TERRAFORM|DAMAGE|CREATE_(?:GROUP_)?OBJECTS)|USE_(?:ACCESS_(?:GROUP|LIST)|BAN_LIST|LAND_PASS_LIST)|LOCAL_SOUND_ONLY|RESTRICT_PUSHOBJECT|ALLOW_(?:GROUP|ALL)_OBJECT_ENTRY)|COUNT_(?:TOTAL|OWNER|GROUP|OTHER|SELECTED|TEMP)|DETAILS_(?:NAME|DESC|OWNER|GROUP|AREA|ID|SEE_AVATARS))|LIST_STAT_(?:MAX|MIN|MEAN|MEDIAN|STD_DEV|SUM(?:_SQUARES)?|NUM_COUNT|GEOMETRIC_MEAN|RANGE)|PAY_(?:HIDE|DEFAULT)|REGION_FLAG_(?:ALLOW_DAMAGE|FIXED_SUN|BLOCK_TERRAFORM|SANDBOX|DISABLE_(?:COLLISIONS|PHYSICS)|BLOCK_FLY|ALLOW_DIRECT_TELEPORT|RESTRICT_PUSHOBJECT)|HTTP_(?:METHOD|MIMETYPE|BODY_(?:MAXLENGTH|TRUNCATED)|CUSTOM_HEADER|PRAGMA_NO_CACHE|VERBOSE_THROTTLE|VERIFY_CERT)|STRING_(?:TRIM(?:_(?:HEAD|TAIL))?)|CLICK_ACTION_(?:NONE|TOUCH|SIT|BUY|PAY|OPEN(?:_MEDIA)?|PLAY|ZOOM)|TOUCH_INVALID_FACE|PROFILE_(?:NONE|SCRIPT_MEMORY)|RC_(?:DATA_FLAGS|DETECT_PHANTOM|GET_(?:LINK_NUM|NORMAL|ROOT_KEY)|MAX_HITS|REJECT_(?:TYPES|AGENTS|(?:NON)?PHYSICAL|LAND))|RCERR_(?:CAST_TIME_EXCEEDED|SIM_PERF_LOW|UNKNOWN)|ESTATE_ACCESS_(?:ALLOWED_(?:AGENT|GROUP)_(?:ADD|REMOVE)|BANNED_AGENT_(?:ADD|REMOVE))|DENSITY|FRICTION|RESTITUTION|GRAVITY_MULTIPLIER|KFM_(?:COMMAND|CMD_(?:PLAY|STOP|PAUSE)|MODE|FORWARD|LOOP|PING_PONG|REVERSE|DATA|ROTATION|TRANSLATION)|ERR_(?:GENERIC|PARCEL_PERMISSIONS|MALFORMED_PARAMS|RUNTIME_PERMISSIONS|THROTTLED)|CHARACTER_(?:CMD_(?:(?:SMOOTH_)?STOP|JUMP)|DESIRED_(?:TURN_)?SPEED|RADIUS|STAY_WITHIN_PARCEL|LENGTH|ORIENTATION|ACCOUNT_FOR_SKIPPED_FRAMES|AVOIDANCE_MODE|TYPE(?:_(?:[ABCD]|NONE))?|MAX_(?:DECEL|TURN_RADIUS|(?:ACCEL|SPEED)))|PURSUIT_(?:OFFSET|FUZZ_FACTOR|GOAL_TOLERANCE|INTERCEPT)|REQUIRE_LINE_OF_SIGHT|FORCE_DIRECT_PATH|VERTICAL|HORIZONTAL|AVOID_(?:CHARACTERS|DYNAMIC_OBSTACLES|NONE)|PU_(?:EVADE_(?:HIDDEN|SPOTTED)|FAILURE_(?:DYNAMIC_PATHFINDING_DISABLED|INVALID_(?:GOAL|START)|NO_(?:NAVMESH|VALID_DESTINATION)|OTHER|TARGET_GONE|(?:PARCEL_)?UNREACHABLE)|(?:GOAL|SLOWDOWN_DISTANCE)_REACHED)|TRAVERSAL_TYPE(?:_(?:FAST|NONE|SLOW))?|CONTENT_TYPE_(?:ATOM|FORM|HTML|JSON|LLSD|RSS|TEXT|XHTML|XML)|GCNP_(?:RADIUS|STATIC)|(?:PATROL|WANDER)_PAUSE_AT_WAYPOINTS|OPT_(?:AVATAR|CHARACTER|EXCLUSION_VOLUME|LEGACY_LINKSET|MATERIAL_VOLUME|OTHER|STATIC_OBSTACLE|WALKABLE)|SIM_STAT_PCT_CHARS_STEPPED)\\b"},{b:"\\b(?:FALSE|TRUE)\\b"},{b:"\\b(?:ZERO_ROTATION)\\b"},{b:"\\b(?:EOF|JSON_(?:ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(?:BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(?:GRANTED|DENIED))\\b"},{b:"\\b(?:ZERO_VECTOR|TOUCH_INVALID_(?:TEXCOORD|VECTOR))\\b"}]},n={cN:"built_in",b:"\\b(?:ll(?:AgentInExperience|(?:Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(?:Details|ErrorMessage)|ReturnObjectsBy(?:ID|Owner)|Json(?:2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(?:Mag|Norm|Dist)|Rot(?:Between|2(?:Euler|Fwd|Left|Up))|(?:Euler|Axes)2Rot|Whisper|(?:Region|Owner)?Say|Shout|Listen(?:Control|Remove)?|Sensor(?:Repeat|Remove)?|Detected(?:Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|(?:[GS]et)(?:AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(?:Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(?:Scale|Offset|Rotate)Texture|(?:Rot)?Target(?:Remove)?|(?:Stop)?MoveToTarget|Apply(?:Rotational)?Impulse|Set(?:KeyframedMotion|ContentType|RegionPos|(?:Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(?:Queueing|Radius)|Vehicle(?:Type|(?:Float|Vector|Rotation)Param)|(?:Touch|Sit)?Text|Camera(?:Eye|At)Offset|PrimitiveParams|ClickAction|Link(?:Alpha|Color|PrimitiveParams(?:Fast)?|Texture(?:Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get(?:(?:Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(?:PrimitiveParams|Number(?:OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(?:Details|PermMask|PrimCount)|Parcel(?:MaxPrims|Details|Prim(?:Count|Owners))|Attached(?:List)?|(?:SPMax|Free|Used)Memory|Region(?:Name|TimeDilation|FPS|Corner|AgentCount)|Root(?:Position|Rotation)|UnixTime|(?:Parcel|Region)Flags|(?:Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(?:Prims|NotecardLines|Sides)|Animation(?:List)?|(?:Camera|Local)(?:Pos|Rot)|Vel|Accel|Omega|Time(?:stamp|OfDay)|(?:Object|CenterOf)?Mass|MassMKS|Energy|Owner|(?:Owner)?Key|SunDirection|Texture(?:Offset|Scale|Rot)|Inventory(?:Number|Name|Key|Type|Creator|PermMask)|Permissions(?:Key)?|StartParameter|List(?:Length|EntryType)|Date|Agent(?:Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(?:Name|State))|(?:Get|Reset|GetAndReset)Time|PlaySound(?:Slave)?|LoopSound(?:Master|Slave)?|(?:Trigger|Stop|Preload)Sound|(?:(?:Get|Delete)Sub|Insert)String|To(?:Upper|Lower)|Give(?:InventoryList|Money)|RezObject|(?:Stop)?LookAt|Sleep|CollisionFilter|(?:Take|Release)Controls|DetachFromAvatar|AttachToAvatar(?:Temp)?|InstantMessage|(?:GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(?:Length|Trim)|(?:Start|Stop)Animation|TargetOmega|Request(?:Experience)?Permissions|(?:Create|Break)Link|BreakAllLinks|(?:Give|Remove)Inventory|Water|PassTouches|Request(?:Agent|Inventory)Data|TeleportAgent(?:Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(?:Axis|Angle)|A(?:cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(?:CSV|Integer|Json|Float|String|Key|Vector|Rot|List(?:Strided)?)|DeleteSubList|List(?:Statistics|Sort|Randomize|(?:Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(?:CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(?:Slope|Normal|Contour)|GroundRepel|(?:Set|Remove)VehicleFlags|(?:AvatarOn)?(?:Link)?SitTarget|Script(?:Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(?:Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(?:Integer|String)ToBase64|XorBase64|Log(?:10)?|Base64To(?:String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(?:Load|Release|(?:E|Une)scape)URL|ParcelMedia(?:CommandList|Query)|ModPow|MapDestination|(?:RemoveFrom|AddTo|Reset)Land(?:Pass|Ban)List|(?:Set|Clear)CameraParams|HTTP(?:Request|Response)|TextBox|DetectedTouch(?:UV|Face|Pos|(?:N|Bin)ormal|ST)|(?:MD5|SHA1|DumpList2)String|Request(?:Secure)?URL|Clear(?:Prim|Link)Media|(?:Link)?ParticleSystem|(?:Get|Request)(?:Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(?:Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\b"};return{i:":",c:[r,{cN:"comment",v:[e.C("//","$"),e.C("/\\*","\\*/")]},a,{cN:"section",v:[{b:"\\b(?:state|default)\\b"},{b:"\\b(?:state_(?:entry|exit)|touch(?:_(?:start|end))?|(?:land_)?collision(?:_(?:start|end))?|timer|listen|(?:no_)?sensor|control|(?:not_)?at_(?:rot_)?target|money|email|experience_permissions(?:_denied)?|run_time_permissions|changed|attach|dataserver|moving_(?:start|end)|link_message|(?:on|object)_rez|remote_data|http_re(?:sponse|quest)|path_update|transaction_result)\\b"}]},n,i,{cN:"type",b:"\\b(?:integer|float|string|key|vector|quaternion|rotation|list)\\b"}]}})),e.registerLanguage("lua",(function(e){var t="\\[=*\\[",r="\\]=*\\]",a={b:t,e:r,c:["self"]},i=[e.C("--(?!"+t+")","$"),e.C("--"+t,r,{c:[a],r:10})];return{l:e.UIR,k:{literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstringmodule next pairs pcall print rawequal rawget rawset require select setfenvsetmetatable tonumber tostring type unpack xpcall arg selfcoroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},c:i.concat([{cN:"function",bK:"function",e:"\\)",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{cN:"params",b:"\\(",eW:!0,c:i}].concat(i)},e.CNM,e.ASM,e.QSM,{cN:"string",b:t,e:r,c:[a],r:5}])}})),e.registerLanguage("makefile",(function(e){var t={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%"},{b:"<=",r:0},{b:"=>",r:0},{b:"/\\\\"},{b:"\\\\/"}]},l={cN:"built_in",v:[{b:":-\\|--\x3e"},{b:"=",r:0}]};return{aliases:["m","moo"],k:t,c:[s,l,r,e.CBCM,a,e.NM,i,n,{b:/:-/}]}})),e.registerLanguage("mipsasm",(function(e){return{cI:!0,aliases:["mips"],l:"\\.?"+e.IR,k:{meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg ",built_in:"$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt "},c:[{cN:"keyword",b:"\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(.hb)?|jr(.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs.[sd]|add.[sd]|alnv.ps|bc1[ft]l?|c.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et]).[sd]|(ceil|floor|round|trunc).[lw].[sd]|cfc1|cvt.d.[lsw]|cvt.l.[dsw]|cvt.ps.s|cvt.s.[dlw]|cvt.s.p[lu]|cvt.w.[dls]|div.[ds]|ldx?c1|luxc1|lwx?c1|madd.[sd]|mfc1|mov[fntz]?.[ds]|msub.[sd]|mth?c1|mul.[ds]|neg.[ds]|nmadd.[ds]|nmsub.[ds]|p[lu][lu].ps|recip.fmt|r?sqrt.[ds]|sdx?c1|sub.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)",e:"\\s"},e.C("[;#]","$"),e.CBCM,e.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"title",b:"\\|",e:"\\|",i:"\\n",r:0},{cN:"number",v:[{b:"0x[0-9a-f]+"},{b:"\\b-?\\d+"}],r:0},{cN:"symbol",v:[{b:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{b:"^\\s*[0-9]+:"},{b:"[0-9]+[bf]"}],r:0}],i:"/"}})),e.registerLanguage("mizar",(function(e){return{k:"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity",c:[e.C("::","$")]}})),e.registerLanguage("perl",(function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},i={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},n=[e.BE,r,i],o=[i,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:n,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=o,a.c=o,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:o}})),e.registerLanguage("mojolicious",(function(e){return{sL:"xml",c:[{cN:"meta",b:"^__(END|DATA)__$"},{b:"^\\s*%{1,2}={0,2}",e:"$",sL:"perl"},{b:"<%{1,2}={0,2}",e:"={0,1}%>",sL:"perl",eB:!0,eE:!0}]}})),e.registerLanguage("monkey",(function(e){var t={cN:"number",r:0,v:[{b:"[$][a-fA-F0-9]+"},e.NM]};return{cI:!0,k:{keyword:"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw import",built_in:"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI",literal:"true false null and or shl shr mod"},i:/\/\*/,c:[e.C("#rem","#end"),e.C("'","$",{r:0}),{cN:"function",bK:"function method",e:"[(=:]|$",i:/\n/,c:[e.UTM]},{cN:"class",bK:"class interface",e:"$",c:[{bK:"extends implements"},e.UTM]},{cN:"built_in",b:"\\b(self|super)\\b"},{cN:"meta",b:"\\s*#",e:"$",k:{"meta-keyword":"if else elseif endif end then"}},{cN:"meta",b:"^\\s*strict\\b"},{bK:"alias",e:"=",c:[e.UTM]},e.QSM,t]}})),e.registerLanguage("moonscript",(function(e){var t={keyword:"if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using",literal:"true false nil",built_in:"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},i=[e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'/,e:/'/,c:[e.BE]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"built_in",b:"@__"+e.IR},{b:"@"+e.IR},{b:e.IR+"\\\\"+e.IR}];a.c=i;var n=e.inherit(e.TM,{b:r}),o="(\\(.*\\))?\\s*\\B[-=]>",s={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(i)}]};return{aliases:["moon"],k:t,i:/\/\*/,c:i.concat([e.C("--","$"),{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+o,e:"[-=]>",rB:!0,c:[n,s]},{b:/[\(,:=]\s*/,r:0,c:[{cN:"function",b:o,e:"[-=]>",rB:!0,c:[s]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[n]},n]},{cN:"name",b:r+":",e:":",rB:!0,rE:!0,r:0}])}})),e.registerLanguage("n1ql",(function(e){return{cI:!0,c:[{bK:"build create index delete drop explain infer|10 insert merge prepare select update upsert|10",e:/;/,eW:!0,k:{keyword:"all alter analyze and any array as asc begin between binary boolean break bucket build by call case cast cluster collate collection commit connect continue correlate cover create database dataset datastore declare decrement delete derived desc describe distinct do drop each element else end every except exclude execute exists explain fetch first flatten for force from function grant group gsi having if ignore ilike in include increment index infer inline inner insert intersect into is join key keys keyspace known last left let letting like limit lsm map mapping matched materialized merge minus namespace nest not number object offset on option or order outer over parse partition password path pool prepare primary private privilege procedure public raw realm reduce rename return returning revoke right role rollback satisfies schema select self semi set show some start statistics string system then to transaction trigger truncate under union unique unknown unnest unset update upsert use user using validate value valued values via view when where while with within work xor",literal:"true false null missing|5",built_in:"array_agg array_append array_concat array_contains array_count array_distinct array_ifnull array_length array_max array_min array_position array_prepend array_put array_range array_remove array_repeat array_replace array_reverse array_sort array_sum avg count max min sum greatest least ifmissing ifmissingornull ifnull missingif nullif ifinf ifnan ifnanorinf naninf neginfif posinfif clock_millis clock_str date_add_millis date_add_str date_diff_millis date_diff_str date_part_millis date_part_str date_trunc_millis date_trunc_str duration_to_str millis str_to_millis millis_to_str millis_to_utc millis_to_zone_name now_millis now_str str_to_duration str_to_utc str_to_zone_name decode_json encode_json encoded_size poly_length base64 base64_encode base64_decode meta uuid abs acos asin atan atan2 ceil cos degrees e exp ln log floor pi power radians random round sign sin sqrt tan trunc object_length object_names object_pairs object_inner_pairs object_values object_inner_values object_add object_put object_remove object_unwrap regexp_contains regexp_like regexp_position regexp_replace contains initcap length lower ltrim position repeat replace rtrim split substr title trim upper isarray isatom isboolean isnumber isobject isstring type toarray toatom toboolean tonumber toobject tostring"},c:[{cN:"string",b:"'",e:"'",c:[e.BE],r:0},{cN:"string",b:'"',e:'"',c:[e.BE],r:0},{cN:"symbol",b:"`",e:"`",c:[e.BE],r:2},e.CNM,e.CBCM]},e.CBCM]}})),e.registerLanguage("nginx",(function(e){var t={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},r={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,t],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[t]},{cN:"regexp",c:[e.BE,t],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},t]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:r}],r:0}],i:"[^\\s\\}]"}})),e.registerLanguage("nimrod",(function(e){return{aliases:["nim"],k:{keyword:"addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield",literal:"shared guarded stdin stdout stderr result true false",built_in:"int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic"},c:[{cN:"meta",b:/{\./,e:/\.}/,r:10},{cN:"string",b:/[a-zA-Z]\w*"/,e:/"/,c:[{b:/""/}]},{cN:"string",b:/([a-zA-Z]\w*)?"""/,e:/"""/},e.QSM,{cN:"type",b:/\b[A-Z]\w+\b/,r:0},{cN:"number",r:0,v:[{b:/\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/},{b:/\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/},{b:/\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/},{b:/\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/}]},e.HCM]}})),e.registerLanguage("nix",(function(e){var t={keyword:"rec with let in inherit assert if else then",literal:"true false or and null",built_in:"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation"},r={cN:"subst",b:/\$\{/,e:/}/,k:t},a={b:/[a-zA-Z0-9-_]+(\s*=)/,rB:!0,r:0,c:[{cN:"attr",b:/\S+/}]},i={cN:"string",c:[r],v:[{b:"''",e:"''"},{b:'"',e:'"'}]},n=[e.NM,e.HCM,e.CBCM,i,a];return r.c=n,{aliases:["nixos"],k:t,c:n}})),e.registerLanguage("nsis",(function(e){var t={cN:"variable",b:/\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)/},r={cN:"variable",b:/\$+{[\w\.:-]+}/},a={cN:"variable",b:/\$+\w+/,i:/\(\){}/},i={cN:"variable",b:/\$+\([\w\^\.:-]+\)/},n={cN:"params",b:"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)"},o={cN:"keyword",b:/\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)/},s={cN:"subst",b:/\$(\\[nrt]|\$)/},l={cN:"class",b:/\w+\:\:\w+/},c={cN:"string",v:[{b:'"',e:'"'},{b:"'",e:"'"},{b:"`",e:"`"}],i:/\n/,c:[s,t,r,a,i]};return{cI:!1,k:{keyword:"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle",literal:"admin all auto both bottom bzip2 colored components current custom directory false force hide highest ifdiff ifnewer instfiles lastused leave left license listonly lzma nevershow none normal notset off on open print right show silent silentlog smooth textonly top true try un.components un.custom un.directory un.instfiles un.license uninstConfirm user Win10 Win7 Win8 WinVista zlib"},c:[e.HCM,e.CBCM,e.C(";","$",{r:0}),{cN:"function",bK:"Function PageEx Section SectionGroup",e:"$"},c,o,r,a,i,n,l,e.NM]}})),e.registerLanguage("objectivec",(function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,i="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+i.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:i,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}})),e.registerLanguage("ocaml",(function(e){return{aliases:["ml"],k:{keyword:"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value",built_in:"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref",literal:"true false"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:"\\[(\\|\\|)?\\]|\\(\\)",r:0},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"type",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*",r:0},e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}})),e.registerLanguage("openscad",(function(e){var t={cN:"keyword",b:"\\$(f[asn]|t|vp[rtd]|children)"},r={cN:"literal",b:"false|true|PI|undef"},a={cN:"number",b:"\\b\\d+(\\.\\d+)?(e-?\\d+)?",r:0},i=e.inherit(e.QSM,{i:null}),n={cN:"meta",k:{"meta-keyword":"include use"},b:"include|use <",e:">"},o={cN:"params",b:"\\(",e:"\\)",c:["self",a,i,t,r]},s={b:"[*!#%]",r:0},l={cN:"function",bK:"module function",e:"\\=|\\{",c:[o,e.UTM]};return{aliases:["scad"],k:{keyword:"function module include use for intersection_for if else \\%",literal:"false true PI undef",built_in:"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign"},c:[e.CLCM,e.CBCM,a,n,i,t,s,l]}})),e.registerLanguage("oxygene",(function(e){var t="abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained",r=e.C("{","}",{r:0}),a=e.C("\\(\\*","\\*\\)",{r:10}),i={cN:"string",b:"'",e:"'",c:[{b:"''"}]},n={cN:"string",b:"(#\\d+)+"},o={cN:"function",bK:"function constructor destructor procedure method",e:"[:;]",k:"function constructor|10 destructor|10 procedure|10 method|10",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",k:t,c:[i,n]},r,a]};return{cI:!0,l:/\.?\w+/,k:t,i:'("|\\$[G-Zg-z]|\\/\\*||->)',c:[r,a,e.CLCM,i,n,e.NM,o,{cN:"class",b:"=\\bclass\\b",e:"end;",k:t,c:[i,n,r,a,e.CLCM,o]}]}})),e.registerLanguage("parser3",(function(e){var t=e.C("{","}",{c:["self"]});return{sL:"xml",r:0,c:[e.C("^#","$"),e.C("\\^rem{","}",{r:10,c:[t]}),{cN:"meta",b:"^@(?:BASE|USE|CLASS|OPTIONS)$",r:10},{cN:"title",b:"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$"},{cN:"variable",b:"\\$\\{?[\\w\\-\\.\\:]+\\}?"},{cN:"keyword",b:"\\^[\\w\\-\\.\\:]+"},{cN:"number",b:"\\^#[0-9a-fA-F]+"},e.CNM]}})),e.registerLanguage("pf",(function(e){var t={cN:"variable",b:/\$[\w\d#@][\w\d_]*/},r={cN:"variable",b:/<(?!\/)/,e:/>/};return{aliases:["pf.conf"],l:/[a-z0-9_<>-]+/,k:{built_in:"block match pass load anchor|5 antispoof|10 set table",keyword:"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id",literal:"all any no-route self urpf-failed egress|5 unknown"},c:[e.HCM,e.NM,e.QSM,t,r]}})),e.registerLanguage("php",(function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},i={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,i]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,i]}})),e.registerLanguage("pony",(function(e){var t={keyword:"actor addressof and as be break class compile_error compile_intrinsicconsume continue delegate digestof do else elseif embed end errorfor fun if ifdef in interface is isnt lambda let match new not objector primitive recover repeat return struct then trait try type until use var where while with xor",meta:"iso val tag trn box ref",literal:"this false true"},r={cN:"string",b:'"""',e:'"""',r:10},a={cN:"string",b:'"',e:'"',c:[e.BE]},i={cN:"string",b:"'",e:"'",c:[e.BE],r:0},n={cN:"type",b:"\\b_?[A-Z][\\w]*",r:0},o={b:e.IR+"'",r:0},s={cN:"class",bK:"class actor",e:"$",c:[e.TM,e.CLCM]},l={cN:"function",bK:"new fun",e:"=>",c:[e.TM,{b:/\(/,e:/\)/,c:[n,o,e.CNM,e.CBCM]},{b:/:/,eW:!0,c:[n]},e.CLCM]};return{k:t,c:[s,l,n,r,a,i,o,e.CNM,e.CLCM,e.CBCM]}})),e.registerLanguage("powershell",(function(e){var t={b:"`[\\s\\S]",r:0},r={cN:"variable",v:[{b:/\$[\w\d][\w\d_:]*/}]},a={cN:"literal",b:/\$(null|true|false)\b/},i={cN:"string",v:[{b:/"/,e:/"/},{b:/@"/,e:/^"@/}],c:[t,r,{cN:"variable",b:/\$[A-z]/,e:/[^A-z]/}]},n={cN:"string",v:[{b:/'/,e:/'/},{b:/@'/,e:/^'@/}]},o={cN:"doctag",v:[{b:/\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/},{b:/\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\s+\S+/}]},s=e.inherit(e.C(null,null),{v:[{b:/#/,e:/$/},{b:/<#/,e:/#>/}],c:[o]});return{aliases:["ps"],l:/-?[A-z\.\-]+/,cI:!0,k:{keyword:"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch",built_in:"Add-Computer Add-Content Add-History Add-JobTrigger Add-Member Add-PSSnapin Add-Type Checkpoint-Computer Clear-Content Clear-EventLog Clear-History Clear-Host Clear-Item Clear-ItemProperty Clear-Variable Compare-Object Complete-Transaction Connect-PSSession Connect-WSMan Convert-Path ConvertFrom-Csv ConvertFrom-Json ConvertFrom-SecureString ConvertFrom-StringData ConvertTo-Csv ConvertTo-Html ConvertTo-Json ConvertTo-SecureString ConvertTo-Xml Copy-Item Copy-ItemProperty Debug-Process Disable-ComputerRestore Disable-JobTrigger Disable-PSBreakpoint Disable-PSRemoting Disable-PSSessionConfiguration Disable-WSManCredSSP Disconnect-PSSession Disconnect-WSMan Disable-ScheduledJob Enable-ComputerRestore Enable-JobTrigger Enable-PSBreakpoint Enable-PSRemoting Enable-PSSessionConfiguration Enable-ScheduledJob Enable-WSManCredSSP Enter-PSSession Exit-PSSession Export-Alias Export-Clixml Export-Console Export-Counter Export-Csv Export-FormatData Export-ModuleMember Export-PSSession ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-ComputerRestorePoint Get-Content Get-ControlPanelItem Get-Counter Get-Credential Get-Culture Get-Date Get-Event Get-EventLog Get-EventSubscriber Get-ExecutionPolicy Get-FormatData Get-Host Get-HotFix Get-Help Get-History Get-IseSnippet Get-Item Get-ItemProperty Get-Job Get-JobTrigger Get-Location Get-Member Get-Module Get-PfxCertificate Get-Process Get-PSBreakpoint Get-PSCallStack Get-PSDrive Get-PSProvider Get-PSSession Get-PSSessionConfiguration Get-PSSnapin Get-Random Get-ScheduledJob Get-ScheduledJobOption Get-Service Get-TraceSource Get-Transaction Get-TypeData Get-UICulture Get-Unique Get-Variable Get-Verb Get-WinEvent Get-WmiObject Get-WSManCredSSP Get-WSManInstance Group-Object Import-Alias Import-Clixml Import-Counter Import-Csv Import-IseSnippet Import-LocalizedData Import-PSSession Import-Module Invoke-AsWorkflow Invoke-Command Invoke-Expression Invoke-History Invoke-Item Invoke-RestMethod Invoke-WebRequest Invoke-WmiMethod Invoke-WSManAction Join-Path Limit-EventLog Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Event New-EventLog New-IseSnippet New-Item New-ItemProperty New-JobTrigger New-Object New-Module New-ModuleManifest New-PSDrive New-PSSession New-PSSessionConfigurationFile New-PSSessionOption New-PSTransportOption New-PSWorkflowExecutionOption New-PSWorkflowSession New-ScheduledJobOption New-Service New-TimeSpan New-Variable New-WebServiceProxy New-WinEvent New-WSManInstance New-WSManSessionOption Out-Default Out-File Out-GridView Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Receive-Job Register-EngineEvent Register-ObjectEvent Register-PSSessionConfiguration Register-ScheduledJob Register-WmiEvent Remove-Computer Remove-Event Remove-EventLog Remove-Item Remove-ItemProperty Remove-Job Remove-JobTrigger Remove-Module Remove-PSBreakpoint Remove-PSDrive Remove-PSSession Remove-PSSnapin Remove-TypeData Remove-Variable Remove-WmiObject Remove-WSManInstance Rename-Computer Rename-Item Rename-ItemProperty Reset-ComputerMachinePassword Resolve-Path Restart-Computer Restart-Service Restore-Computer Resume-Job Resume-Service Save-Help Select-Object Select-String Select-Xml Send-MailMessage Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-JobTrigger Set-Location Set-PSBreakpoint Set-PSDebug Set-PSSessionConfiguration Set-ScheduledJob Set-ScheduledJobOption Set-Service Set-StrictMode Set-TraceSource Set-Variable Set-WmiInstance Set-WSManInstance Set-WSManQuickConfig Show-Command Show-ControlPanelItem Show-EventLog Sort-Object Split-Path Start-Job Start-Process Start-Service Start-Sleep Start-Transaction Start-Transcript Stop-Computer Stop-Job Stop-Process Stop-Service Stop-Transcript Suspend-Job Suspend-Service Tee-Object Test-ComputerSecureChannel Test-Connection Test-ModuleManifest Test-Path Test-PSSessionConfigurationFile Trace-Command Unblock-File Undo-Transaction Unregister-Event Unregister-PSSessionConfiguration Unregister-ScheduledJob Update-FormatData Update-Help Update-List Update-TypeData Use-Transaction Wait-Event Wait-Job Wait-Process Where-Object Write-Debug Write-Error Write-EventLog Write-Host Write-Output Write-Progress Write-Verbose Write-Warning Add-MDTPersistentDrive Disable-MDTMonitorService Enable-MDTMonitorService Get-MDTDeploymentShareStatistics Get-MDTMonitorData Get-MDTOperatingSystemCatalog Get-MDTPersistentDrive Import-MDTApplication Import-MDTDriver Import-MDTOperatingSystem Import-MDTPackage Import-MDTTaskSequence New-MDTDatabase Remove-MDTMonitorData Remove-MDTPersistentDrive Restore-MDTPersistentDrive Set-MDTMonitorData Test-MDTDeploymentShare Test-MDTMonitorData Update-MDTDatabaseSchema Update-MDTDeploymentShare Update-MDTLinkedDS Update-MDTMedia Update-MDTMedia Add-VamtProductKey Export-VamtData Find-VamtManagedMachine Get-VamtConfirmationId Get-VamtProduct Get-VamtProductKey Import-VamtData Initialize-VamtData Install-VamtConfirmationId Install-VamtProductActivation Install-VamtProductKey Update-VamtProduct",nomarkup:"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace"},c:[t,e.NM,i,n,a,r,s]}})),e.registerLanguage("processing",(function(e){return{k:{keyword:"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",literal:"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI",title:"setup draw",built_in:"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}})),e.registerLanguage("profile",(function(e){return{c:[e.CNM,{b:"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",e:":",eE:!0},{b:"(ncalls|tottime|cumtime)",e:"$",k:"ncalls tottime|10 cumtime|10 filename",r:10},{b:"function calls",e:"$",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:"string",b:"\\(",e:"\\)$",eB:!0,eE:!0,r:0}]}})),e.registerLanguage("prolog",(function(e){var t={b:/[a-z][A-Za-z0-9_]*/,r:0},r={cN:"symbol",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\(/,e:/\)/,r:0},i={b:/\[/,e:/\]/},n={cN:"comment",b:/%/,e:/$/,c:[e.PWM]},o={cN:"string",b:/`/,e:/`/,c:[e.BE]},s={cN:"string",b:/0\'(\\\'|.)/},l={cN:"string",b:/0\'\\s/},c={b:/:-/},d=[t,r,a,c,i,n,e.CBCM,e.QSM,e.ASM,o,s,l,e.CNM];return a.c=d,i.c=d,{c:d.concat([{b:/\.$/}])}})),e.registerLanguage("protobuf",(function(e){return{k:{keyword:"package import option optional required repeated group",built_in:"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes",literal:"true false"},c:[e.QSM,e.NM,e.CLCM,{cN:"class",bK:"message enum service",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:"function",bK:"rpc",e:/;/,eE:!0,k:"rpc returns"},{b:/^\s*[A-Z_]+/,e:/\s*=/,eE:!0}]}})),e.registerLanguage("puppet",(function(e){var t={keyword:"and case default else elsif false if in import enherits node or true undef unless main settings $string ",literal:"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted",built_in:"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"},r=e.C("#","$"),a="([A-Za-z_]|::)(\\w|::)*",i=e.inherit(e.TM,{b:a}),n={cN:"variable",b:"\\$"+a},o={cN:"string",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]};return{aliases:["pp"],c:[r,n,o,{bK:"class",e:"\\{|;",i:/=/,c:[i,r]},{bK:"define",e:/\{/,c:[{cN:"section",b:e.IR,endsParent:!0}]},{b:e.IR+"\\s+\\{",rB:!0,e:/\S/,c:[{cN:"keyword",b:e.IR},{b:/\{/,e:/\}/,k:t,r:0,c:[o,r,{b:"[a-zA-Z_]+\\s*=>",rB:!0,e:"=>",c:[{cN:"attr",b:e.IR}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},n]}],r:0}]}})),e.registerLanguage("purebasic",(function(e){var t={cN:"string",b:'(~)?"',e:'"',i:"\\n"},r={cN:"symbol",b:"#[a-zA-Z_]\\w*\\$?"};return{aliases:["pb","pbi"],k:"And As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect Continue Data DataSection EndDataSection Debug DebugLevel Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndEnumeration EndIf EndImport EndInterface EndMacro EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration Extends FakeReturn For Next ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface Macro NewList Not Or ProcedureReturn Protected Prototype PrototypeC Read ReDim Repeat Until Restore Return Select Shared Static Step Structure StructureUnion Swap To Wend While With XIncludeFile XOr Procedure ProcedureC ProcedureCDLL ProcedureDLL Declare DeclareC DeclareCDLL DeclareDLL",c:[e.C(";","$",{r:0}),{cN:"function",b:"\\b(Procedure|Declare)(C|CDLL|DLL)?\\b",e:"\\(",eE:!0,rB:!0,c:[{cN:"keyword",b:"(Procedure|Declare)(C|CDLL|DLL)?",eE:!0},{cN:"type",b:"\\.\\w*"},e.UTM]},t,r]}})),e.registerLanguage("python",(function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},i={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[a]},{b:/(fr|rf|f)"/,e:/"/,c:[a]},e.ASM,e.QSM]},n={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},o={cN:"params",b:/\(/,e:/\)/,c:["self",r,n,i]};return a.c=[i,n,r],{aliases:["py","gyp"],k:t,i:/(<\/|->|\?)|=>/,c:[r,n,i,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,o,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}})),e.registerLanguage("q",(function(e){var t={keyword:"do while select delete by update from",literal:"0b 1b",built_in:"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum",type:"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"};return{aliases:["k","kdb"],k:t,l:/(`?)[A-Za-z0-9_]+\b/,c:[e.CLCM,e.QSM,e.CNM]}})),e.registerLanguage("qml",(function(e){var t={keyword:"in of on if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4dPromise"},r="[a-zA-Z_][a-zA-Z0-9\\._]*",a={cN:"keyword",b:"\\bproperty\\b",starts:{cN:"string",e:"(:|=|;|,|//|/\\*|$)",rE:!0}},i={cN:"keyword",b:"\\bsignal\\b",starts:{cN:"string",e:"(\\(|:|=|;|,|//|/\\*|$)",rE:!0}},n={cN:"attribute",b:"\\bid\\s*:",starts:{cN:"string",e:r,rE:!1}},o={b:r+"\\s*:",rB:!0,c:[{cN:"attribute",b:r,e:"\\s*:",eE:!0,r:0}],r:0},s={b:r+"\\s*{",e:"{",rB:!0,r:0,c:[e.inherit(e.TM,{b:r})]};return{aliases:["qt"],cI:!1,k:t,c:[{cN:"meta",b:/^\s*['"]use (strict|asm)['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b:/\s*[);\]]/,r:0,sL:"xml"}],r:0},i,a,{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\[|%/},{b:"\\."+e.IR,r:0},n,o,s],i:/#/}})),e.registerLanguage("r",(function(e){var t="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:t,l:t,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}})),e.registerLanguage("rib",(function(e){return{k:"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd",i:"\]$/},{b:/<\//,e:/>/},{b:/^facet /,e:/\}/},{b:"^1\\.\\.(\\d+)$",e:/$/}],i:/./},e.C("^#","$"),s,l,o,{b:/[\w-]+\=([^\s\{\}\[\]\(\)]+)/,r:0,rB:!0,c:[{cN:"attribute",b:/[^=]+/},{b:/=/,eW:!0,r:0,c:[s,l,o,{cN:"literal",b:"\\b("+i.split(" ").join("|")+")\\b"},{b:/("[^"]*"|[^\s\{\}\[\]]+)/}]}]},{cN:"number",b:/\*[0-9a-fA-F]+/},{b:"\\b("+a.split(" ").join("|")+")([\\s[(]|])",rB:!0,c:[{cN:"builtin-name",b:/\w+/}]},{cN:"built_in",v:[{b:"(\\.\\./|/|\\s)(("+n.split(" ").join("|")+");?\\s)+",r:10},{b:/\.\./}]}]}})),e.registerLanguage("rsl",(function(e){return{k:{keyword:"float color point normal vector matrix while for if do return else break extern continue",built_in:"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp"},i:""}]}})),e.registerLanguage("scala",(function(e){var t={cN:"meta",b:"@[A-Za-z]+"},r={cN:"subst",v:[{b:"\\$[A-Za-z0-9_]+"},{b:"\\${",e:"}"}]},a={cN:"string",v:[{b:'"',e:'"',i:"\\n",c:[e.BE]},{b:'"""',e:'"""',r:10},{b:'[a-z]+"',e:'"',i:"\\n",c:[e.BE,r]},{cN:"string",b:'[a-z]+"""',e:'"""',c:[r],r:10}]},i={cN:"symbol",b:"'\\w[\\w\\d_]*(?!')"},n={cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},o={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,r:0},s={cN:"class",bK:"class object trait type",e:/[:={\[\n;]/,eE:!0,c:[{bK:"extends with",r:10},{b:/\[/,e:/\]/,eB:!0,eE:!0,r:0,c:[n]},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,r:0,c:[n]},o]},l={cN:"function",bK:"def",e:/[:={\[(\n;]/,eE:!0,c:[o]};return{k:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},c:[e.CLCM,e.CBCM,a,i,n,l,s,e.CNM,t]}})),e.registerLanguage("scheme",(function(e){var t="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",r="(\\-|\\+)?\\d+([./]\\d+)?",a=r+"[+\\-]"+r+"i",i={"builtin-name":"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},n={cN:"meta",b:"^#!",e:"$"},o={cN:"literal",b:"(#t|#f|#\\\\"+t+"|#\\\\.)"},s={cN:"number",v:[{b:r,r:0},{b:a,r:0},{b:"#b[0-1]+(/[0-1]+)?"},{b:"#o[0-7]+(/[0-7]+)?"},{b:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},l=e.QSM,c=[e.C(";","$",{r:0}),e.C("#\\|","\\|#")],d={b:t,r:0},p={cN:"symbol",b:"'"+t},m={eW:!0,r:0},u={v:[{b:/'/},{b:"`"}],c:[{b:"\\(",e:"\\)",c:["self",o,l,s,d,p]}]},b={cN:"name",b:t,l:t,k:i},g={b:/lambda/,eW:!0,rB:!0,c:[b,{b:/\(/,e:/\)/,endsParent:!0,c:[d]}]},f={v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}],c:[g,b,m]};return m.c=[o,s,l,d,p,u,f].concat(c),{i:/\S/,c:[n,s,l,p,u,f].concat(c)}})),e.registerLanguage("scilab",(function(e){var t=[e.CNM,{cN:"string",b:"'|\"",e:"'|\"",c:[e.BE,{b:"''"}]}];return{aliases:["sci"],l:/%?\w+/,k:{keyword:"abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while",literal:"%f %F %t %T %pi %eps %inf %nan %e %i %z %s",built_in:"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix"},i:'("|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"}]},{b:"[a-zA-Z_][a-zA-Z_0-9]*('+[\\.']*|[\\.']+)",e:"",r:0},{b:"\\[",e:"\\]'*[\\.']*",r:0,c:t},e.C("//","$")].concat(t)}})),e.registerLanguage("scss",(function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={cN:"variable",b:"(\\$"+t+")\\b"},a={cN:"number",b:"#[0-9A-Fa-f]+"};({cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"meta",b:"!important"}]}});return{cI:!0,i:"[=/|']",c:[e.CLCM,e.CBCM,{cN:"selector-id",b:"\\#[A-Za-z0-9_-]+",r:0},{cN:"selector-class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"selector-attr",b:"\\[",e:"\\]",i:"$"},{cN:"selector-tag",b:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",r:0},{b:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{b:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},r,{cN:"attribute",b:"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",i:"[^\\s]"},{b:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{b:":",e:";",c:[r,a,e.CSSNM,e.QSM,e.ASM,{cN:"meta",b:"!important"}]},{b:"@",e:"[{;]",k:"mixin include extend for if else each while charset import debug media page content font-face namespace warn",c:[r,e.QSM,e.ASM,a,e.CSSNM,{b:"\\s[A-Za-z0-9_.-]+",r:0}]}]}})),e.registerLanguage("shell",(function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}})),e.registerLanguage("smali",(function(e){var t=["add","and","cmp","cmpg","cmpl","const","div","double","float","goto","if","int","long","move","mul","neg","new","nop","not","or","rem","return","shl","shr","sput","sub","throw","ushr","xor"],r=["aget","aput","array","check","execute","fill","filled","goto/16","goto/32","iget","instance","invoke","iput","monitor","packed","sget","sparse"],a=["transient","constructor","abstract","final","synthetic","public","private","protected","static","bridge","system"];return{aliases:["smali"],c:[{cN:"string",b:'"',e:'"',r:0},e.C("#","$",{r:0}),{cN:"keyword",v:[{b:"\\s*\\.end\\s[a-zA-Z0-9]*"},{b:"^[ ]*\\.[a-zA-Z]*",r:0},{b:"\\s:[a-zA-Z_0-9]*",r:0},{b:"\\s("+a.join("|")+")"}]},{cN:"built_in",v:[{b:"\\s("+t.join("|")+")\\s"},{b:"\\s("+t.join("|")+")((\\-|/)[a-zA-Z0-9]+)+\\s",r:10},{b:"\\s("+r.join("|")+")((\\-|/)[a-zA-Z0-9]+)*\\s",r:10}]},{cN:"class",b:"L[^(;:\n]*;",r:0},{b:"[vp][0-9]+"}]}})),e.registerLanguage("smalltalk",(function(e){var t="[a-z][a-zA-Z0-9_]*",r={cN:"string",b:"\\$.{1}"},a={cN:"symbol",b:"#"+e.UIR};return{aliases:["st"],k:"self super nil true false thisContext",c:[e.C('"','"'),e.ASM,{cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},{b:t+":",r:0},e.CNM,a,r,{b:"\\|[ ]*"+t+"([ ]+"+t+")*[ ]*\\|",rB:!0,e:/\|/,i:/\S/,c:[{b:"(\\|[ ]*)?"+t}]},{b:"\\#\\(",e:"\\)",c:[e.ASM,r,e.CNM,a]}]}})),e.registerLanguage("sml",(function(e){return{aliases:["ml"],k:{keyword:"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while",built_in:"array bool char exn int list option order real ref string substring vector unit word",literal:"true false NONE SOME LESS EQUAL GREATER nil"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:/\[(\|\|)?\]|\(\)/,r:0},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"type",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*"},e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}})),e.registerLanguage("sqf",(function(e){var t=e.getLanguage("cpp").exports,r={cN:"variable",b:/\b_+[a-zA-Z_]\w*/},a={cN:"title",b:/[a-zA-Z][a-zA-Z0-9]+_fnc_\w*/},i={cN:"string",v:[{b:'"',e:'"',c:[{b:'""',r:0}]},{b:"'",e:"'",c:[{b:"''",r:0}]}]};return{aliases:["sqf"],cI:!0,k:{keyword:"case catch default do else exit exitWith for forEach from if switch then throw to try waitUntil while with",built_in:"abs accTime acos action actionIDs actionKeys actionKeysImages actionKeysNames actionKeysNamesArray actionName actionParams activateAddons activatedAddons activateKey add3DENConnection add3DENEventHandler add3DENLayer addAction addBackpack addBackpackCargo addBackpackCargoGlobal addBackpackGlobal addCamShake addCuratorAddons addCuratorCameraArea addCuratorEditableObjects addCuratorEditingArea addCuratorPoints addEditorObject addEventHandler addGoggles addGroupIcon addHandgunItem addHeadgear addItem addItemCargo addItemCargoGlobal addItemPool addItemToBackpack addItemToUniform addItemToVest addLiveStats addMagazine addMagazineAmmoCargo addMagazineCargo addMagazineCargoGlobal addMagazineGlobal addMagazinePool addMagazines addMagazineTurret addMenu addMenuItem addMissionEventHandler addMPEventHandler addMusicEventHandler addOwnedMine addPlayerScores addPrimaryWeaponItem addPublicVariableEventHandler addRating addResources addScore addScoreSide addSecondaryWeaponItem addSwitchableUnit addTeamMember addToRemainsCollector addUniform addVehicle addVest addWaypoint addWeapon addWeaponCargo addWeaponCargoGlobal addWeaponGlobal addWeaponItem addWeaponPool addWeaponTurret agent agents AGLToASL aimedAtTarget aimPos airDensityRTD airportSide AISFinishHeal alive all3DENEntities allControls allCurators allCutLayers allDead allDeadMen allDisplays allGroups allMapMarkers allMines allMissionObjects allow3DMode allowCrewInImmobile allowCuratorLogicIgnoreAreas allowDamage allowDammage allowFileOperations allowFleeing allowGetIn allowSprint allPlayers allSites allTurrets allUnits allUnitsUAV allVariables ammo and animate animateDoor animateSource animationNames animationPhase animationSourcePhase animationState append apply armoryPoints arrayIntersect asin ASLToAGL ASLToATL assert assignAsCargo assignAsCargoIndex assignAsCommander assignAsDriver assignAsGunner assignAsTurret assignCurator assignedCargo assignedCommander assignedDriver assignedGunner assignedItems assignedTarget assignedTeam assignedVehicle assignedVehicleRole assignItem assignTeam assignToAirport atan atan2 atg ATLToASL attachedObject attachedObjects attachedTo attachObject attachTo attackEnabled backpack backpackCargo backpackContainer backpackItems backpackMagazines backpackSpaceFor behaviour benchmark binocular blufor boundingBox boundingBoxReal boundingCenter breakOut breakTo briefingName buildingExit buildingPos buttonAction buttonSetAction cadetMode call callExtension camCommand camCommit camCommitPrepared camCommitted camConstuctionSetParams camCreate camDestroy cameraEffect cameraEffectEnableHUD cameraInterest cameraOn cameraView campaignConfigFile camPreload camPreloaded camPrepareBank camPrepareDir camPrepareDive camPrepareFocus camPrepareFov camPrepareFovRange camPreparePos camPrepareRelPos camPrepareTarget camSetBank camSetDir camSetDive camSetFocus camSetFov camSetFovRange camSetPos camSetRelPos camSetTarget camTarget camUseNVG canAdd canAddItemToBackpack canAddItemToUniform canAddItemToVest cancelSimpleTaskDestination canFire canMove canSlingLoad canStand canSuspend canUnloadInCombat canVehicleCargo captive captiveNum cbChecked cbSetChecked ceil channelEnabled cheatsEnabled checkAIFeature checkVisibility civilian className clearAllItemsFromBackpack clearBackpackCargo clearBackpackCargoGlobal clearGroupIcons clearItemCargo clearItemCargoGlobal clearItemPool clearMagazineCargo clearMagazineCargoGlobal clearMagazinePool clearOverlay clearRadio clearWeaponCargo clearWeaponCargoGlobal clearWeaponPool clientOwner closeDialog closeDisplay closeOverlay collapseObjectTree collect3DENHistory combatMode commandArtilleryFire commandChat commander commandFire commandFollow commandFSM commandGetOut commandingMenu commandMove commandRadio commandStop commandSuppressiveFire commandTarget commandWatch comment commitOverlay compile compileFinal completedFSM composeText configClasses configFile configHierarchy configName configNull configProperties configSourceAddonList configSourceMod configSourceModList connectTerminalToUAV controlNull controlsGroupCtrl copyFromClipboard copyToClipboard copyWaypoints cos count countEnemy countFriendly countSide countType countUnknown create3DENComposition create3DENEntity createAgent createCenter createDialog createDiaryLink createDiaryRecord createDiarySubject createDisplay createGearDialog createGroup createGuardedPoint createLocation createMarker createMarkerLocal createMenu createMine createMissionDisplay createMPCampaignDisplay createSimpleObject createSimpleTask createSite createSoundSource createTask createTeam createTrigger createUnit createVehicle createVehicleCrew createVehicleLocal crew ctrlActivate ctrlAddEventHandler ctrlAngle ctrlAutoScrollDelay ctrlAutoScrollRewind ctrlAutoScrollSpeed ctrlChecked ctrlClassName ctrlCommit ctrlCommitted ctrlCreate ctrlDelete ctrlEnable ctrlEnabled ctrlFade ctrlHTMLLoaded ctrlIDC ctrlIDD ctrlMapAnimAdd ctrlMapAnimClear ctrlMapAnimCommit ctrlMapAnimDone ctrlMapCursor ctrlMapMouseOver ctrlMapScale ctrlMapScreenToWorld ctrlMapWorldToScreen ctrlModel ctrlModelDirAndUp ctrlModelScale ctrlParent ctrlParentControlsGroup ctrlPosition ctrlRemoveAllEventHandlers ctrlRemoveEventHandler ctrlScale ctrlSetActiveColor ctrlSetAngle ctrlSetAutoScrollDelay ctrlSetAutoScrollRewind ctrlSetAutoScrollSpeed ctrlSetBackgroundColor ctrlSetChecked ctrlSetEventHandler ctrlSetFade ctrlSetFocus ctrlSetFont ctrlSetFontH1 ctrlSetFontH1B ctrlSetFontH2 ctrlSetFontH2B ctrlSetFontH3 ctrlSetFontH3B ctrlSetFontH4 ctrlSetFontH4B ctrlSetFontH5 ctrlSetFontH5B ctrlSetFontH6 ctrlSetFontH6B ctrlSetFontHeight ctrlSetFontHeightH1 ctrlSetFontHeightH2 ctrlSetFontHeightH3 ctrlSetFontHeightH4 ctrlSetFontHeightH5 ctrlSetFontHeightH6 ctrlSetFontHeightSecondary ctrlSetFontP ctrlSetFontPB ctrlSetFontSecondary ctrlSetForegroundColor ctrlSetModel ctrlSetModelDirAndUp ctrlSetModelScale ctrlSetPosition ctrlSetScale ctrlSetStructuredText ctrlSetText ctrlSetTextColor ctrlSetTooltip ctrlSetTooltipColorBox ctrlSetTooltipColorShade ctrlSetTooltipColorText ctrlShow ctrlShown ctrlText ctrlTextHeight ctrlType ctrlVisible curatorAddons curatorCamera curatorCameraArea curatorCameraAreaCeiling curatorCoef curatorEditableObjects curatorEditingArea curatorEditingAreaType curatorMouseOver curatorPoints curatorRegisteredObjects curatorSelected curatorWaypointCost current3DENOperation currentChannel currentCommand currentMagazine currentMagazineDetail currentMagazineDetailTurret currentMagazineTurret currentMuzzle currentNamespace currentTask currentTasks currentThrowable currentVisionMode currentWaypoint currentWeapon currentWeaponMode currentWeaponTurret currentZeroing cursorObject cursorTarget customChat customRadio cutFadeOut cutObj cutRsc cutText damage date dateToNumber daytime deActivateKey debriefingText debugFSM debugLog deg delete3DENEntities deleteAt deleteCenter deleteCollection deleteEditorObject deleteGroup deleteIdentity deleteLocation deleteMarker deleteMarkerLocal deleteRange deleteResources deleteSite deleteStatus deleteTeam deleteVehicle deleteVehicleCrew deleteWaypoint detach detectedMines diag_activeMissionFSMs diag_activeScripts diag_activeSQFScripts diag_activeSQSScripts diag_captureFrame diag_captureSlowFrame diag_codePerformance diag_drawMode diag_enable diag_enabled diag_fps diag_fpsMin diag_frameNo diag_list diag_log diag_logSlowFrame diag_mergeConfigFile diag_recordTurretLimits diag_tickTime diag_toggle dialog diarySubjectExists didJIP didJIPOwner difficulty difficultyEnabled difficultyEnabledRTD difficultyOption direction directSay disableAI disableCollisionWith disableConversation disableDebriefingStats disableNVGEquipment disableRemoteSensors disableSerialization disableTIEquipment disableUAVConnectability disableUserInput displayAddEventHandler displayCtrl displayNull displayParent displayRemoveAllEventHandlers displayRemoveEventHandler displaySetEventHandler dissolveTeam distance distance2D distanceSqr distributionRegion do3DENAction doArtilleryFire doFire doFollow doFSM doGetOut doMove doorPhase doStop doSuppressiveFire doTarget doWatch drawArrow drawEllipse drawIcon drawIcon3D drawLine drawLine3D drawLink drawLocation drawPolygon drawRectangle driver drop east echo edit3DENMissionAttributes editObject editorSetEventHandler effectiveCommander emptyPositions enableAI enableAIFeature enableAimPrecision enableAttack enableAudioFeature enableCamShake enableCaustics enableChannel enableCollisionWith enableCopilot enableDebriefingStats enableDiagLegend enableEndDialog enableEngineArtillery enableEnvironment enableFatigue enableGunLights enableIRLasers enableMimics enablePersonTurret enableRadio enableReload enableRopeAttach enableSatNormalOnDetail enableSaving enableSentences enableSimulation enableSimulationGlobal enableStamina enableTeamSwitch enableUAVConnectability enableUAVWaypoints enableVehicleCargo endLoadingScreen endMission engineOn enginesIsOnRTD enginesRpmRTD enginesTorqueRTD entities estimatedEndServerTime estimatedTimeLeft evalObjectArgument everyBackpack everyContainer exec execEditorScript execFSM execVM exp expectedDestination exportJIPMessages eyeDirection eyePos face faction fadeMusic fadeRadio fadeSound fadeSpeech failMission fillWeaponsFromPool find findCover findDisplay findEditorObject findEmptyPosition findEmptyPositionReady findNearestEnemy finishMissionInit finite fire fireAtTarget firstBackpack flag flagOwner flagSide flagTexture fleeing floor flyInHeight flyInHeightASL fog fogForecast fogParams forceAddUniform forcedMap forceEnd forceMap forceRespawn forceSpeed forceWalk forceWeaponFire forceWeatherChange forEachMember forEachMemberAgent forEachMemberTeam format formation formationDirection formationLeader formationMembers formationPosition formationTask formatText formLeader freeLook fromEditor fuel fullCrew gearIDCAmmoCount gearSlotAmmoCount gearSlotData get3DENActionState get3DENAttribute get3DENCamera get3DENConnections get3DENEntity get3DENEntityID get3DENGrid get3DENIconsVisible get3DENLayerEntities get3DENLinesVisible get3DENMissionAttribute get3DENMouseOver get3DENSelected getAimingCoef getAllHitPointsDamage getAllOwnedMines getAmmoCargo getAnimAimPrecision getAnimSpeedCoef getArray getArtilleryAmmo getArtilleryComputerSettings getArtilleryETA getAssignedCuratorLogic getAssignedCuratorUnit getBackpackCargo getBleedingRemaining getBurningValue getCameraViewDirection getCargoIndex getCenterOfMass getClientState getClientStateNumber getConnectedUAV getCustomAimingCoef getDammage getDescription getDir getDirVisual getDLCs getEditorCamera getEditorMode getEditorObjectScope getElevationOffset getFatigue getFriend getFSMVariable getFuelCargo getGroupIcon getGroupIconParams getGroupIcons getHideFrom getHit getHitIndex getHitPointDamage getItemCargo getMagazineCargo getMarkerColor getMarkerPos getMarkerSize getMarkerType getMass getMissionConfig getMissionConfigValue getMissionDLCs getMissionLayerEntities getModelInfo getMousePosition getNumber getObjectArgument getObjectChildren getObjectDLC getObjectMaterials getObjectProxy getObjectTextures getObjectType getObjectViewDistance getOxygenRemaining getPersonUsedDLCs getPilotCameraDirection getPilotCameraPosition getPilotCameraRotation getPilotCameraTarget getPlayerChannel getPlayerScores getPlayerUID getPos getPosASL getPosASLVisual getPosASLW getPosATL getPosATLVisual getPosVisual getPosWorld getRelDir getRelPos getRemoteSensorsDisabled getRepairCargo getResolution getShadowDistance getShotParents getSlingLoad getSpeed getStamina getStatValue getSuppression getTerrainHeightASL getText getUnitLoadout getUnitTrait getVariable getVehicleCargo getWeaponCargo getWeaponSway getWPPos glanceAt globalChat globalRadio goggles goto group groupChat groupFromNetId groupIconSelectable groupIconsVisible groupId groupOwner groupRadio groupSelectedUnits groupSelectUnit grpNull gunner gusts halt handgunItems handgunMagazine handgunWeapon handsHit hasInterface hasPilotCamera hasWeapon hcAllGroups hcGroupParams hcLeader hcRemoveAllGroups hcRemoveGroup hcSelected hcSelectGroup hcSetGroup hcShowBar hcShownBar headgear hideBody hideObject hideObjectGlobal hideSelection hint hintC hintCadet hintSilent hmd hostMission htmlLoad HUDMovementLevels humidity image importAllGroups importance in inArea inAreaArray incapacitatedState independent inflame inflamed inGameUISetEventHandler inheritsFrom initAmbientLife inPolygon inputAction inRangeOfArtillery insertEditorObject intersect is3DEN is3DENMultiplayer isAbleToBreathe isAgent isArray isAutoHoverOn isAutonomous isAutotest isBleeding isBurning isClass isCollisionLightOn isCopilotEnabled isDedicated isDLCAvailable isEngineOn isEqualTo isEqualType isEqualTypeAll isEqualTypeAny isEqualTypeArray isEqualTypeParams isFilePatchingEnabled isFlashlightOn isFlatEmpty isForcedWalk isFormationLeader isHidden isInRemainsCollector isInstructorFigureEnabled isIRLaserOn isKeyActive isKindOf isLightOn isLocalized isManualFire isMarkedForCollection isMultiplayer isMultiplayerSolo isNil isNull isNumber isObjectHidden isObjectRTD isOnRoad isPipEnabled isPlayer isRealTime isRemoteExecuted isRemoteExecutedJIP isServer isShowing3DIcons isSprintAllowed isStaminaEnabled isSteamMission isStreamFriendlyUIEnabled isText isTouchingGround isTurnedOut isTutHintsEnabled isUAVConnectable isUAVConnected isUniformAllowed isVehicleCargo isWalking isWeaponDeployed isWeaponRested itemCargo items itemsWithMagazines join joinAs joinAsSilent joinSilent joinString kbAddDatabase kbAddDatabaseTargets kbAddTopic kbHasTopic kbReact kbRemoveTopic kbTell kbWasSaid keyImage keyName knowsAbout land landAt landResult language laserTarget lbAdd lbClear lbColor lbCurSel lbData lbDelete lbIsSelected lbPicture lbSelection lbSetColor lbSetCurSel lbSetData lbSetPicture lbSetPictureColor lbSetPictureColorDisabled lbSetPictureColorSelected lbSetSelectColor lbSetSelectColorRight lbSetSelected lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbValue leader leaderboardDeInit leaderboardGetRows leaderboardInit leaveVehicle libraryCredits libraryDisclaimers lifeState lightAttachObject lightDetachObject lightIsOn lightnings limitSpeed linearConversion lineBreak lineIntersects lineIntersectsObjs lineIntersectsSurfaces lineIntersectsWith linkItem list listObjects ln lnbAddArray lnbAddColumn lnbAddRow lnbClear lnbColor lnbCurSelRow lnbData lnbDeleteColumn lnbDeleteRow lnbGetColumnsPosition lnbPicture lnbSetColor lnbSetColumnsPos lnbSetCurSelRow lnbSetData lnbSetPicture lnbSetText lnbSetValue lnbSize lnbText lnbValue load loadAbs loadBackpack loadFile loadGame loadIdentity loadMagazine loadOverlay loadStatus loadUniform loadVest local localize locationNull locationPosition lock lockCameraTo lockCargo lockDriver locked lockedCargo lockedDriver lockedTurret lockIdentity lockTurret lockWP log logEntities logNetwork logNetworkTerminate lookAt lookAtPos magazineCargo magazines magazinesAllTurrets magazinesAmmo magazinesAmmoCargo magazinesAmmoFull magazinesDetail magazinesDetailBackpack magazinesDetailUniform magazinesDetailVest magazinesTurret magazineTurretAmmo mapAnimAdd mapAnimClear mapAnimCommit mapAnimDone mapCenterOnCamera mapGridPosition markAsFinishedOnSteam markerAlpha markerBrush markerColor markerDir markerPos markerShape markerSize markerText markerType max members menuAction menuAdd menuChecked menuClear menuCollapse menuData menuDelete menuEnable menuEnabled menuExpand menuHover menuPicture menuSetAction menuSetCheck menuSetData menuSetPicture menuSetValue menuShortcut menuShortcutText menuSize menuSort menuText menuURL menuValue min mineActive mineDetectedBy missionConfigFile missionDifficulty missionName missionNamespace missionStart missionVersion mod modelToWorld modelToWorldVisual modParams moonIntensity moonPhase morale move move3DENCamera moveInAny moveInCargo moveInCommander moveInDriver moveInGunner moveInTurret moveObjectToEnd moveOut moveTime moveTo moveToCompleted moveToFailed musicVolume name nameSound nearEntities nearestBuilding nearestLocation nearestLocations nearestLocationWithDubbing nearestObject nearestObjects nearestTerrainObjects nearObjects nearObjectsReady nearRoads nearSupplies nearTargets needReload netId netObjNull newOverlay nextMenuItemIndex nextWeatherChange nMenuItems not numberToDate objectCurators objectFromNetId objectParent objNull objStatus onBriefingGroup onBriefingNotes onBriefingPlan onBriefingTeamSwitch onCommandModeChanged onDoubleClick onEachFrame onGroupIconClick onGroupIconOverEnter onGroupIconOverLeave onHCGroupSelectionChanged onMapSingleClick onPlayerConnected onPlayerDisconnected onPreloadFinished onPreloadStarted onShowNewObject onTeamSwitch openCuratorInterface openDLCPage openMap openYoutubeVideo opfor or orderGetIn overcast overcastForecast owner param params parseNumber parseText parsingNamespace particlesQuality pi pickWeaponPool pitch pixelGrid pixelGridBase pixelGridNoUIScale pixelH pixelW playableSlotsNumber playableUnits playAction playActionNow player playerRespawnTime playerSide playersNumber playGesture playMission playMove playMoveNow playMusic playScriptedMission playSound playSound3D position positionCameraToWorld posScreenToWorld posWorldToScreen ppEffectAdjust ppEffectCommit ppEffectCommitted ppEffectCreate ppEffectDestroy ppEffectEnable ppEffectEnabled ppEffectForceInNVG precision preloadCamera preloadObject preloadSound preloadTitleObj preloadTitleRsc preprocessFile preprocessFileLineNumbers primaryWeapon primaryWeaponItems primaryWeaponMagazine priority private processDiaryLink productVersion profileName profileNamespace profileNameSteam progressLoadingScreen progressPosition progressSetPosition publicVariable publicVariableClient publicVariableServer pushBack pushBackUnique putWeaponPool queryItemsPool queryMagazinePool queryWeaponPool rad radioChannelAdd radioChannelCreate radioChannelRemove radioChannelSetCallSign radioChannelSetLabel radioVolume rain rainbow random rank rankId rating rectangular registeredTasks registerTask reload reloadEnabled remoteControl remoteExec remoteExecCall remove3DENConnection remove3DENEventHandler remove3DENLayer removeAction removeAll3DENEventHandlers removeAllActions removeAllAssignedItems removeAllContainers removeAllCuratorAddons removeAllCuratorCameraAreas removeAllCuratorEditingAreas removeAllEventHandlers removeAllHandgunItems removeAllItems removeAllItemsWithMagazines removeAllMissionEventHandlers removeAllMPEventHandlers removeAllMusicEventHandlers removeAllOwnedMines removeAllPrimaryWeaponItems removeAllWeapons removeBackpack removeBackpackGlobal removeCuratorAddons removeCuratorCameraArea removeCuratorEditableObjects removeCuratorEditingArea removeDrawIcon removeDrawLinks removeEventHandler removeFromRemainsCollector removeGoggles removeGroupIcon removeHandgunItem removeHeadgear removeItem removeItemFromBackpack removeItemFromUniform removeItemFromVest removeItems removeMagazine removeMagazineGlobal removeMagazines removeMagazinesTurret removeMagazineTurret removeMenuItem removeMissionEventHandler removeMPEventHandler removeMusicEventHandler removeOwnedMine removePrimaryWeaponItem removeSecondaryWeaponItem removeSimpleTask removeSwitchableUnit removeTeamMember removeUniform removeVest removeWeapon removeWeaponGlobal removeWeaponTurret requiredVersion resetCamShake resetSubgroupDirection resistance resize resources respawnVehicle restartEditorCamera reveal revealMine reverse reversedMouseY roadAt roadsConnectedTo roleDescription ropeAttachedObjects ropeAttachedTo ropeAttachEnabled ropeAttachTo ropeCreate ropeCut ropeDestroy ropeDetach ropeEndPosition ropeLength ropes ropeUnwind ropeUnwound rotorsForcesRTD rotorsRpmRTD round runInitScript safeZoneH safeZoneW safeZoneWAbs safeZoneX safeZoneXAbs safeZoneY save3DENInventory saveGame saveIdentity saveJoysticks saveOverlay saveProfileNamespace saveStatus saveVar savingEnabled say say2D say3D scopeName score scoreSide screenshot screenToWorld scriptDone scriptName scriptNull scudState secondaryWeapon secondaryWeaponItems secondaryWeaponMagazine select selectBestPlaces selectDiarySubject selectedEditorObjects selectEditorObject selectionNames selectionPosition selectLeader selectMax selectMin selectNoPlayer selectPlayer selectRandom selectWeapon selectWeaponTurret sendAUMessage sendSimpleCommand sendTask sendTaskResult sendUDPMessage serverCommand serverCommandAvailable serverCommandExecutable serverName serverTime set set3DENAttribute set3DENAttributes set3DENGrid set3DENIconsVisible set3DENLayer set3DENLinesVisible set3DENMissionAttributes set3DENModelsVisible set3DENObjectType set3DENSelected setAccTime setAirportSide setAmmo setAmmoCargo setAnimSpeedCoef setAperture setApertureNew setArmoryPoints setAttributes setAutonomous setBehaviour setBleedingRemaining setCameraInterest setCamShakeDefParams setCamShakeParams setCamUseTi setCaptive setCenterOfMass setCollisionLight setCombatMode setCompassOscillation setCuratorCameraAreaCeiling setCuratorCoef setCuratorEditingAreaType setCuratorWaypointCost setCurrentChannel setCurrentTask setCurrentWaypoint setCustomAimCoef setDamage setDammage setDate setDebriefingText setDefaultCamera setDestination setDetailMapBlendPars setDir setDirection setDrawIcon setDropInterval setEditorMode setEditorObjectScope setEffectCondition setFace setFaceAnimation setFatigue setFlagOwner setFlagSide setFlagTexture setFog setFormation setFormationTask setFormDir setFriend setFromEditor setFSMVariable setFuel setFuelCargo setGroupIcon setGroupIconParams setGroupIconsSelectable setGroupIconsVisible setGroupId setGroupIdGlobal setGroupOwner setGusts setHideBehind setHit setHitIndex setHitPointDamage setHorizonParallaxCoef setHUDMovementLevels setIdentity setImportance setLeader setLightAmbient setLightAttenuation setLightBrightness setLightColor setLightDayLight setLightFlareMaxDistance setLightFlareSize setLightIntensity setLightnings setLightUseFlare setLocalWindParams setMagazineTurretAmmo setMarkerAlpha setMarkerAlphaLocal setMarkerBrush setMarkerBrushLocal setMarkerColor setMarkerColorLocal setMarkerDir setMarkerDirLocal setMarkerPos setMarkerPosLocal setMarkerShape setMarkerShapeLocal setMarkerSize setMarkerSizeLocal setMarkerText setMarkerTextLocal setMarkerType setMarkerTypeLocal setMass setMimic setMousePosition setMusicEffect setMusicEventHandler setName setNameSound setObjectArguments setObjectMaterial setObjectMaterialGlobal setObjectProxy setObjectTexture setObjectTextureGlobal setObjectViewDistance setOvercast setOwner setOxygenRemaining setParticleCircle setParticleClass setParticleFire setParticleParams setParticleRandom setPilotCameraDirection setPilotCameraRotation setPilotCameraTarget setPilotLight setPiPEffect setPitch setPlayable setPlayerRespawnTime setPos setPosASL setPosASL2 setPosASLW setPosATL setPosition setPosWorld setRadioMsg setRain setRainbow setRandomLip setRank setRectangular setRepairCargo setShadowDistance setShotParents setSide setSimpleTaskAlwaysVisible setSimpleTaskCustomData setSimpleTaskDescription setSimpleTaskDestination setSimpleTaskTarget setSimpleTaskType setSimulWeatherLayers setSize setSkill setSlingLoad setSoundEffect setSpeaker setSpeech setSpeedMode setStamina setStaminaScheme setStatValue setSuppression setSystemOfUnits setTargetAge setTaskResult setTaskState setTerrainGrid setText setTimeMultiplier setTitleEffect setTriggerActivation setTriggerArea setTriggerStatements setTriggerText setTriggerTimeout setTriggerType setType setUnconscious setUnitAbility setUnitLoadout setUnitPos setUnitPosWeak setUnitRank setUnitRecoilCoefficient setUnitTrait setUnloadInCombat setUserActionText setVariable setVectorDir setVectorDirAndUp setVectorUp setVehicleAmmo setVehicleAmmoDef setVehicleArmor setVehicleCargo setVehicleId setVehicleLock setVehiclePosition setVehicleTiPars setVehicleVarName setVelocity setVelocityTransformation setViewDistance setVisibleIfTreeCollapsed setWaves setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointForceBehaviour setWaypointFormation setWaypointHousePosition setWaypointLoiterRadius setWaypointLoiterType setWaypointName setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible setWeaponReloadingTime setWind setWindDir setWindForce setWindStr setWPPos show3DIcons showChat showCinemaBorder showCommandingMenu showCompass showCuratorCompass showGPS showHUD showLegend showMap shownArtilleryComputer shownChat shownCompass shownCuratorCompass showNewEditorObject shownGPS shownHUD shownMap shownPad shownRadio shownScoretable shownUAVFeed shownWarrant shownWatch showPad showRadio showScoretable showSubtitles showUAVFeed showWarrant showWatch showWaypoint showWaypoints side sideAmbientLife sideChat sideEmpty sideEnemy sideFriendly sideLogic sideRadio sideUnknown simpleTasks simulationEnabled simulCloudDensity simulCloudOcclusion simulInClouds simulWeatherSync sin size sizeOf skill skillFinal skipTime sleep sliderPosition sliderRange sliderSetPosition sliderSetRange sliderSetSpeed sliderSpeed slingLoadAssistantShown soldierMagazines someAmmo sort soundVolume spawn speaker speed speedMode splitString sqrt squadParams stance startLoadingScreen step stop stopEngineRTD stopped str sunOrMoon supportInfo suppressFor surfaceIsWater surfaceNormal surfaceType swimInDepth switchableUnits switchAction switchCamera switchGesture switchLight switchMove synchronizedObjects synchronizedTriggers synchronizedWaypoints synchronizeObjectsAdd synchronizeObjectsRemove synchronizeTrigger synchronizeWaypoint systemChat systemOfUnits tan targetKnowledge targetsAggregate targetsQuery taskAlwaysVisible taskChildren taskCompleted taskCustomData taskDescription taskDestination taskHint taskMarkerOffset taskNull taskParent taskResult taskState taskType teamMember teamMemberNull teamName teams teamSwitch teamSwitchEnabled teamType terminate terrainIntersect terrainIntersectASL text textLog textLogFormat tg time timeMultiplier titleCut titleFadeOut titleObj titleRsc titleText toArray toFixed toLower toString toUpper triggerActivated triggerActivation triggerArea triggerAttachedVehicle triggerAttachObject triggerAttachVehicle triggerStatements triggerText triggerTimeout triggerTimeoutCurrent triggerType turretLocal turretOwner turretUnit tvAdd tvClear tvCollapse tvCount tvCurSel tvData tvDelete tvExpand tvPicture tvSetCurSel tvSetData tvSetPicture tvSetPictureColor tvSetPictureColorDisabled tvSetPictureColorSelected tvSetPictureRight tvSetPictureRightColor tvSetPictureRightColorDisabled tvSetPictureRightColorSelected tvSetText tvSetTooltip tvSetValue tvSort tvSortByValue tvText tvTooltip tvValue type typeName typeOf UAVControl uiNamespace uiSleep unassignCurator unassignItem unassignTeam unassignVehicle underwater uniform uniformContainer uniformItems uniformMagazines unitAddons unitAimPosition unitAimPositionVisual unitBackpack unitIsUAV unitPos unitReady unitRecoilCoefficient units unitsBelowHeight unlinkItem unlockAchievement unregisterTask updateDrawIcon updateMenuItem updateObjectTree useAISteeringComponent useAudioTimeForMoves vectorAdd vectorCos vectorCrossProduct vectorDiff vectorDir vectorDirVisual vectorDistance vectorDistanceSqr vectorDotProduct vectorFromTo vectorMagnitude vectorMagnitudeSqr vectorMultiply vectorNormalized vectorUp vectorUpVisual vehicle vehicleCargoEnabled vehicleChat vehicleRadio vehicles vehicleVarName velocity velocityModelSpace verifySignature vest vestContainer vestItems vestMagazines viewDistance visibleCompass visibleGPS visibleMap visiblePosition visiblePositionASL visibleScoretable visibleWatch waves waypointAttachedObject waypointAttachedVehicle waypointAttachObject waypointAttachVehicle waypointBehaviour waypointCombatMode waypointCompletionRadius waypointDescription waypointForceBehaviour waypointFormation waypointHousePosition waypointLoiterRadius waypointLoiterType waypointName waypointPosition waypoints waypointScript waypointsEnabledUAV waypointShow waypointSpeed waypointStatements waypointTimeout waypointTimeoutCurrent waypointType waypointVisible weaponAccessories weaponAccessoriesCargo weaponCargo weaponDirection weaponInertia weaponLowered weapons weaponsItems weaponsItemsCargo weaponState weaponsTurret weightRTD west WFSideText wind",literal:"true false nil"},c:[e.CLCM,e.CBCM,e.NM,r,a,i,t.preprocessor],i:/#/}})),e.registerLanguage("sql",(function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}})),e.registerLanguage("stan",(function(e){return{c:[e.HCM,e.CLCM,e.CBCM,{b:e.UIR,l:e.UIR,k:{name:"for in while repeat until if then else",symbol:"bernoulli bernoulli_logit binomial binomial_logit beta_binomial hypergeometric categorical categorical_logit ordered_logistic neg_binomial neg_binomial_2 neg_binomial_2_log poisson poisson_log multinomial normal exp_mod_normal skew_normal student_t cauchy double_exponential logistic gumbel lognormal chi_square inv_chi_square scaled_inv_chi_square exponential inv_gamma weibull frechet rayleigh wiener pareto pareto_type_2 von_mises uniform multi_normal multi_normal_prec multi_normal_cholesky multi_gp multi_gp_cholesky multi_student_t gaussian_dlm_obs dirichlet lkj_corr lkj_corr_cholesky wishart inv_wishart","selector-tag":"int real vector simplex unit_vector ordered positive_ordered row_vector matrix cholesky_factor_corr cholesky_factor_cov corr_matrix cov_matrix",title:"functions model data parameters quantities transformed generated",literal:"true false"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0}]}})),e.registerLanguage("stata",(function(e){return{aliases:["do","ado"],cI:!0,k:"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d|0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e|0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g|0 gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h|0 hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l|0 la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m|0 ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n|0 nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u|0 unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5",c:[{cN:"symbol",b:/`[a-zA-Z0-9_]+'/},{cN:"variable",b:/\$\{?[a-zA-Z0-9_]+\}?/},{cN:"string",v:[{b:'`"[^\r\n]*?"\''},{b:'"[^\r\n"]*"'}]},{cN:"built_in",v:[{b:"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\(|$)"}]},e.C("^[ \t]*\\*.*$",!1),e.CLCM,e.CBCM]}})),e.registerLanguage("step21",(function(e){var t="[A-Z_][A-Z0-9_.]*",r={keyword:"HEADER ENDSEC DATA"},a={cN:"meta",b:"ISO-10303-21;",r:10},i={cN:"meta",b:"END-ISO-10303-21;",r:10};return{aliases:["p21","step","stp"],cI:!0,l:t,k:r,c:[a,i,e.CLCM,e.CBCM,e.C("/\\*\\*!","\\*/"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"'",e:"'"},{cN:"symbol",v:[{b:"#",e:"\\d+",i:"\\W"}]}]}})),e.registerLanguage("stylus",(function(e){var t={cN:"variable",b:"\\$"+e.IR},r={cN:"number",b:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},a=["charset","css","debug","extend","font-face","for","import","include","media","mixin","page","warn","while"],i=["after","before","first-letter","first-line","active","first-child","focus","hover","lang","link","visited"],n=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],o="[\\.\\s\\n\\[\\:,]",s=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-variant-ligatures","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"],l=["\\?","(\\bReturn\\b)","(\\bEnd\\b)","(\\bend\\b)","(\\bdef\\b)",";","#\\s","\\*\\s","===\\s","\\|","%"];return{aliases:["styl"],cI:!1,k:"if else for in",i:"("+l.join("|")+")",c:[e.QSM,e.ASM,e.CLCM,e.CBCM,r,{b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+o,rB:!0,c:[{cN:"selector-class",b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"+o,rB:!0,c:[{cN:"selector-id",b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\b("+n.join("|")+")"+o,rB:!0,c:[{cN:"selector-tag",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"&?:?:\\b("+i.join("|")+")"+o},{b:"@("+a.join("|")+")\\b"},t,e.CSSNM,e.NM,{cN:"function",b:"^[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",i:"[\\n]",rB:!0,c:[{cN:"title",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"},{cN:"params",b:/\(/,e:/\)/,c:[r,t,e.ASM,e.CSSNM,e.NM,e.QSM]}]},{cN:"attribute",b:"\\b("+s.reverse().join("|")+")\\b",starts:{e:/;|$/,c:[r,t,e.ASM,e.QSM,e.CSSNM,e.NM,e.CBCM],i:/\./,r:0}}]}})),e.registerLanguage("subunit",(function(e){var t={cN:"string",b:"\\[\n(multipart)?",e:"\\]\n"},r={cN:"string",b:"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z"},a={cN:"string",b:"(\\+|-)\\d+"},i={cN:"keyword",r:10,v:[{b:"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"},{b:"^progress(:?)(\\s+)?(pop|push)?"},{b:"^tags:"},{b:"^time:"}]};return{cI:!0,c:[t,r,a,i]}})),e.registerLanguage("swift",(function(e){var t={keyword:"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},r={cN:"type",b:"\\b[A-Z][\\wÀ-ʸ']*",r:0},a=e.C("/\\*","\\*/",{c:["self"]}),i={cN:"subst",b:/\\\(/,e:"\\)",k:t,c:[]},n={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0},o=e.inherit(e.QSM,{c:[i,e.BE]});return i.c=[n],{k:t,c:[o,e.CLCM,a,r,n,{cN:"function",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{b://},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,c:["self",n,o,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:t,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{cN:"meta",b:"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)"},{bK:"import",e:/$/,c:[e.CLCM,a]}]}})),e.registerLanguage("taggerscript",(function(e){var t={cN:"comment",b:/\$noop\(/,e:/\)/,c:[{b:/\(/,e:/\)/,c:["self",{b:/\\./}]}],r:10},r={cN:"keyword",b:/\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,e:/\(/,eE:!0},a={cN:"variable",b:/%[_a-zA-Z0-9:]*/,e:"%"},i={cN:"symbol",b:/\\./};return{c:[t,r,a,i]}})),e.registerLanguage("yaml",(function(e){var t="true false yes no null",r="^[ \\-]*",a="[a-zA-Z_][\\w\\-]*",i={cN:"attr",v:[{b:r+a+":"},{b:r+'"'+a+'":'},{b:r+"'"+a+"':"}]},n={cN:"template-variable",v:[{b:"{{",e:"}}"},{b:"%{",e:"}"}]},o={cN:"string",r:0,v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/\S+/}],c:[e.BE,n]};return{cI:!0,aliases:["yml","YAML","yaml"],c:[i,{cN:"meta",b:"^---s*$",r:10},{cN:"string",b:"[\\|>] *$",rE:!0,c:o.c,e:i.v[0].b},{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0,r:0},{cN:"type",b:"!!"+e.UIR},{cN:"meta",b:"&"+e.UIR+"$"},{cN:"meta",b:"\\*"+e.UIR+"$"},{cN:"bullet",b:"^ *-",r:0},e.HCM,{bK:t,k:{literal:t}},e.CNM,o]}})),e.registerLanguage("tap",(function(e){return{cI:!0,c:[e.HCM,{cN:"meta",v:[{b:"^TAP version (\\d+)$"},{b:"^1\\.\\.(\\d+)$"}]},{b:"(s+)?---$",e:"\\.\\.\\.$",sL:"yaml",r:0},{cN:"number",b:" (\\d+) "},{cN:"symbol",v:[{b:"^ok"},{b:"^not ok"}]}]}})),e.registerLanguage("tcl",(function(e){return{aliases:["tk"],k:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",c:[e.C(";[ \\t]*#","$"),e.C("^[ \\t]*#","$"),{bK:"proc",e:"[\\{]",eE:!0,c:[{cN:"title",b:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"[ \\t\\n\\r]",eW:!0,eE:!0}]},{eE:!0,v:[{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\(([a-zA-Z0-9_])*\\)",e:"[^a-zA-Z0-9_\\}\\$]"},{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"(\\))?[^a-zA-Z0-9_\\}\\$]"}]},{cN:"string",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:"number",v:[e.BNM,e.CNM]}]}})),e.registerLanguage("tex",(function(e){var t={cN:"tag",b:/\\/,r:0,c:[{cN:"name",v:[{b:/[a-zA-Zа-яА-я]+[*]?/},{b:/[^a-zA-Zа-яА-я0-9]/}],starts:{eW:!0,r:0,c:[{cN:"string",v:[{b:/\[/,e:/\]/},{b:/\{/,e:/\}/}]},{b:/\s*=\s*/,eW:!0,r:0,c:[{cN:"number",b:/-?\d*\.?\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?/}]}]}}]};return{c:[t,{cN:"formula",c:[t],r:0,v:[{b:/\$\$/,e:/\$\$/},{b:/\$/,e:/\$/}]},e.C("%","$",{r:0})]}})),e.registerLanguage("thrift",(function(e){var t="bool byte i16 i32 i64 double string binary";return{k:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:t,literal:"true false"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:"class",bK:"struct enum service exception",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:"\\b(set|list|map)\\s*<",e:">",k:t,c:["self"]}]}})),e.registerLanguage("tp",(function(e){var t={cN:"number",b:"[1-9][0-9]*",r:0},r={cN:"symbol",b:":[^\\]]+"},a={cN:"built_in",b:"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER| TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",e:"\\]",c:["self",t,r]},i={cN:"built_in",b:"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",e:"\\]",c:["self",t,e.QSM,r]};return{k:{keyword:"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS",literal:"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"},c:[a,i,{cN:"keyword",b:"/(PROG|ATTR|MN|POS|END)\\b"},{cN:"keyword",b:"(CALL|RUN|POINT_LOGIC|LBL)\\b"},{cN:"keyword",b:"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)"},{cN:"number",b:"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",r:0},e.C("//","[;$]"),e.C("!","[;$]"),e.C("--eg:","$"),e.QSM,{cN:"string",b:"'",e:"'"},e.CNM,{cN:"variable",b:"\\$[A-Za-z0-9_]+"}]}})),e.registerLanguage("twig",(function(e){var t={cN:"params",b:"\\(",e:"\\)"},r="attribute block constant cycle date dump include max min parent random range source template_from_string",a={bK:r,k:{name:r},r:0,c:[t]},i={b:/\|[A-Za-z_]+:?/,k:"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode",c:[a]},n="autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim";return n=n+" "+n.split(" ").map((function(e){return"end"+e})).join(" "),{aliases:["craftcms"],cI:!0,sL:"xml",c:[e.C(/\{#/,/#}/),{cN:"template-tag",b:/\{%/,e:/%}/,c:[{cN:"name",b:/\w+/,k:n,starts:{eW:!0,c:[i,a],r:0}}]},{cN:"template-variable",b:/\{\{/,e:/}}/,c:["self",i,a]}]}})),e.registerLanguage("typescript",(function(e){var t={keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract as from extends async await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void Promise"};return{aliases:["ts"],k:t,c:[{cN:"meta",b:/^\s*['"]use strict['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+e.IR+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:e.IR},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:["self",e.CLCM,e.CBCM]}]}]}],r:0},{cN:"function",b:"function",e:/[\{;]/,eE:!0,k:t,c:["self",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/%/,r:0},{bK:"constructor",e:/\{/,eE:!0,c:["self",{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:[e.CLCM,e.CBCM],i:/["'\(]/}]},{b:/module\./,k:{built_in:"module"},r:0},{bK:"module",e:/\{/,eE:!0},{bK:"interface",e:/\{/,eE:!0,k:"interface extends"},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},{cN:"meta",b:"@[A-Za-z]+"}]}})),e.registerLanguage("vala",(function(e){return{k:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object Gtk Posix",literal:"false true null"},c:[{cN:"class",bK:"class interface namespace",e:"{",eE:!0,i:"[^,:\\n\\s\\.]",c:[e.UTM]},e.CLCM,e.CBCM,{cN:"string",b:'"""',e:'"""',r:5},e.ASM,e.QSM,e.CNM,{cN:"meta",b:"^#",e:"$",r:2}]}})),e.registerLanguage("vbnet",(function(e){return{aliases:["vb"],cI:!0,k:{keyword:"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor",built_in:"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort",literal:"true false nothing"},i:"//|{|}|endif|gosub|variant|wend",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C("'","$",{rB:!0,c:[{cN:"doctag",b:"'''|\x3c!--|--\x3e",c:[e.PWM]},{cN:"doctag",b:"",c:[e.PWM]}]}),e.CNM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elseif end region externalsource"}}]}})),e.registerLanguage("vbscript",(function(e){return{aliases:["vbs"],cI:!0,k:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err",literal:"true false null nothing empty"},i:"//",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}})),e.registerLanguage("vbscript-html",(function(e){return{sL:"xml",c:[{b:"<%",e:"%>",sL:"vbscript"}]}})),e.registerLanguage("verilog",(function(e){var t={keyword:"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor",literal:"null",built_in:"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror"};return{aliases:["v","sv","svh"],cI:!1,k:t,l:/[\w\$]+/,c:[e.CBCM,e.CLCM,e.QSM,{cN:"number",c:[e.BE],v:[{b:"\\b((\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{b:"\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{b:"\\b([0-9_])+",r:0}]},{cN:"variable",v:[{b:"#\\((?!parameter).+\\)"},{b:"\\.\\w+",r:0}]},{cN:"meta",b:"`",e:"$",k:{"meta-keyword":"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall"},r:0}]}})),e.registerLanguage("vhdl",(function(e){var t="\\d(_|\\d)*",r="[eE][-+]?"+t,a=t+"(\\."+t+")?("+r+")?",i="\\w+",n=t+"#"+i+"(\\."+i+")?#("+r+")?",o="\\b("+n+"|"+a+")";return{cI:!0,k:{keyword:"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor",built_in:"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signedreal_vector time_vector",literal:"false true note warning error failure line text side width"},i:"{",c:[e.CBCM,e.C("--","$"),e.QSM,{cN:"number",b:o,r:0},{cN:"string",b:"'(U|X|0|1|Z|W|L|H|-)'",c:[e.BE]},{cN:"symbol",b:"'[A-Za-z](_?[A-Za-z0-9])*",c:[e.BE]}]}})),e.registerLanguage("vim",(function(e){return{l:/[!#@\w]+/,k:{keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"},i:/;/,c:[e.NM,e.ASM,{cN:"string",b:/"(\\"|\n\\|[^"\n])*"/},e.C('"',"$"),{cN:"variable",b:/[bwtglsav]:[\w\d_]*/},{cN:"function",bK:"function function!",e:"$",r:0,c:[e.TM,{cN:"params",b:"\\(",e:"\\)"}]},{cN:"symbol",b:/<[\w-]+>/}]}})),e.registerLanguage("x86asm",(function(e){return{cI:!0,l:"[.%]?"+e.IR,k:{keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},c:[e.C(";","$",{r:0}),{cN:"number",v:[{b:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",r:0},{b:"\\$[0-9][0-9A-Fa-f]*",r:0},{b:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{b:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},e.QSM,{cN:"string",v:[{b:"'",e:"[^\\\\]'"},{b:"`",e:"[^\\\\]`"}],r:0},{cN:"symbol",v:[{b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{b:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],r:0},{cN:"subst",b:"%[0-9]+",r:0},{cN:"subst",b:"%!S+",r:0},{cN:"meta",b:/^\s*\.[\w_-]+/}]}})),e.registerLanguage("xl",(function(e){var t="ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts",r={keyword:"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree",literal:"true false nil",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons "+t},a={cN:"string",b:'"',e:'"',i:"\\n"},i={cN:"string",b:"'",e:"'",i:"\\n"},n={cN:"string",b:"<<",e:">>"},o={cN:"number",b:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?"},s={bK:"import",e:"$",k:r,c:[a]},l={cN:"function",b:/[a-z][^\n]*->/,rB:!0,e:/->/,c:[e.inherit(e.TM,{starts:{eW:!0,k:r}})]};return{aliases:["tao"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:r,c:[e.CLCM,e.CBCM,a,i,n,l,s,o,e.NM]}})),e.registerLanguage("xquery",(function(e){var t="for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update",r="false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute",a={b:/\$[a-zA-Z0-9\-]+/},i={cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},n={cN:"string",v:[{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={cN:"meta",b:"%\\w+"},s={cN:"comment",b:"\\(:",e:":\\)",r:10,c:[{cN:"doctag",b:"@\\w+"}]},l={b:"{",e:"}"},c=[a,n,i,s,o,l];return l.c=c,{aliases:["xpath","xq"],cI:!1,l:/[a-zA-Z\$][a-zA-Z0-9_:\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:r},c:c}})),e.registerLanguage("zephir",(function(e){var t={cN:"string",c:[e.BE],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},r={v:[e.BNM,e.CNM]};return{aliases:["zep"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely",c:[e.CLCM,e.HCM,e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",e.CBCM,t,r]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},t,r]}})),e}));!function(){function t(t,r){var a,o={};if("tld?"!==t){if(r=r||window.location.toString(),!t)return r;if(t=t.toString(),a=r.match(/^mailto:([^\/].+)/))o.protocol="mailto",o.email=a[1];else{if((a=r.match(/(.*?)\/#\!(.*)/))&&(r=a[1]+a[2]),(a=r.match(/(.*?)#(.*)/))&&(o.hash=a[2],r=a[1]),o.hash&&t.match(/^#/))return h(t,o.hash);if((a=r.match(/(.*?)\?(.*)/))&&(o.query=a[2],r=a[1]),o.query&&t.match(/^\?/))return h(t,o.query);if((a=r.match(/(.*?)\:?\/\/(.*)/))&&(o.protocol=a[1].toLowerCase(),r=a[2]),(a=r.match(/(.*?)(\/.*)/))&&(o.path=a[2],r=a[1]),o.path=(o.path||"").replace(/^([^\/])/,"/$1"),t.match(/^[\-0-9]+$/)&&(t=t.replace(/^([^\/])/,"/$1")),t.match(/^\//))return e(t,o.path.substring(1));if((a=(a=e("/-1",o.path.substring(1)))&&a.match(/(.*?)\.([^.]+)$/))&&(o.file=a[0],o.filename=a[1],o.fileext=a[2]),(a=r.match(/(.*)\:([0-9]+)$/))&&(o.port=a[2],r=a[1]),(a=r.match(/(.*?)@(.*)/))&&(o.auth=a[1],r=a[2]),o.auth&&(a=o.auth.match(/(.*)\:(.*)/),o.user=a?a[1]:o.auth,o.pass=a?a[2]:void 0),o.hostname=r.toLowerCase(),"."===t.charAt(0))return e(t,o.hostname);o.port=o.port||("https"===o.protocol?"443":"80"),o.protocol=o.protocol||("443"===o.port?"https":"http")}return t in o?o[t]:"{}"===t?o:void 0}}function e(t,r){var a=t.charAt(0),o=r.split(a);return a===t?o:o[(t=parseInt(t.substring(1),10))<0?o.length+t:t-1]}function h(t,r){for(var a,o=t.charAt(0),e=r.split("&"),h=[],n={},c=[],i=t.substring(1),p=0,u=e.length;pthis.options.totalPages)throw new Error("Start page option is incorrect");if(this.options.totalPages=parseInt(this.options.totalPages),isNaN(this.options.totalPages))throw new Error("Total pages option is not correct!");if(this.options.visiblePages=parseInt(this.options.visiblePages),isNaN(this.options.visiblePages))throw new Error("Visible pages option is not correct!");if(this.options.totalPages"),this.$listContainer.addClass(this.options.paginationClass),"UL"!==g&&this.$element.append(this.$listContainer),this.render(this.getPages(this.options.startPage)),this.setupEvents(),this.options.initiateStartPageClick&&this.$element.trigger("page",this.options.startPage),this};f.prototype={constructor:f,destroy:function(){return this.$element.empty(),this.$element.removeData("twbs-pagination"),this.$element.off("page"),this},show:function(a){if(1>a||a>this.options.totalPages)throw new Error("Page is incorrect.");return this.render(this.getPages(a)),this.setupEvents(),this.$element.trigger("page",a),this},buildListItems:function(a){var b=[];if(this.options.first&&b.push(this.buildItem("first",1)),this.options.prev){var c=a.currentPage>1?a.currentPage-1:this.options.loop?this.options.totalPages:1;b.push(this.buildItem("prev",c))}for(var d=0;d"),e=a(""),f=null;switch(b){case"page":f=c,d.addClass(this.options.pageClass);break;case"first":f=this.options.first,d.addClass(this.options.firstClass);break;case"prev":f=this.options.prev,d.addClass(this.options.prevClass);break;case"next":f=this.options.next,d.addClass(this.options.nextClass);break;case"last":f=this.options.last,d.addClass(this.options.lastClass)}return d.data("page",c),d.data("page-type",b),d.append(e.attr("href",this.makeHref(c)).html(f)),d},getPages:function(a){var b=[],c=Math.floor(this.options.visiblePages/2),d=a-c+1-this.options.visiblePages%2,e=a+c;0>=d&&(d=1,e=this.options.visiblePages),e>this.options.totalPages&&(d=this.options.totalPages-this.options.visiblePages+1,e=this.options.totalPages);for(var f=d;e>=f;)b.push(f),f++;return{currentPage:a,numeric:b}},render:function(b){var c=this;this.$listContainer.children().remove(),this.$listContainer.append(this.buildListItems(b)),this.$listContainer.children().each((function(){var d=a(this),e=d.data("page-type");switch(e){case"page":d.data("page")===b.currentPage&&d.addClass(c.options.activeClass);break;case"first":d.toggleClass(c.options.disabledClass,1===b.currentPage);break;case"last":d.toggleClass(c.options.disabledClass,b.currentPage===c.options.totalPages);break;case"prev":d.toggleClass(c.options.disabledClass,!c.options.loop&&1===b.currentPage);break;case"next":d.toggleClass(c.options.disabledClass,!c.options.loop&&b.currentPage===c.options.totalPages)}}))},setupEvents:function(){var b=this;this.$listContainer.find("li").each((function(){var c=a(this);return c.off(),c.hasClass(b.options.disabledClass)||c.hasClass(b.options.activeClass)?void c.on("click",!1):void c.click((function(a){!b.options.href&&a.preventDefault(),b.show(parseInt(c.data("page")))}))}))},makeHref:function(a){return this.options.href?this.options.href.replace(this.options.hrefVariable,a):"#"}},a.fn.twbsPagination=function(b){var c,e=Array.prototype.slice.call(arguments,1),g=a(this),h=g.data("twbs-pagination"),i="object"==typeof b&&b;return h||g.data("twbs-pagination",h=new f(this,i)),"string"==typeof b&&(c=h[b].apply(h,e)),c===d?g:c},a.fn.twbsPagination.defaults={totalPages:0,startPage:1,visiblePages:5,initiateStartPageClick:!0,href:!1,hrefVariable:"{{number}}",first:"First",prev:"Previous",next:"Next",last:"Last",loop:!1,onPageClick:null,paginationClass:"pagination",nextClass:"next",prevClass:"prev",lastClass:"last",firstClass:"first",pageClass:"page",activeClass:"active",disabledClass:"disabled"},a.fn.twbsPagination.Constructor=f,a.fn.twbsPagination.noConflict=function(){return a.fn.twbsPagination=e,this}}(window.jQuery,window,document);!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],t):e.Mark=t(e.jQuery)}(this,(function(e){"use strict";e=e&&e.hasOwnProperty("default")?e.default:e;var t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},r=function(){function e(e,t){for(var n=0;n1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;n(this,e),this.ctx=t,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return r(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach((function(t){var n=e.filter((function(e){return e.contains(t)})).length>0;-1!==e.indexOf(t)||n||e.push(t)})),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,(function(){return!0}),(function(e){r++,n.waitForIframes(e.querySelector("html"),(function(){--r||t()}))}),(function(e){e||t()}))}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach((function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,(function(e){n(t)&&(c++,r(e)),u()}),u)}))}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach((function(e,t){e.val===n&&(i=t,o=e.handled)})),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach((function(e){e.handled||i.getIframeContents(e.val,(function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)}))}))}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,(function(e){return a.checkIframeFilter(l,h,e,c)}),(function(t){a.createInstanceOnIframe(t).forEachNode(e,(function(e){return u.push(e)}),r)})),u.push(l);u.forEach((function(e){n(e)})),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach((function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,(function(){--a<=0&&i()}))};r.iframes?r.waitForIframes(o,s):s()}))}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every((function(t){return!r.call(e,t)||(i=!0,!1)})),i}return!1}}]),e}(),a=function(){function e(t){n(this,e),this.ctx=t,this.ie=!1;var r=window.navigator.userAgent;(r.indexOf("MSIE")>-1||r.indexOf("Trident")>-1)&&(this.ie=!0)}return r(e,[{key:"log",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":t(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+e)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,(function(e){return"\\"===e.charAt(0)?"?":""}))).replace(/(?:\\)*\*/g,(function(e){return"\\"===e.charAt(0)?"*":""}))}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,(function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"}))}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach((function(i){n.every((function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0}))})),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach((function(e){i+="|"+t.escapeStr(e)})),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach((function(e){t.opt.separateWordSearch?e.split(" ").forEach((function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)})):e.trim()&&-1===n.indexOf(e)&&n.push(e)})),{keywords:n.sort((function(e,t){return t.length-e.length})),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort((function(e,t){return e.start-t.start})).forEach((function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)})),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,(function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})}),(function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT}),(function(){e({value:n,nodes:r})}))}},{key:"matchesExclude",value:function(e){return o.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every((function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach((function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)})),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0}))}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes((function(t){t.nodes.forEach((function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,(function(A){return A.id})),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}})); \ No newline at end of file diff --git a/docs/styles/lunr.js b/docs/styles/lunr.js deleted file mode 100644 index 35dae2fbf2..0000000000 --- a/docs/styles/lunr.js +++ /dev/null @@ -1,2924 +0,0 @@ -/** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.1.2 - * Copyright (C) 2017 Oliver Nightingale - * @license MIT - */ - -;(function(){ - -/** - * A convenience function for configuring and constructing - * a new lunr Index. - * - * A lunr.Builder instance is created and the pipeline setup - * with a trimmer, stop word filter and stemmer. - * - * This builder object is yielded to the configuration function - * that is passed as a parameter, allowing the list of fields - * and other builder parameters to be customised. - * - * All documents _must_ be added within the passed config function. - * - * @example - * var idx = lunr(function () { - * this.field('title') - * this.field('body') - * this.ref('id') - * - * documents.forEach(function (doc) { - * this.add(doc) - * }, this) - * }) - * - * @see {@link lunr.Builder} - * @see {@link lunr.Pipeline} - * @see {@link lunr.trimmer} - * @see {@link lunr.stopWordFilter} - * @see {@link lunr.stemmer} - * @namespace {function} lunr - */ -var lunr = function (config) { - var builder = new lunr.Builder - - builder.pipeline.add( - lunr.trimmer, - lunr.stopWordFilter, - lunr.stemmer - ) - - builder.searchPipeline.add( - lunr.stemmer - ) - - config.call(builder, builder) - return builder.build() -} - -lunr.version = "2.1.2" -/*! - * lunr.utils - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A namespace containing utils for the rest of the lunr library - */ -lunr.utils = {} - -/** - * Print a warning message to the console. - * - * @param {String} message The message to be printed. - * @memberOf Utils - */ -lunr.utils.warn = (function (global) { - /* eslint-disable no-console */ - return function (message) { - if (global.console && console.warn) { - console.warn(message) - } - } - /* eslint-enable no-console */ -})(this) - -/** - * Convert an object to a string. - * - * In the case of `null` and `undefined` the function returns - * the empty string, in all other cases the result of calling - * `toString` on the passed object is returned. - * - * @param {Any} obj The object to convert to a string. - * @return {String} string representation of the passed object. - * @memberOf Utils - */ -lunr.utils.asString = function (obj) { - if (obj === void 0 || obj === null) { - return "" - } else { - return obj.toString() - } -} -lunr.FieldRef = function (docRef, fieldName) { - this.docRef = docRef - this.fieldName = fieldName - this._stringValue = fieldName + lunr.FieldRef.joiner + docRef -} - -lunr.FieldRef.joiner = "/" - -lunr.FieldRef.fromString = function (s) { - var n = s.indexOf(lunr.FieldRef.joiner) - - if (n === -1) { - throw "malformed field ref string" - } - - var fieldRef = s.slice(0, n), - docRef = s.slice(n + 1) - - return new lunr.FieldRef (docRef, fieldRef) -} - -lunr.FieldRef.prototype.toString = function () { - return this._stringValue -} -/** - * A function to calculate the inverse document frequency for - * a posting. This is shared between the builder and the index - * - * @private - * @param {object} posting - The posting for a given term - * @param {number} documentCount - The total number of documents. - */ -lunr.idf = function (posting, documentCount) { - var documentsWithTerm = 0 - - for (var fieldName in posting) { - if (fieldName == '_index') continue // Ignore the term index, its not a field - documentsWithTerm += Object.keys(posting[fieldName]).length - } - - var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5) - - return Math.log(1 + Math.abs(x)) -} - -/** - * A token wraps a string representation of a token - * as it is passed through the text processing pipeline. - * - * @constructor - * @param {string} [str=''] - The string token being wrapped. - * @param {object} [metadata={}] - Metadata associated with this token. - */ -lunr.Token = function (str, metadata) { - this.str = str || "" - this.metadata = metadata || {} -} - -/** - * Returns the token string that is being wrapped by this object. - * - * @returns {string} - */ -lunr.Token.prototype.toString = function () { - return this.str -} - -/** - * A token update function is used when updating or optionally - * when cloning a token. - * - * @callback lunr.Token~updateFunction - * @param {string} str - The string representation of the token. - * @param {Object} metadata - All metadata associated with this token. - */ - -/** - * Applies the given function to the wrapped string token. - * - * @example - * token.update(function (str, metadata) { - * return str.toUpperCase() - * }) - * - * @param {lunr.Token~updateFunction} fn - A function to apply to the token string. - * @returns {lunr.Token} - */ -lunr.Token.prototype.update = function (fn) { - this.str = fn(this.str, this.metadata) - return this -} - -/** - * Creates a clone of this token. Optionally a function can be - * applied to the cloned token. - * - * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token. - * @returns {lunr.Token} - */ -lunr.Token.prototype.clone = function (fn) { - fn = fn || function (s) { return s } - return new lunr.Token (fn(this.str, this.metadata), this.metadata) -} -/*! - * lunr.tokenizer - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A function for splitting a string into tokens ready to be inserted into - * the search index. Uses `lunr.tokenizer.separator` to split strings, change - * the value of this property to change how strings are split into tokens. - * - * This tokenizer will convert its parameter to a string by calling `toString` and - * then will split this string on the character in `lunr.tokenizer.separator`. - * Arrays will have their elements converted to strings and wrapped in a lunr.Token. - * - * @static - * @param {?(string|object|object[])} obj - The object to convert into tokens - * @returns {lunr.Token[]} - */ -lunr.tokenizer = function (obj) { - if (obj == null || obj == undefined) { - return [] - } - - if (Array.isArray(obj)) { - return obj.map(function (t) { - return new lunr.Token(lunr.utils.asString(t).toLowerCase()) - }) - } - - var str = obj.toString().trim().toLowerCase(), - len = str.length, - tokens = [] - - for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) { - var char = str.charAt(sliceEnd), - sliceLength = sliceEnd - sliceStart - - if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) { - - if (sliceLength > 0) { - tokens.push( - new lunr.Token (str.slice(sliceStart, sliceEnd), { - position: [sliceStart, sliceLength], - index: tokens.length - }) - ) - } - - sliceStart = sliceEnd + 1 - } - - } - - return tokens -} - -/** - * The separator used to split a string into tokens. Override this property to change the behaviour of - * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens. - * - * @static - * @see lunr.tokenizer - */ -lunr.tokenizer.separator = /[\s\-]+/ -/*! - * lunr.Pipeline - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.Pipelines maintain an ordered list of functions to be applied to all - * tokens in documents entering the search index and queries being ran against - * the index. - * - * An instance of lunr.Index created with the lunr shortcut will contain a - * pipeline with a stop word filter and an English language stemmer. Extra - * functions can be added before or after either of these functions or these - * default functions can be removed. - * - * When run the pipeline will call each function in turn, passing a token, the - * index of that token in the original list of all tokens and finally a list of - * all the original tokens. - * - * The output of functions in the pipeline will be passed to the next function - * in the pipeline. To exclude a token from entering the index the function - * should return undefined, the rest of the pipeline will not be called with - * this token. - * - * For serialisation of pipelines to work, all functions used in an instance of - * a pipeline should be registered with lunr.Pipeline. Registered functions can - * then be loaded. If trying to load a serialised pipeline that uses functions - * that are not registered an error will be thrown. - * - * If not planning on serialising the pipeline then registering pipeline functions - * is not necessary. - * - * @constructor - */ -lunr.Pipeline = function () { - this._stack = [] -} - -lunr.Pipeline.registeredFunctions = Object.create(null) - -/** - * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token - * string as well as all known metadata. A pipeline function can mutate the token string - * or mutate (or add) metadata for a given token. - * - * A pipeline function can indicate that the passed token should be discarded by returning - * null. This token will not be passed to any downstream pipeline functions and will not be - * added to the index. - * - * Multiple tokens can be returned by returning an array of tokens. Each token will be passed - * to any downstream pipeline functions and all will returned tokens will be added to the index. - * - * Any number of pipeline functions may be chained together using a lunr.Pipeline. - * - * @interface lunr.PipelineFunction - * @param {lunr.Token} token - A token from the document being processed. - * @param {number} i - The index of this token in the complete list of tokens for this document/field. - * @param {lunr.Token[]} tokens - All tokens for this document/field. - * @returns {(?lunr.Token|lunr.Token[])} - */ - -/** - * Register a function with the pipeline. - * - * Functions that are used in the pipeline should be registered if the pipeline - * needs to be serialised, or a serialised pipeline needs to be loaded. - * - * Registering a function does not add it to a pipeline, functions must still be - * added to instances of the pipeline for them to be used when running a pipeline. - * - * @param {lunr.PipelineFunction} fn - The function to check for. - * @param {String} label - The label to register this function with - */ -lunr.Pipeline.registerFunction = function (fn, label) { - if (label in this.registeredFunctions) { - lunr.utils.warn('Overwriting existing registered function: ' + label) - } - - fn.label = label - lunr.Pipeline.registeredFunctions[fn.label] = fn -} - -/** - * Warns if the function is not registered as a Pipeline function. - * - * @param {lunr.PipelineFunction} fn - The function to check for. - * @private - */ -lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) { - var isRegistered = fn.label && (fn.label in this.registeredFunctions) - - if (!isRegistered) { - lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn) - } -} - -/** - * Loads a previously serialised pipeline. - * - * All functions to be loaded must already be registered with lunr.Pipeline. - * If any function from the serialised data has not been registered then an - * error will be thrown. - * - * @param {Object} serialised - The serialised pipeline to load. - * @returns {lunr.Pipeline} - */ -lunr.Pipeline.load = function (serialised) { - var pipeline = new lunr.Pipeline - - serialised.forEach(function (fnName) { - var fn = lunr.Pipeline.registeredFunctions[fnName] - - if (fn) { - pipeline.add(fn) - } else { - throw new Error('Cannot load unregistered function: ' + fnName) - } - }) - - return pipeline -} - -/** - * Adds new functions to the end of the pipeline. - * - * Logs a warning if the function has not been registered. - * - * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline. - */ -lunr.Pipeline.prototype.add = function () { - var fns = Array.prototype.slice.call(arguments) - - fns.forEach(function (fn) { - lunr.Pipeline.warnIfFunctionNotRegistered(fn) - this._stack.push(fn) - }, this) -} - -/** - * Adds a single function after a function that already exists in the - * pipeline. - * - * Logs a warning if the function has not been registered. - * - * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline. - * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline. - */ -lunr.Pipeline.prototype.after = function (existingFn, newFn) { - lunr.Pipeline.warnIfFunctionNotRegistered(newFn) - - var pos = this._stack.indexOf(existingFn) - if (pos == -1) { - throw new Error('Cannot find existingFn') - } - - pos = pos + 1 - this._stack.splice(pos, 0, newFn) -} - -/** - * Adds a single function before a function that already exists in the - * pipeline. - * - * Logs a warning if the function has not been registered. - * - * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline. - * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline. - */ -lunr.Pipeline.prototype.before = function (existingFn, newFn) { - lunr.Pipeline.warnIfFunctionNotRegistered(newFn) - - var pos = this._stack.indexOf(existingFn) - if (pos == -1) { - throw new Error('Cannot find existingFn') - } - - this._stack.splice(pos, 0, newFn) -} - -/** - * Removes a function from the pipeline. - * - * @param {lunr.PipelineFunction} fn The function to remove from the pipeline. - */ -lunr.Pipeline.prototype.remove = function (fn) { - var pos = this._stack.indexOf(fn) - if (pos == -1) { - return - } - - this._stack.splice(pos, 1) -} - -/** - * Runs the current list of functions that make up the pipeline against the - * passed tokens. - * - * @param {Array} tokens The tokens to run through the pipeline. - * @returns {Array} - */ -lunr.Pipeline.prototype.run = function (tokens) { - var stackLength = this._stack.length - - for (var i = 0; i < stackLength; i++) { - var fn = this._stack[i] - - tokens = tokens.reduce(function (memo, token, j) { - var result = fn(token, j, tokens) - - if (result === void 0 || result === '') return memo - - return memo.concat(result) - }, []) - } - - return tokens -} - -/** - * Convenience method for passing a string through a pipeline and getting - * strings out. This method takes care of wrapping the passed string in a - * token and mapping the resulting tokens back to strings. - * - * @param {string} str - The string to pass through the pipeline. - * @returns {string[]} - */ -lunr.Pipeline.prototype.runString = function (str) { - var token = new lunr.Token (str) - - return this.run([token]).map(function (t) { - return t.toString() - }) -} - -/** - * Resets the pipeline by removing any existing processors. - * - */ -lunr.Pipeline.prototype.reset = function () { - this._stack = [] -} - -/** - * Returns a representation of the pipeline ready for serialisation. - * - * Logs a warning if the function has not been registered. - * - * @returns {Array} - */ -lunr.Pipeline.prototype.toJSON = function () { - return this._stack.map(function (fn) { - lunr.Pipeline.warnIfFunctionNotRegistered(fn) - - return fn.label - }) -} -/*! - * lunr.Vector - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A vector is used to construct the vector space of documents and queries. These - * vectors support operations to determine the similarity between two documents or - * a document and a query. - * - * Normally no parameters are required for initializing a vector, but in the case of - * loading a previously dumped vector the raw elements can be provided to the constructor. - * - * For performance reasons vectors are implemented with a flat array, where an elements - * index is immediately followed by its value. E.g. [index, value, index, value]. This - * allows the underlying array to be as sparse as possible and still offer decent - * performance when being used for vector calculations. - * - * @constructor - * @param {Number[]} [elements] - The flat list of element index and element value pairs. - */ -lunr.Vector = function (elements) { - this._magnitude = 0 - this.elements = elements || [] -} - - -/** - * Calculates the position within the vector to insert a given index. - * - * This is used internally by insert and upsert. If there are duplicate indexes then - * the position is returned as if the value for that index were to be updated, but it - * is the callers responsibility to check whether there is a duplicate at that index - * - * @param {Number} insertIdx - The index at which the element should be inserted. - * @returns {Number} - */ -lunr.Vector.prototype.positionForIndex = function (index) { - // For an empty vector the tuple can be inserted at the beginning - if (this.elements.length == 0) { - return 0 - } - - var start = 0, - end = this.elements.length / 2, - sliceLength = end - start, - pivotPoint = Math.floor(sliceLength / 2), - pivotIndex = this.elements[pivotPoint * 2] - - while (sliceLength > 1) { - if (pivotIndex < index) { - start = pivotPoint - } - - if (pivotIndex > index) { - end = pivotPoint - } - - if (pivotIndex == index) { - break - } - - sliceLength = end - start - pivotPoint = start + Math.floor(sliceLength / 2) - pivotIndex = this.elements[pivotPoint * 2] - } - - if (pivotIndex == index) { - return pivotPoint * 2 - } - - if (pivotIndex > index) { - return pivotPoint * 2 - } - - if (pivotIndex < index) { - return (pivotPoint + 1) * 2 - } -} - -/** - * Inserts an element at an index within the vector. - * - * Does not allow duplicates, will throw an error if there is already an entry - * for this index. - * - * @param {Number} insertIdx - The index at which the element should be inserted. - * @param {Number} val - The value to be inserted into the vector. - */ -lunr.Vector.prototype.insert = function (insertIdx, val) { - this.upsert(insertIdx, val, function () { - throw "duplicate index" - }) -} - -/** - * Inserts or updates an existing index within the vector. - * - * @param {Number} insertIdx - The index at which the element should be inserted. - * @param {Number} val - The value to be inserted into the vector. - * @param {function} fn - A function that is called for updates, the existing value and the - * requested value are passed as arguments - */ -lunr.Vector.prototype.upsert = function (insertIdx, val, fn) { - this._magnitude = 0 - var position = this.positionForIndex(insertIdx) - - if (this.elements[position] == insertIdx) { - this.elements[position + 1] = fn(this.elements[position + 1], val) - } else { - this.elements.splice(position, 0, insertIdx, val) - } -} - -/** - * Calculates the magnitude of this vector. - * - * @returns {Number} - */ -lunr.Vector.prototype.magnitude = function () { - if (this._magnitude) return this._magnitude - - var sumOfSquares = 0, - elementsLength = this.elements.length - - for (var i = 1; i < elementsLength; i += 2) { - var val = this.elements[i] - sumOfSquares += val * val - } - - return this._magnitude = Math.sqrt(sumOfSquares) -} - -/** - * Calculates the dot product of this vector and another vector. - * - * @param {lunr.Vector} otherVector - The vector to compute the dot product with. - * @returns {Number} - */ -lunr.Vector.prototype.dot = function (otherVector) { - var dotProduct = 0, - a = this.elements, b = otherVector.elements, - aLen = a.length, bLen = b.length, - aVal = 0, bVal = 0, - i = 0, j = 0 - - while (i < aLen && j < bLen) { - aVal = a[i], bVal = b[j] - if (aVal < bVal) { - i += 2 - } else if (aVal > bVal) { - j += 2 - } else if (aVal == bVal) { - dotProduct += a[i + 1] * b[j + 1] - i += 2 - j += 2 - } - } - - return dotProduct -} - -/** - * Calculates the cosine similarity between this vector and another - * vector. - * - * @param {lunr.Vector} otherVector - The other vector to calculate the - * similarity with. - * @returns {Number} - */ -lunr.Vector.prototype.similarity = function (otherVector) { - return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude()) -} - -/** - * Converts the vector to an array of the elements within the vector. - * - * @returns {Number[]} - */ -lunr.Vector.prototype.toArray = function () { - var output = new Array (this.elements.length / 2) - - for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) { - output[j] = this.elements[i] - } - - return output -} - -/** - * A JSON serializable representation of the vector. - * - * @returns {Number[]} - */ -lunr.Vector.prototype.toJSON = function () { - return this.elements -} -/* eslint-disable */ -/*! - * lunr.stemmer - * Copyright (C) 2017 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - */ - -/** - * lunr.stemmer is an english language stemmer, this is a JavaScript - * implementation of the PorterStemmer taken from http://tartarus.org/~martin - * - * @static - * @implements {lunr.PipelineFunction} - * @param {lunr.Token} token - The string to stem - * @returns {lunr.Token} - * @see {@link lunr.Pipeline} - */ -lunr.stemmer = (function(){ - var step2list = { - "ational" : "ate", - "tional" : "tion", - "enci" : "ence", - "anci" : "ance", - "izer" : "ize", - "bli" : "ble", - "alli" : "al", - "entli" : "ent", - "eli" : "e", - "ousli" : "ous", - "ization" : "ize", - "ation" : "ate", - "ator" : "ate", - "alism" : "al", - "iveness" : "ive", - "fulness" : "ful", - "ousness" : "ous", - "aliti" : "al", - "iviti" : "ive", - "biliti" : "ble", - "logi" : "log" - }, - - step3list = { - "icate" : "ic", - "ative" : "", - "alize" : "al", - "iciti" : "ic", - "ical" : "ic", - "ful" : "", - "ness" : "" - }, - - c = "[^aeiou]", // consonant - v = "[aeiouy]", // vowel - C = c + "[^aeiouy]*", // consonant sequence - V = v + "[aeiou]*", // vowel sequence - - mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0 - meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1 - mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1 - s_v = "^(" + C + ")?" + v; // vowel in stem - - var re_mgr0 = new RegExp(mgr0); - var re_mgr1 = new RegExp(mgr1); - var re_meq1 = new RegExp(meq1); - var re_s_v = new RegExp(s_v); - - var re_1a = /^(.+?)(ss|i)es$/; - var re2_1a = /^(.+?)([^s])s$/; - var re_1b = /^(.+?)eed$/; - var re2_1b = /^(.+?)(ed|ing)$/; - var re_1b_2 = /.$/; - var re2_1b_2 = /(at|bl|iz)$/; - var re3_1b_2 = new RegExp("([^aeiouylsz])\\1$"); - var re4_1b_2 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - - var re_1c = /^(.+?[^aeiou])y$/; - var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; - - var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; - - var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; - var re2_4 = /^(.+?)(s|t)(ion)$/; - - var re_5 = /^(.+?)e$/; - var re_5_1 = /ll$/; - var re3_5 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - - var porterStemmer = function porterStemmer(w) { - var stem, - suffix, - firstch, - re, - re2, - re3, - re4; - - if (w.length < 3) { return w; } - - firstch = w.substr(0,1); - if (firstch == "y") { - w = firstch.toUpperCase() + w.substr(1); - } - - // Step 1a - re = re_1a - re2 = re2_1a; - - if (re.test(w)) { w = w.replace(re,"$1$2"); } - else if (re2.test(w)) { w = w.replace(re2,"$1$2"); } - - // Step 1b - re = re_1b; - re2 = re2_1b; - if (re.test(w)) { - var fp = re.exec(w); - re = re_mgr0; - if (re.test(fp[1])) { - re = re_1b_2; - w = w.replace(re,""); - } - } else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1]; - re2 = re_s_v; - if (re2.test(stem)) { - w = stem; - re2 = re2_1b_2; - re3 = re3_1b_2; - re4 = re4_1b_2; - if (re2.test(w)) { w = w + "e"; } - else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,""); } - else if (re4.test(w)) { w = w + "e"; } - } - } - - // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say) - re = re_1c; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - w = stem + "i"; - } - - // Step 2 - re = re_2; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = re_mgr0; - if (re.test(stem)) { - w = stem + step2list[suffix]; - } - } - - // Step 3 - re = re_3; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = re_mgr0; - if (re.test(stem)) { - w = stem + step3list[suffix]; - } - } - - // Step 4 - re = re_4; - re2 = re2_4; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = re_mgr1; - if (re.test(stem)) { - w = stem; - } - } else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1] + fp[2]; - re2 = re_mgr1; - if (re2.test(stem)) { - w = stem; - } - } - - // Step 5 - re = re_5; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = re_mgr1; - re2 = re_meq1; - re3 = re3_5; - if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) { - w = stem; - } - } - - re = re_5_1; - re2 = re_mgr1; - if (re.test(w) && re2.test(w)) { - re = re_1b_2; - w = w.replace(re,""); - } - - // and turn initial Y back to y - - if (firstch == "y") { - w = firstch.toLowerCase() + w.substr(1); - } - - return w; - }; - - return function (token) { - return token.update(porterStemmer); - } -})(); - -lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer') -/*! - * lunr.stopWordFilter - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.generateStopWordFilter builds a stopWordFilter function from the provided - * list of stop words. - * - * The built in lunr.stopWordFilter is built using this generator and can be used - * to generate custom stopWordFilters for applications or non English languages. - * - * @param {Array} token The token to pass through the filter - * @returns {lunr.PipelineFunction} - * @see lunr.Pipeline - * @see lunr.stopWordFilter - */ -lunr.generateStopWordFilter = function (stopWords) { - var words = stopWords.reduce(function (memo, stopWord) { - memo[stopWord] = stopWord - return memo - }, {}) - - return function (token) { - if (token && words[token.toString()] !== token.toString()) return token - } -} - -/** - * lunr.stopWordFilter is an English language stop word list filter, any words - * contained in the list will not be passed through the filter. - * - * This is intended to be used in the Pipeline. If the token does not pass the - * filter then undefined will be returned. - * - * @implements {lunr.PipelineFunction} - * @params {lunr.Token} token - A token to check for being a stop word. - * @returns {lunr.Token} - * @see {@link lunr.Pipeline} - */ -lunr.stopWordFilter = lunr.generateStopWordFilter([ - 'a', - 'able', - 'about', - 'across', - 'after', - 'all', - 'almost', - 'also', - 'am', - 'among', - 'an', - 'and', - 'any', - 'are', - 'as', - 'at', - 'be', - 'because', - 'been', - 'but', - 'by', - 'can', - 'cannot', - 'could', - 'dear', - 'did', - 'do', - 'does', - 'either', - 'else', - 'ever', - 'every', - 'for', - 'from', - 'get', - 'got', - 'had', - 'has', - 'have', - 'he', - 'her', - 'hers', - 'him', - 'his', - 'how', - 'however', - 'i', - 'if', - 'in', - 'into', - 'is', - 'it', - 'its', - 'just', - 'least', - 'let', - 'like', - 'likely', - 'may', - 'me', - 'might', - 'most', - 'must', - 'my', - 'neither', - 'no', - 'nor', - 'not', - 'of', - 'off', - 'often', - 'on', - 'only', - 'or', - 'other', - 'our', - 'own', - 'rather', - 'said', - 'say', - 'says', - 'she', - 'should', - 'since', - 'so', - 'some', - 'than', - 'that', - 'the', - 'their', - 'them', - 'then', - 'there', - 'these', - 'they', - 'this', - 'tis', - 'to', - 'too', - 'twas', - 'us', - 'wants', - 'was', - 'we', - 'were', - 'what', - 'when', - 'where', - 'which', - 'while', - 'who', - 'whom', - 'why', - 'will', - 'with', - 'would', - 'yet', - 'you', - 'your' -]) - -lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter') -/*! - * lunr.trimmer - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.trimmer is a pipeline function for trimming non word - * characters from the beginning and end of tokens before they - * enter the index. - * - * This implementation may not work correctly for non latin - * characters and should either be removed or adapted for use - * with languages with non-latin characters. - * - * @static - * @implements {lunr.PipelineFunction} - * @param {lunr.Token} token The token to pass through the filter - * @returns {lunr.Token} - * @see lunr.Pipeline - */ -lunr.trimmer = function (token) { - return token.update(function (s) { - return s.replace(/^\W+/, '').replace(/\W+$/, '') - }) -} - -lunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer') -/*! - * lunr.TokenSet - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A token set is used to store the unique list of all tokens - * within an index. Token sets are also used to represent an - * incoming query to the index, this query token set and index - * token set are then intersected to find which tokens to look - * up in the inverted index. - * - * A token set can hold multiple tokens, as in the case of the - * index token set, or it can hold a single token as in the - * case of a simple query token set. - * - * Additionally token sets are used to perform wildcard matching. - * Leading, contained and trailing wildcards are supported, and - * from this edit distance matching can also be provided. - * - * Token sets are implemented as a minimal finite state automata, - * where both common prefixes and suffixes are shared between tokens. - * This helps to reduce the space used for storing the token set. - * - * @constructor - */ -lunr.TokenSet = function () { - this.final = false - this.edges = {} - this.id = lunr.TokenSet._nextId - lunr.TokenSet._nextId += 1 -} - -/** - * Keeps track of the next, auto increment, identifier to assign - * to a new tokenSet. - * - * TokenSets require a unique identifier to be correctly minimised. - * - * @private - */ -lunr.TokenSet._nextId = 1 - -/** - * Creates a TokenSet instance from the given sorted array of words. - * - * @param {String[]} arr - A sorted array of strings to create the set from. - * @returns {lunr.TokenSet} - * @throws Will throw an error if the input array is not sorted. - */ -lunr.TokenSet.fromArray = function (arr) { - var builder = new lunr.TokenSet.Builder - - for (var i = 0, len = arr.length; i < len; i++) { - builder.insert(arr[i]) - } - - builder.finish() - return builder.root -} - -/** - * Creates a token set from a query clause. - * - * @private - * @param {Object} clause - A single clause from lunr.Query. - * @param {string} clause.term - The query clause term. - * @param {number} [clause.editDistance] - The optional edit distance for the term. - * @returns {lunr.TokenSet} - */ -lunr.TokenSet.fromClause = function (clause) { - if ('editDistance' in clause) { - return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance) - } else { - return lunr.TokenSet.fromString(clause.term) - } -} - -/** - * Creates a token set representing a single string with a specified - * edit distance. - * - * Insertions, deletions, substitutions and transpositions are each - * treated as an edit distance of 1. - * - * Increasing the allowed edit distance will have a dramatic impact - * on the performance of both creating and intersecting these TokenSets. - * It is advised to keep the edit distance less than 3. - * - * @param {string} str - The string to create the token set from. - * @param {number} editDistance - The allowed edit distance to match. - * @returns {lunr.Vector} - */ -lunr.TokenSet.fromFuzzyString = function (str, editDistance) { - var root = new lunr.TokenSet - - var stack = [{ - node: root, - editsRemaining: editDistance, - str: str - }] - - while (stack.length) { - var frame = stack.pop() - - // no edit - if (frame.str.length > 0) { - var char = frame.str.charAt(0), - noEditNode - - if (char in frame.node.edges) { - noEditNode = frame.node.edges[char] - } else { - noEditNode = new lunr.TokenSet - frame.node.edges[char] = noEditNode - } - - if (frame.str.length == 1) { - noEditNode.final = true - } else { - stack.push({ - node: noEditNode, - editsRemaining: frame.editsRemaining, - str: frame.str.slice(1) - }) - } - } - - // deletion - // can only do a deletion if we have enough edits remaining - // and if there are characters left to delete in the string - if (frame.editsRemaining > 0 && frame.str.length > 1) { - var char = frame.str.charAt(1), - deletionNode - - if (char in frame.node.edges) { - deletionNode = frame.node.edges[char] - } else { - deletionNode = new lunr.TokenSet - frame.node.edges[char] = deletionNode - } - - if (frame.str.length <= 2) { - deletionNode.final = true - } else { - stack.push({ - node: deletionNode, - editsRemaining: frame.editsRemaining - 1, - str: frame.str.slice(2) - }) - } - } - - // deletion - // just removing the last character from the str - if (frame.editsRemaining > 0 && frame.str.length == 1) { - frame.node.final = true - } - - // substitution - // can only do a substitution if we have enough edits remaining - // and if there are characters left to substitute - if (frame.editsRemaining > 0 && frame.str.length >= 1) { - if ("*" in frame.node.edges) { - var substitutionNode = frame.node.edges["*"] - } else { - var substitutionNode = new lunr.TokenSet - frame.node.edges["*"] = substitutionNode - } - - if (frame.str.length == 1) { - substitutionNode.final = true - } else { - stack.push({ - node: substitutionNode, - editsRemaining: frame.editsRemaining - 1, - str: frame.str.slice(1) - }) - } - } - - // insertion - // can only do insertion if there are edits remaining - if (frame.editsRemaining > 0) { - if ("*" in frame.node.edges) { - var insertionNode = frame.node.edges["*"] - } else { - var insertionNode = new lunr.TokenSet - frame.node.edges["*"] = insertionNode - } - - if (frame.str.length == 0) { - insertionNode.final = true - } else { - stack.push({ - node: insertionNode, - editsRemaining: frame.editsRemaining - 1, - str: frame.str - }) - } - } - - // transposition - // can only do a transposition if there are edits remaining - // and there are enough characters to transpose - if (frame.editsRemaining > 0 && frame.str.length > 1) { - var charA = frame.str.charAt(0), - charB = frame.str.charAt(1), - transposeNode - - if (charB in frame.node.edges) { - transposeNode = frame.node.edges[charB] - } else { - transposeNode = new lunr.TokenSet - frame.node.edges[charB] = transposeNode - } - - if (frame.str.length == 1) { - transposeNode.final = true - } else { - stack.push({ - node: transposeNode, - editsRemaining: frame.editsRemaining - 1, - str: charA + frame.str.slice(2) - }) - } - } - } - - return root -} - -/** - * Creates a TokenSet from a string. - * - * The string may contain one or more wildcard characters (*) - * that will allow wildcard matching when intersecting with - * another TokenSet. - * - * @param {string} str - The string to create a TokenSet from. - * @returns {lunr.TokenSet} - */ -lunr.TokenSet.fromString = function (str) { - var node = new lunr.TokenSet, - root = node, - wildcardFound = false - - /* - * Iterates through all characters within the passed string - * appending a node for each character. - * - * As soon as a wildcard character is found then a self - * referencing edge is introduced to continually match - * any number of any characters. - */ - for (var i = 0, len = str.length; i < len; i++) { - var char = str[i], - final = (i == len - 1) - - if (char == "*") { - wildcardFound = true - node.edges[char] = node - node.final = final - - } else { - var next = new lunr.TokenSet - next.final = final - - node.edges[char] = next - node = next - - // TODO: is this needed anymore? - if (wildcardFound) { - node.edges["*"] = root - } - } - } - - return root -} - -/** - * Converts this TokenSet into an array of strings - * contained within the TokenSet. - * - * @returns {string[]} - */ -lunr.TokenSet.prototype.toArray = function () { - var words = [] - - var stack = [{ - prefix: "", - node: this - }] - - while (stack.length) { - var frame = stack.pop(), - edges = Object.keys(frame.node.edges), - len = edges.length - - if (frame.node.final) { - words.push(frame.prefix) - } - - for (var i = 0; i < len; i++) { - var edge = edges[i] - - stack.push({ - prefix: frame.prefix.concat(edge), - node: frame.node.edges[edge] - }) - } - } - - return words -} - -/** - * Generates a string representation of a TokenSet. - * - * This is intended to allow TokenSets to be used as keys - * in objects, largely to aid the construction and minimisation - * of a TokenSet. As such it is not designed to be a human - * friendly representation of the TokenSet. - * - * @returns {string} - */ -lunr.TokenSet.prototype.toString = function () { - // NOTE: Using Object.keys here as this.edges is very likely - // to enter 'hash-mode' with many keys being added - // - // avoiding a for-in loop here as it leads to the function - // being de-optimised (at least in V8). From some simple - // benchmarks the performance is comparable, but allowing - // V8 to optimize may mean easy performance wins in the future. - - if (this._str) { - return this._str - } - - var str = this.final ? '1' : '0', - labels = Object.keys(this.edges).sort(), - len = labels.length - - for (var i = 0; i < len; i++) { - var label = labels[i], - node = this.edges[label] - - str = str + label + node.id - } - - return str -} - -/** - * Returns a new TokenSet that is the intersection of - * this TokenSet and the passed TokenSet. - * - * This intersection will take into account any wildcards - * contained within the TokenSet. - * - * @param {lunr.TokenSet} b - An other TokenSet to intersect with. - * @returns {lunr.TokenSet} - */ -lunr.TokenSet.prototype.intersect = function (b) { - var output = new lunr.TokenSet, - frame = undefined - - var stack = [{ - qNode: b, - output: output, - node: this - }] - - while (stack.length) { - frame = stack.pop() - - // NOTE: As with the #toString method, we are using - // Object.keys and a for loop instead of a for-in loop - // as both of these objects enter 'hash' mode, causing - // the function to be de-optimised in V8 - var qEdges = Object.keys(frame.qNode.edges), - qLen = qEdges.length, - nEdges = Object.keys(frame.node.edges), - nLen = nEdges.length - - for (var q = 0; q < qLen; q++) { - var qEdge = qEdges[q] - - for (var n = 0; n < nLen; n++) { - var nEdge = nEdges[n] - - if (nEdge == qEdge || qEdge == '*') { - var node = frame.node.edges[nEdge], - qNode = frame.qNode.edges[qEdge], - final = node.final && qNode.final, - next = undefined - - if (nEdge in frame.output.edges) { - // an edge already exists for this character - // no need to create a new node, just set the finality - // bit unless this node is already final - next = frame.output.edges[nEdge] - next.final = next.final || final - - } else { - // no edge exists yet, must create one - // set the finality bit and insert it - // into the output - next = new lunr.TokenSet - next.final = final - frame.output.edges[nEdge] = next - } - - stack.push({ - qNode: qNode, - output: next, - node: node - }) - } - } - } - } - - return output -} -lunr.TokenSet.Builder = function () { - this.previousWord = "" - this.root = new lunr.TokenSet - this.uncheckedNodes = [] - this.minimizedNodes = {} -} - -lunr.TokenSet.Builder.prototype.insert = function (word) { - var node, - commonPrefix = 0 - - if (word < this.previousWord) { - throw new Error ("Out of order word insertion") - } - - for (var i = 0; i < word.length && i < this.previousWord.length; i++) { - if (word[i] != this.previousWord[i]) break - commonPrefix++ - } - - this.minimize(commonPrefix) - - if (this.uncheckedNodes.length == 0) { - node = this.root - } else { - node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child - } - - for (var i = commonPrefix; i < word.length; i++) { - var nextNode = new lunr.TokenSet, - char = word[i] - - node.edges[char] = nextNode - - this.uncheckedNodes.push({ - parent: node, - char: char, - child: nextNode - }) - - node = nextNode - } - - node.final = true - this.previousWord = word -} - -lunr.TokenSet.Builder.prototype.finish = function () { - this.minimize(0) -} - -lunr.TokenSet.Builder.prototype.minimize = function (downTo) { - for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) { - var node = this.uncheckedNodes[i], - childKey = node.child.toString() - - if (childKey in this.minimizedNodes) { - node.parent.edges[node.char] = this.minimizedNodes[childKey] - } else { - // Cache the key for this node since - // we know it can't change anymore - node.child._str = childKey - - this.minimizedNodes[childKey] = node.child - } - - this.uncheckedNodes.pop() - } -} -/*! - * lunr.Index - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * An index contains the built index of all documents and provides a query interface - * to the index. - * - * Usually instances of lunr.Index will not be created using this constructor, instead - * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be - * used to load previously built and serialized indexes. - * - * @constructor - * @param {Object} attrs - The attributes of the built search index. - * @param {Object} attrs.invertedIndex - An index of term/field to document reference. - * @param {Object} attrs.documentVectors - Document vectors keyed by document reference. - * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens. - * @param {string[]} attrs.fields - The names of indexed document fields. - * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms. - */ -lunr.Index = function (attrs) { - this.invertedIndex = attrs.invertedIndex - this.fieldVectors = attrs.fieldVectors - this.tokenSet = attrs.tokenSet - this.fields = attrs.fields - this.pipeline = attrs.pipeline -} - -/** - * A result contains details of a document matching a search query. - * @typedef {Object} lunr.Index~Result - * @property {string} ref - The reference of the document this result represents. - * @property {number} score - A number between 0 and 1 representing how similar this document is to the query. - * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match. - */ - -/** - * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple - * query language which itself is parsed into an instance of lunr.Query. - * - * For programmatically building queries it is advised to directly use lunr.Query, the query language - * is best used for human entered text rather than program generated text. - * - * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported - * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello' - * or 'world', though those that contain both will rank higher in the results. - * - * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can - * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding - * wildcards will increase the number of documents that will be found but can also have a negative - * impact on query performance, especially with wildcards at the beginning of a term. - * - * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term - * hello in the title field will match this query. Using a field not present in the index will lead - * to an error being thrown. - * - * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term - * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported - * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2. - * Avoid large values for edit distance to improve query performance. - * - * To escape special characters the backslash character '\' can be used, this allows searches to include - * characters that would normally be considered modifiers, e.g. `foo\~2` will search for a term "foo~2" instead - * of attempting to apply a boost of 2 to the search term "foo". - * - * @typedef {string} lunr.Index~QueryString - * @example Simple single term query - * hello - * @example Multiple term query - * hello world - * @example term scoped to a field - * title:hello - * @example term with a boost of 10 - * hello^10 - * @example term with an edit distance of 2 - * hello~2 - */ - -/** - * Performs a search against the index using lunr query syntax. - * - * Results will be returned sorted by their score, the most relevant results - * will be returned first. - * - * For more programmatic querying use lunr.Index#query. - * - * @param {lunr.Index~QueryString} queryString - A string containing a lunr query. - * @throws {lunr.QueryParseError} If the passed query string cannot be parsed. - * @returns {lunr.Index~Result[]} - */ -lunr.Index.prototype.search = function (queryString) { - return this.query(function (query) { - var parser = new lunr.QueryParser(queryString, query) - parser.parse() - }) -} - -/** - * A query builder callback provides a query object to be used to express - * the query to perform on the index. - * - * @callback lunr.Index~queryBuilder - * @param {lunr.Query} query - The query object to build up. - * @this lunr.Query - */ - -/** - * Performs a query against the index using the yielded lunr.Query object. - * - * If performing programmatic queries against the index, this method is preferred - * over lunr.Index#search so as to avoid the additional query parsing overhead. - * - * A query object is yielded to the supplied function which should be used to - * express the query to be run against the index. - * - * Note that although this function takes a callback parameter it is _not_ an - * asynchronous operation, the callback is just yielded a query object to be - * customized. - * - * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query. - * @returns {lunr.Index~Result[]} - */ -lunr.Index.prototype.query = function (fn) { - // for each query clause - // * process terms - // * expand terms from token set - // * find matching documents and metadata - // * get document vectors - // * score documents - - var query = new lunr.Query(this.fields), - matchingFields = Object.create(null), - queryVectors = Object.create(null) - - fn.call(query, query) - - for (var i = 0; i < query.clauses.length; i++) { - /* - * Unless the pipeline has been disabled for this term, which is - * the case for terms with wildcards, we need to pass the clause - * term through the search pipeline. A pipeline returns an array - * of processed terms. Pipeline functions may expand the passed - * term, which means we may end up performing multiple index lookups - * for a single query term. - */ - var clause = query.clauses[i], - terms = null - - if (clause.usePipeline) { - terms = this.pipeline.runString(clause.term) - } else { - terms = [clause.term] - } - - for (var m = 0; m < terms.length; m++) { - var term = terms[m] - - /* - * Each term returned from the pipeline needs to use the same query - * clause object, e.g. the same boost and or edit distance. The - * simplest way to do this is to re-use the clause object but mutate - * its term property. - */ - clause.term = term - - /* - * From the term in the clause we create a token set which will then - * be used to intersect the indexes token set to get a list of terms - * to lookup in the inverted index - */ - var termTokenSet = lunr.TokenSet.fromClause(clause), - expandedTerms = this.tokenSet.intersect(termTokenSet).toArray() - - for (var j = 0; j < expandedTerms.length; j++) { - /* - * For each term get the posting and termIndex, this is required for - * building the query vector. - */ - var expandedTerm = expandedTerms[j], - posting = this.invertedIndex[expandedTerm], - termIndex = posting._index - - for (var k = 0; k < clause.fields.length; k++) { - /* - * For each field that this query term is scoped by (by default - * all fields are in scope) we need to get all the document refs - * that have this term in that field. - * - * The posting is the entry in the invertedIndex for the matching - * term from above. - */ - var field = clause.fields[k], - fieldPosting = posting[field], - matchingDocumentRefs = Object.keys(fieldPosting) - - /* - * To support field level boosts a query vector is created per - * field. This vector is populated using the termIndex found for - * the term and a unit value with the appropriate boost applied. - * - * If the query vector for this field does not exist yet it needs - * to be created. - */ - if (!(field in queryVectors)) { - queryVectors[field] = new lunr.Vector - } - - /* - * Using upsert because there could already be an entry in the vector - * for the term we are working with. In that case we just add the scores - * together. - */ - queryVectors[field].upsert(termIndex, 1 * clause.boost, function (a, b) { return a + b }) - - for (var l = 0; l < matchingDocumentRefs.length; l++) { - /* - * All metadata for this term/field/document triple - * are then extracted and collected into an instance - * of lunr.MatchData ready to be returned in the query - * results - */ - var matchingDocumentRef = matchingDocumentRefs[l], - matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field), - documentMetadata, matchData - - documentMetadata = fieldPosting[matchingDocumentRef] - matchData = new lunr.MatchData (expandedTerm, field, documentMetadata) - - if (matchingFieldRef in matchingFields) { - matchingFields[matchingFieldRef].combine(matchData) - } else { - matchingFields[matchingFieldRef] = matchData - } - - } - } - } - } - } - - var matchingFieldRefs = Object.keys(matchingFields), - results = {} - - for (var i = 0; i < matchingFieldRefs.length; i++) { - /* - * Currently we have document fields that match the query, but we - * need to return documents. The matchData and scores are combined - * from multiple fields belonging to the same document. - * - * Scores are calculated by field, using the query vectors created - * above, and combined into a final document score using addition. - */ - var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]), - docRef = fieldRef.docRef, - fieldVector = this.fieldVectors[fieldRef], - score = queryVectors[fieldRef.fieldName].similarity(fieldVector) - - if (docRef in results) { - results[docRef].score += score - results[docRef].matchData.combine(matchingFields[fieldRef]) - } else { - results[docRef] = { - ref: docRef, - score: score, - matchData: matchingFields[fieldRef] - } - } - } - - /* - * The results object needs to be converted into a list - * of results, sorted by score before being returned. - */ - return Object.keys(results) - .map(function (key) { - return results[key] - }) - .sort(function (a, b) { - return b.score - a.score - }) -} - -/** - * Prepares the index for JSON serialization. - * - * The schema for this JSON blob will be described in a - * separate JSON schema file. - * - * @returns {Object} - */ -lunr.Index.prototype.toJSON = function () { - var invertedIndex = Object.keys(this.invertedIndex) - .sort() - .map(function (term) { - return [term, this.invertedIndex[term]] - }, this) - - var fieldVectors = Object.keys(this.fieldVectors) - .map(function (ref) { - return [ref, this.fieldVectors[ref].toJSON()] - }, this) - - return { - version: lunr.version, - fields: this.fields, - fieldVectors: fieldVectors, - invertedIndex: invertedIndex, - pipeline: this.pipeline.toJSON() - } -} - -/** - * Loads a previously serialized lunr.Index - * - * @param {Object} serializedIndex - A previously serialized lunr.Index - * @returns {lunr.Index} - */ -lunr.Index.load = function (serializedIndex) { - var attrs = {}, - fieldVectors = {}, - serializedVectors = serializedIndex.fieldVectors, - invertedIndex = {}, - serializedInvertedIndex = serializedIndex.invertedIndex, - tokenSetBuilder = new lunr.TokenSet.Builder, - pipeline = lunr.Pipeline.load(serializedIndex.pipeline) - - if (serializedIndex.version != lunr.version) { - lunr.utils.warn("Version mismatch when loading serialised index. Current version of lunr '" + lunr.version + "' does not match serialized index '" + serializedIndex.version + "'") - } - - for (var i = 0; i < serializedVectors.length; i++) { - var tuple = serializedVectors[i], - ref = tuple[0], - elements = tuple[1] - - fieldVectors[ref] = new lunr.Vector(elements) - } - - for (var i = 0; i < serializedInvertedIndex.length; i++) { - var tuple = serializedInvertedIndex[i], - term = tuple[0], - posting = tuple[1] - - tokenSetBuilder.insert(term) - invertedIndex[term] = posting - } - - tokenSetBuilder.finish() - - attrs.fields = serializedIndex.fields - - attrs.fieldVectors = fieldVectors - attrs.invertedIndex = invertedIndex - attrs.tokenSet = tokenSetBuilder.root - attrs.pipeline = pipeline - - return new lunr.Index(attrs) -} -/*! - * lunr.Builder - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.Builder performs indexing on a set of documents and - * returns instances of lunr.Index ready for querying. - * - * All configuration of the index is done via the builder, the - * fields to index, the document reference, the text processing - * pipeline and document scoring parameters are all set on the - * builder before indexing. - * - * @constructor - * @property {string} _ref - Internal reference to the document reference field. - * @property {string[]} _fields - Internal reference to the document fields to index. - * @property {object} invertedIndex - The inverted index maps terms to document fields. - * @property {object} documentTermFrequencies - Keeps track of document term frequencies. - * @property {object} documentLengths - Keeps track of the length of documents added to the index. - * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing. - * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing. - * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index. - * @property {number} documentCount - Keeps track of the total number of documents indexed. - * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75. - * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2. - * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space. - * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index. - */ -lunr.Builder = function () { - this._ref = "id" - this._fields = [] - this.invertedIndex = Object.create(null) - this.fieldTermFrequencies = {} - this.fieldLengths = {} - this.tokenizer = lunr.tokenizer - this.pipeline = new lunr.Pipeline - this.searchPipeline = new lunr.Pipeline - this.documentCount = 0 - this._b = 0.75 - this._k1 = 1.2 - this.termIndex = 0 - this.metadataWhitelist = [] -} - -/** - * Sets the document field used as the document reference. Every document must have this field. - * The type of this field in the document should be a string, if it is not a string it will be - * coerced into a string by calling toString. - * - * The default ref is 'id'. - * - * The ref should _not_ be changed during indexing, it should be set before any documents are - * added to the index. Changing it during indexing can lead to inconsistent results. - * - * @param {string} ref - The name of the reference field in the document. - */ -lunr.Builder.prototype.ref = function (ref) { - this._ref = ref -} - -/** - * Adds a field to the list of document fields that will be indexed. Every document being - * indexed should have this field. Null values for this field in indexed documents will - * not cause errors but will limit the chance of that document being retrieved by searches. - * - * All fields should be added before adding documents to the index. Adding fields after - * a document has been indexed will have no effect on already indexed documents. - * - * @param {string} field - The name of a field to index in all documents. - */ -lunr.Builder.prototype.field = function (field) { - this._fields.push(field) -} - -/** - * A parameter to tune the amount of field length normalisation that is applied when - * calculating relevance scores. A value of 0 will completely disable any normalisation - * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b - * will be clamped to the range 0 - 1. - * - * @param {number} number - The value to set for this tuning parameter. - */ -lunr.Builder.prototype.b = function (number) { - if (number < 0) { - this._b = 0 - } else if (number > 1) { - this._b = 1 - } else { - this._b = number - } -} - -/** - * A parameter that controls the speed at which a rise in term frequency results in term - * frequency saturation. The default value is 1.2. Setting this to a higher value will give - * slower saturation levels, a lower value will result in quicker saturation. - * - * @param {number} number - The value to set for this tuning parameter. - */ -lunr.Builder.prototype.k1 = function (number) { - this._k1 = number -} - -/** - * Adds a document to the index. - * - * Before adding fields to the index the index should have been fully setup, with the document - * ref and all fields to index already having been specified. - * - * The document must have a field name as specified by the ref (by default this is 'id') and - * it should have all fields defined for indexing, though null or undefined values will not - * cause errors. - * - * @param {object} doc - The document to add to the index. - */ -lunr.Builder.prototype.add = function (doc) { - var docRef = doc[this._ref] - - this.documentCount += 1 - - for (var i = 0; i < this._fields.length; i++) { - var fieldName = this._fields[i], - field = doc[fieldName], - tokens = this.tokenizer(field), - terms = this.pipeline.run(tokens), - fieldRef = new lunr.FieldRef (docRef, fieldName), - fieldTerms = Object.create(null) - - this.fieldTermFrequencies[fieldRef] = fieldTerms - this.fieldLengths[fieldRef] = 0 - - // store the length of this field for this document - this.fieldLengths[fieldRef] += terms.length - - // calculate term frequencies for this field - for (var j = 0; j < terms.length; j++) { - var term = terms[j] - - if (fieldTerms[term] == undefined) { - fieldTerms[term] = 0 - } - - fieldTerms[term] += 1 - - // add to inverted index - // create an initial posting if one doesn't exist - if (this.invertedIndex[term] == undefined) { - var posting = Object.create(null) - posting["_index"] = this.termIndex - this.termIndex += 1 - - for (var k = 0; k < this._fields.length; k++) { - posting[this._fields[k]] = Object.create(null) - } - - this.invertedIndex[term] = posting - } - - // add an entry for this term/fieldName/docRef to the invertedIndex - if (this.invertedIndex[term][fieldName][docRef] == undefined) { - this.invertedIndex[term][fieldName][docRef] = Object.create(null) - } - - // store all whitelisted metadata about this token in the - // inverted index - for (var l = 0; l < this.metadataWhitelist.length; l++) { - var metadataKey = this.metadataWhitelist[l], - metadata = term.metadata[metadataKey] - - if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) { - this.invertedIndex[term][fieldName][docRef][metadataKey] = [] - } - - this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata) - } - } - - } -} - -/** - * Calculates the average document length for this index - * - * @private - */ -lunr.Builder.prototype.calculateAverageFieldLengths = function () { - - var fieldRefs = Object.keys(this.fieldLengths), - numberOfFields = fieldRefs.length, - accumulator = {}, - documentsWithField = {} - - for (var i = 0; i < numberOfFields; i++) { - var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]), - field = fieldRef.fieldName - - documentsWithField[field] || (documentsWithField[field] = 0) - documentsWithField[field] += 1 - - accumulator[field] || (accumulator[field] = 0) - accumulator[field] += this.fieldLengths[fieldRef] - } - - for (var i = 0; i < this._fields.length; i++) { - var field = this._fields[i] - accumulator[field] = accumulator[field] / documentsWithField[field] - } - - this.averageFieldLength = accumulator -} - -/** - * Builds a vector space model of every document using lunr.Vector - * - * @private - */ -lunr.Builder.prototype.createFieldVectors = function () { - var fieldVectors = {}, - fieldRefs = Object.keys(this.fieldTermFrequencies), - fieldRefsLength = fieldRefs.length - - for (var i = 0; i < fieldRefsLength; i++) { - var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]), - field = fieldRef.fieldName, - fieldLength = this.fieldLengths[fieldRef], - fieldVector = new lunr.Vector, - termFrequencies = this.fieldTermFrequencies[fieldRef], - terms = Object.keys(termFrequencies), - termsLength = terms.length - - for (var j = 0; j < termsLength; j++) { - var term = terms[j], - tf = termFrequencies[term], - termIndex = this.invertedIndex[term]._index, - idf = lunr.idf(this.invertedIndex[term], this.documentCount), - score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[field])) + tf), - scoreWithPrecision = Math.round(score * 1000) / 1000 - // Converts 1.23456789 to 1.234. - // Reducing the precision so that the vectors take up less - // space when serialised. Doing it now so that they behave - // the same before and after serialisation. Also, this is - // the fastest approach to reducing a number's precision in - // JavaScript. - - fieldVector.insert(termIndex, scoreWithPrecision) - } - - fieldVectors[fieldRef] = fieldVector - } - - this.fieldVectors = fieldVectors -} - -/** - * Creates a token set of all tokens in the index using lunr.TokenSet - * - * @private - */ -lunr.Builder.prototype.createTokenSet = function () { - this.tokenSet = lunr.TokenSet.fromArray( - Object.keys(this.invertedIndex).sort() - ) -} - -/** - * Builds the index, creating an instance of lunr.Index. - * - * This completes the indexing process and should only be called - * once all documents have been added to the index. - * - * @private - * @returns {lunr.Index} - */ -lunr.Builder.prototype.build = function () { - this.calculateAverageFieldLengths() - this.createFieldVectors() - this.createTokenSet() - - return new lunr.Index({ - invertedIndex: this.invertedIndex, - fieldVectors: this.fieldVectors, - tokenSet: this.tokenSet, - fields: this._fields, - pipeline: this.searchPipeline - }) -} - -/** - * Applies a plugin to the index builder. - * - * A plugin is a function that is called with the index builder as its context. - * Plugins can be used to customise or extend the behaviour of the index - * in some way. A plugin is just a function, that encapsulated the custom - * behaviour that should be applied when building the index. - * - * The plugin function will be called with the index builder as its argument, additional - * arguments can also be passed when calling use. The function will be called - * with the index builder as its context. - * - * @param {Function} plugin The plugin to apply. - */ -lunr.Builder.prototype.use = function (fn) { - var args = Array.prototype.slice.call(arguments, 1) - args.unshift(this) - fn.apply(this, args) -} -/** - * Contains and collects metadata about a matching document. - * A single instance of lunr.MatchData is returned as part of every - * lunr.Index~Result. - * - * @constructor - * @param {string} term - The term this match data is associated with - * @param {string} field - The field in which the term was found - * @param {object} metadata - The metadata recorded about this term in this field - * @property {object} metadata - A cloned collection of metadata associated with this document. - * @see {@link lunr.Index~Result} - */ -lunr.MatchData = function (term, field, metadata) { - var clonedMetadata = Object.create(null), - metadataKeys = Object.keys(metadata) - - // Cloning the metadata to prevent the original - // being mutated during match data combination. - // Metadata is kept in an array within the inverted - // index so cloning the data can be done with - // Array#slice - for (var i = 0; i < metadataKeys.length; i++) { - var key = metadataKeys[i] - clonedMetadata[key] = metadata[key].slice() - } - - this.metadata = Object.create(null) - this.metadata[term] = Object.create(null) - this.metadata[term][field] = clonedMetadata -} - -/** - * An instance of lunr.MatchData will be created for every term that matches a - * document. However only one instance is required in a lunr.Index~Result. This - * method combines metadata from another instance of lunr.MatchData with this - * objects metadata. - * - * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one. - * @see {@link lunr.Index~Result} - */ -lunr.MatchData.prototype.combine = function (otherMatchData) { - var terms = Object.keys(otherMatchData.metadata) - - for (var i = 0; i < terms.length; i++) { - var term = terms[i], - fields = Object.keys(otherMatchData.metadata[term]) - - if (this.metadata[term] == undefined) { - this.metadata[term] = Object.create(null) - } - - for (var j = 0; j < fields.length; j++) { - var field = fields[j], - keys = Object.keys(otherMatchData.metadata[term][field]) - - if (this.metadata[term][field] == undefined) { - this.metadata[term][field] = Object.create(null) - } - - for (var k = 0; k < keys.length; k++) { - var key = keys[k] - - if (this.metadata[term][field][key] == undefined) { - this.metadata[term][field][key] = otherMatchData.metadata[term][field][key] - } else { - this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key]) - } - - } - } - } -} -/** - * A lunr.Query provides a programmatic way of defining queries to be performed - * against a {@link lunr.Index}. - * - * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method - * so the query object is pre-initialized with the right index fields. - * - * @constructor - * @property {lunr.Query~Clause[]} clauses - An array of query clauses. - * @property {string[]} allFields - An array of all available fields in a lunr.Index. - */ -lunr.Query = function (allFields) { - this.clauses = [] - this.allFields = allFields -} - -/** - * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause. - * - * This allows wildcards to be added to the beginning and end of a term without having to manually do any string - * concatenation. - * - * The wildcard constants can be bitwise combined to select both leading and trailing wildcards. - * - * @constant - * @default - * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour - * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists - * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists - * @see lunr.Query~Clause - * @see lunr.Query#clause - * @see lunr.Query#term - * @example query term with trailing wildcard - * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING }) - * @example query term with leading and trailing wildcard - * query.term('foo', { - * wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING - * }) - */ -lunr.Query.wildcard = new String ("*") -lunr.Query.wildcard.NONE = 0 -lunr.Query.wildcard.LEADING = 1 -lunr.Query.wildcard.TRAILING = 2 - -/** - * A single clause in a {@link lunr.Query} contains a term and details on how to - * match that term against a {@link lunr.Index}. - * - * @typedef {Object} lunr.Query~Clause - * @property {string[]} fields - The fields in an index this clause should be matched against. - * @property {number} [boost=1] - Any boost that should be applied when matching this clause. - * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be. - * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline. - * @property {number} [wildcard=0] - Whether the term should have wildcards appended or prepended. - */ - -/** - * Adds a {@link lunr.Query~Clause} to this query. - * - * Unless the clause contains the fields to be matched all fields will be matched. In addition - * a default boost of 1 is applied to the clause. - * - * @param {lunr.Query~Clause} clause - The clause to add to this query. - * @see lunr.Query~Clause - * @returns {lunr.Query} - */ -lunr.Query.prototype.clause = function (clause) { - if (!('fields' in clause)) { - clause.fields = this.allFields - } - - if (!('boost' in clause)) { - clause.boost = 1 - } - - if (!('usePipeline' in clause)) { - clause.usePipeline = true - } - - if (!('wildcard' in clause)) { - clause.wildcard = lunr.Query.wildcard.NONE - } - - if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) { - clause.term = "*" + clause.term - } - - if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) { - clause.term = "" + clause.term + "*" - } - - this.clauses.push(clause) - - return this -} - -/** - * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause} - * to the list of clauses that make up this query. - * - * @param {string} term - The term to add to the query. - * @param {Object} [options] - Any additional properties to add to the query clause. - * @returns {lunr.Query} - * @see lunr.Query#clause - * @see lunr.Query~Clause - * @example adding a single term to a query - * query.term("foo") - * @example adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard - * query.term("foo", { - * fields: ["title"], - * boost: 10, - * wildcard: lunr.Query.wildcard.TRAILING - * }) - */ -lunr.Query.prototype.term = function (term, options) { - var clause = options || {} - clause.term = term - - this.clause(clause) - - return this -} -lunr.QueryParseError = function (message, start, end) { - this.name = "QueryParseError" - this.message = message - this.start = start - this.end = end -} - -lunr.QueryParseError.prototype = new Error -lunr.QueryLexer = function (str) { - this.lexemes = [] - this.str = str - this.length = str.length - this.pos = 0 - this.start = 0 - this.escapeCharPositions = [] -} - -lunr.QueryLexer.prototype.run = function () { - var state = lunr.QueryLexer.lexText - - while (state) { - state = state(this) - } -} - -lunr.QueryLexer.prototype.sliceString = function () { - var subSlices = [], - sliceStart = this.start, - sliceEnd = this.pos - - for (var i = 0; i < this.escapeCharPositions.length; i++) { - sliceEnd = this.escapeCharPositions[i] - subSlices.push(this.str.slice(sliceStart, sliceEnd)) - sliceStart = sliceEnd + 1 - } - - subSlices.push(this.str.slice(sliceStart, this.pos)) - this.escapeCharPositions.length = 0 - - return subSlices.join('') -} - -lunr.QueryLexer.prototype.emit = function (type) { - this.lexemes.push({ - type: type, - str: this.sliceString(), - start: this.start, - end: this.pos - }) - - this.start = this.pos -} - -lunr.QueryLexer.prototype.escapeCharacter = function () { - this.escapeCharPositions.push(this.pos - 1) - this.pos += 1 -} - -lunr.QueryLexer.prototype.next = function () { - if (this.pos >= this.length) { - return lunr.QueryLexer.EOS - } - - var char = this.str.charAt(this.pos) - this.pos += 1 - return char -} - -lunr.QueryLexer.prototype.width = function () { - return this.pos - this.start -} - -lunr.QueryLexer.prototype.ignore = function () { - if (this.start == this.pos) { - this.pos += 1 - } - - this.start = this.pos -} - -lunr.QueryLexer.prototype.backup = function () { - this.pos -= 1 -} - -lunr.QueryLexer.prototype.acceptDigitRun = function () { - var char, charCode - - do { - char = this.next() - charCode = char.charCodeAt(0) - } while (charCode > 47 && charCode < 58) - - if (char != lunr.QueryLexer.EOS) { - this.backup() - } -} - -lunr.QueryLexer.prototype.more = function () { - return this.pos < this.length -} - -lunr.QueryLexer.EOS = 'EOS' -lunr.QueryLexer.FIELD = 'FIELD' -lunr.QueryLexer.TERM = 'TERM' -lunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE' -lunr.QueryLexer.BOOST = 'BOOST' - -lunr.QueryLexer.lexField = function (lexer) { - lexer.backup() - lexer.emit(lunr.QueryLexer.FIELD) - lexer.ignore() - return lunr.QueryLexer.lexText -} - -lunr.QueryLexer.lexTerm = function (lexer) { - if (lexer.width() > 1) { - lexer.backup() - lexer.emit(lunr.QueryLexer.TERM) - } - - lexer.ignore() - - if (lexer.more()) { - return lunr.QueryLexer.lexText - } -} - -lunr.QueryLexer.lexEditDistance = function (lexer) { - lexer.ignore() - lexer.acceptDigitRun() - lexer.emit(lunr.QueryLexer.EDIT_DISTANCE) - return lunr.QueryLexer.lexText -} - -lunr.QueryLexer.lexBoost = function (lexer) { - lexer.ignore() - lexer.acceptDigitRun() - lexer.emit(lunr.QueryLexer.BOOST) - return lunr.QueryLexer.lexText -} - -lunr.QueryLexer.lexEOS = function (lexer) { - if (lexer.width() > 0) { - lexer.emit(lunr.QueryLexer.TERM) - } -} - -// This matches the separator used when tokenising fields -// within a document. These should match otherwise it is -// not possible to search for some tokens within a document. -// -// It is possible for the user to change the separator on the -// tokenizer so it _might_ clash with any other of the special -// characters already used within the search string, e.g. :. -// -// This means that it is possible to change the separator in -// such a way that makes some words unsearchable using a search -// string. -lunr.QueryLexer.termSeparator = lunr.tokenizer.separator - -lunr.QueryLexer.lexText = function (lexer) { - while (true) { - var char = lexer.next() - - if (char == lunr.QueryLexer.EOS) { - return lunr.QueryLexer.lexEOS - } - - // Escape character is '\' - if (char.charCodeAt(0) == 92) { - lexer.escapeCharacter() - continue - } - - if (char == ":") { - return lunr.QueryLexer.lexField - } - - if (char == "~") { - lexer.backup() - if (lexer.width() > 0) { - lexer.emit(lunr.QueryLexer.TERM) - } - return lunr.QueryLexer.lexEditDistance - } - - if (char == "^") { - lexer.backup() - if (lexer.width() > 0) { - lexer.emit(lunr.QueryLexer.TERM) - } - return lunr.QueryLexer.lexBoost - } - - if (char.match(lunr.QueryLexer.termSeparator)) { - return lunr.QueryLexer.lexTerm - } - } -} - -lunr.QueryParser = function (str, query) { - this.lexer = new lunr.QueryLexer (str) - this.query = query - this.currentClause = {} - this.lexemeIdx = 0 -} - -lunr.QueryParser.prototype.parse = function () { - this.lexer.run() - this.lexemes = this.lexer.lexemes - - var state = lunr.QueryParser.parseFieldOrTerm - - while (state) { - state = state(this) - } - - return this.query -} - -lunr.QueryParser.prototype.peekLexeme = function () { - return this.lexemes[this.lexemeIdx] -} - -lunr.QueryParser.prototype.consumeLexeme = function () { - var lexeme = this.peekLexeme() - this.lexemeIdx += 1 - return lexeme -} - -lunr.QueryParser.prototype.nextClause = function () { - var completedClause = this.currentClause - this.query.clause(completedClause) - this.currentClause = {} -} - -lunr.QueryParser.parseFieldOrTerm = function (parser) { - var lexeme = parser.peekLexeme() - - if (lexeme == undefined) { - return - } - - switch (lexeme.type) { - case lunr.QueryLexer.FIELD: - return lunr.QueryParser.parseField - case lunr.QueryLexer.TERM: - return lunr.QueryParser.parseTerm - default: - var errorMessage = "expected either a field or a term, found " + lexeme.type - - if (lexeme.str.length >= 1) { - errorMessage += " with value '" + lexeme.str + "'" - } - - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } -} - -lunr.QueryParser.parseField = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - if (parser.query.allFields.indexOf(lexeme.str) == -1) { - var possibleFields = parser.query.allFields.map(function (f) { return "'" + f + "'" }).join(', '), - errorMessage = "unrecognised field '" + lexeme.str + "', possible fields: " + possibleFields - - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - parser.currentClause.fields = [lexeme.str] - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - var errorMessage = "expecting term, found nothing" - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - return lunr.QueryParser.parseTerm - default: - var errorMessage = "expecting term, found '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - -lunr.QueryParser.parseTerm = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - parser.currentClause.term = lexeme.str.toLowerCase() - - if (lexeme.str.indexOf("*") != -1) { - parser.currentClause.usePipeline = false - } - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - parser.nextClause() - return - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - parser.nextClause() - return lunr.QueryParser.parseTerm - case lunr.QueryLexer.FIELD: - parser.nextClause() - return lunr.QueryParser.parseField - case lunr.QueryLexer.EDIT_DISTANCE: - return lunr.QueryParser.parseEditDistance - case lunr.QueryLexer.BOOST: - return lunr.QueryParser.parseBoost - default: - var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - -lunr.QueryParser.parseEditDistance = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - var editDistance = parseInt(lexeme.str, 10) - - if (isNaN(editDistance)) { - var errorMessage = "edit distance must be numeric" - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - parser.currentClause.editDistance = editDistance - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - parser.nextClause() - return - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - parser.nextClause() - return lunr.QueryParser.parseTerm - case lunr.QueryLexer.FIELD: - parser.nextClause() - return lunr.QueryParser.parseField - case lunr.QueryLexer.EDIT_DISTANCE: - return lunr.QueryParser.parseEditDistance - case lunr.QueryLexer.BOOST: - return lunr.QueryParser.parseBoost - default: - var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - -lunr.QueryParser.parseBoost = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - var boost = parseInt(lexeme.str, 10) - - if (isNaN(boost)) { - var errorMessage = "boost must be numeric" - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - parser.currentClause.boost = boost - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - parser.nextClause() - return - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - parser.nextClause() - return lunr.QueryParser.parseTerm - case lunr.QueryLexer.FIELD: - parser.nextClause() - return lunr.QueryParser.parseField - case lunr.QueryLexer.EDIT_DISTANCE: - return lunr.QueryParser.parseEditDistance - case lunr.QueryLexer.BOOST: - return lunr.QueryParser.parseBoost - default: - var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - - /** - * export the module via AMD, CommonJS or as a browser global - * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js - */ - ;(function (root, factory) { - if (typeof define === 'function' && define.amd) { - // AMD. Register as an anonymous module. - define(factory) - } else if (typeof exports === 'object') { - /** - * Node. Does not work with strict CommonJS, but - * only CommonJS-like enviroments that support module.exports, - * like Node. - */ - module.exports = factory() - } else { - // Browser globals (root is window) - root.lunr = factory() - } - }(this, function () { - /** - * Just return a value to define the module export. - * This example returns an object, but the module - * can return a function as the exported value. - */ - return lunr - })) -})(); diff --git a/docs/styles/lunr.min.js b/docs/styles/lunr.min.js deleted file mode 100644 index 859e54f52c..0000000000 --- a/docs/styles/lunr.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var lunr=function(config){var builder=new lunr.Builder;builder.pipeline.add(lunr.trimmer,lunr.stopWordFilter,lunr.stemmer);builder.searchPipeline.add(lunr.stemmer);config.call(builder,builder);return builder.build()};lunr.version="2.1.2";lunr.utils={};lunr.utils.warn=function(global){return function(message){if(global.console&&console.warn){console.warn(message)}}}(this);lunr.utils.asString=function(obj){if(obj===void 0||obj===null){return""}else{return obj.toString()}};lunr.FieldRef=function(docRef,fieldName){this.docRef=docRef;this.fieldName=fieldName;this._stringValue=fieldName+lunr.FieldRef.joiner+docRef};lunr.FieldRef.joiner="/";lunr.FieldRef.fromString=function(s){var n=s.indexOf(lunr.FieldRef.joiner);if(n===-1){throw"malformed field ref string"}var fieldRef=s.slice(0,n),docRef=s.slice(n+1);return new lunr.FieldRef(docRef,fieldRef)};lunr.FieldRef.prototype.toString=function(){return this._stringValue};lunr.idf=function(posting,documentCount){var documentsWithTerm=0;for(var fieldName in posting){if(fieldName=="_index")continue;documentsWithTerm+=Object.keys(posting[fieldName]).length}var x=(documentCount-documentsWithTerm+.5)/(documentsWithTerm+.5);return Math.log(1+Math.abs(x))};lunr.Token=function(str,metadata){this.str=str||"";this.metadata=metadata||{}};lunr.Token.prototype.toString=function(){return this.str};lunr.Token.prototype.update=function(fn){this.str=fn(this.str,this.metadata);return this};lunr.Token.prototype.clone=function(fn){fn=fn||function(s){return s};return new lunr.Token(fn(this.str,this.metadata),this.metadata)};lunr.tokenizer=function(obj){if(obj==null||obj==undefined){return[]}if(Array.isArray(obj)){return obj.map((function(t){return new lunr.Token(lunr.utils.asString(t).toLowerCase())}))}var str=obj.toString().trim().toLowerCase(),len=str.length,tokens=[];for(var sliceEnd=0,sliceStart=0;sliceEnd<=len;sliceEnd++){var char=str.charAt(sliceEnd),sliceLength=sliceEnd-sliceStart;if(char.match(lunr.tokenizer.separator)||sliceEnd==len){if(sliceLength>0){tokens.push(new lunr.Token(str.slice(sliceStart,sliceEnd),{position:[sliceStart,sliceLength],index:tokens.length}))}sliceStart=sliceEnd+1}}return tokens};lunr.tokenizer.separator=/[\s\-]+/;lunr.Pipeline=function(){this._stack=[]};lunr.Pipeline.registeredFunctions=Object.create(null);lunr.Pipeline.registerFunction=function(fn,label){if(label in this.registeredFunctions){lunr.utils.warn("Overwriting existing registered function: "+label)}fn.label=label;lunr.Pipeline.registeredFunctions[fn.label]=fn};lunr.Pipeline.warnIfFunctionNotRegistered=function(fn){var isRegistered=fn.label&&fn.label in this.registeredFunctions;if(!isRegistered){lunr.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",fn)}};lunr.Pipeline.load=function(serialised){var pipeline=new lunr.Pipeline;serialised.forEach((function(fnName){var fn=lunr.Pipeline.registeredFunctions[fnName];if(fn){pipeline.add(fn)}else{throw new Error("Cannot load unregistered function: "+fnName)}}));return pipeline};lunr.Pipeline.prototype.add=function(){var fns=Array.prototype.slice.call(arguments);fns.forEach((function(fn){lunr.Pipeline.warnIfFunctionNotRegistered(fn);this._stack.push(fn)}),this)};lunr.Pipeline.prototype.after=function(existingFn,newFn){lunr.Pipeline.warnIfFunctionNotRegistered(newFn);var pos=this._stack.indexOf(existingFn);if(pos==-1){throw new Error("Cannot find existingFn")}pos=pos+1;this._stack.splice(pos,0,newFn)};lunr.Pipeline.prototype.before=function(existingFn,newFn){lunr.Pipeline.warnIfFunctionNotRegistered(newFn);var pos=this._stack.indexOf(existingFn);if(pos==-1){throw new Error("Cannot find existingFn")}this._stack.splice(pos,0,newFn)};lunr.Pipeline.prototype.remove=function(fn){var pos=this._stack.indexOf(fn);if(pos==-1){return}this._stack.splice(pos,1)};lunr.Pipeline.prototype.run=function(tokens){var stackLength=this._stack.length;for(var i=0;i1){if(pivotIndexindex){end=pivotPoint}if(pivotIndex==index){break}sliceLength=end-start;pivotPoint=start+Math.floor(sliceLength/2);pivotIndex=this.elements[pivotPoint*2]}if(pivotIndex==index){return pivotPoint*2}if(pivotIndex>index){return pivotPoint*2}if(pivotIndexbVal){j+=2}else if(aVal==bVal){dotProduct+=a[i+1]*b[j+1];i+=2;j+=2}}return dotProduct};lunr.Vector.prototype.similarity=function(otherVector){return this.dot(otherVector)/(this.magnitude()*otherVector.magnitude())};lunr.Vector.prototype.toArray=function(){var output=new Array(this.elements.length/2);for(var i=1,j=0;i0){var char=frame.str.charAt(0),noEditNode;if(char in frame.node.edges){noEditNode=frame.node.edges[char]}else{noEditNode=new lunr.TokenSet;frame.node.edges[char]=noEditNode}if(frame.str.length==1){noEditNode.final=true}else{stack.push({node:noEditNode,editsRemaining:frame.editsRemaining,str:frame.str.slice(1)})}}if(frame.editsRemaining>0&&frame.str.length>1){var char=frame.str.charAt(1),deletionNode;if(char in frame.node.edges){deletionNode=frame.node.edges[char]}else{deletionNode=new lunr.TokenSet;frame.node.edges[char]=deletionNode}if(frame.str.length<=2){deletionNode.final=true}else{stack.push({node:deletionNode,editsRemaining:frame.editsRemaining-1,str:frame.str.slice(2)})}}if(frame.editsRemaining>0&&frame.str.length==1){frame.node.final=true}if(frame.editsRemaining>0&&frame.str.length>=1){if("*"in frame.node.edges){var substitutionNode=frame.node.edges["*"]}else{var substitutionNode=new lunr.TokenSet;frame.node.edges["*"]=substitutionNode}if(frame.str.length==1){substitutionNode.final=true}else{stack.push({node:substitutionNode,editsRemaining:frame.editsRemaining-1,str:frame.str.slice(1)})}}if(frame.editsRemaining>0){if("*"in frame.node.edges){var insertionNode=frame.node.edges["*"]}else{var insertionNode=new lunr.TokenSet;frame.node.edges["*"]=insertionNode}if(frame.str.length==0){insertionNode.final=true}else{stack.push({node:insertionNode,editsRemaining:frame.editsRemaining-1,str:frame.str})}}if(frame.editsRemaining>0&&frame.str.length>1){var charA=frame.str.charAt(0),charB=frame.str.charAt(1),transposeNode;if(charB in frame.node.edges){transposeNode=frame.node.edges[charB]}else{transposeNode=new lunr.TokenSet;frame.node.edges[charB]=transposeNode}if(frame.str.length==1){transposeNode.final=true}else{stack.push({node:transposeNode,editsRemaining:frame.editsRemaining-1,str:charA+frame.str.slice(2)})}}}return root};lunr.TokenSet.fromString=function(str){var node=new lunr.TokenSet,root=node,wildcardFound=false;for(var i=0,len=str.length;i=downTo;i--){var node=this.uncheckedNodes[i],childKey=node.child.toString();if(childKey in this.minimizedNodes){node.parent.edges[node.char]=this.minimizedNodes[childKey]}else{node.child._str=childKey;this.minimizedNodes[childKey]=node.child}this.uncheckedNodes.pop()}};lunr.Index=function(attrs){this.invertedIndex=attrs.invertedIndex;this.fieldVectors=attrs.fieldVectors;this.tokenSet=attrs.tokenSet;this.fields=attrs.fields;this.pipeline=attrs.pipeline};lunr.Index.prototype.search=function(queryString){return this.query((function(query){var parser=new lunr.QueryParser(queryString,query);parser.parse()}))};lunr.Index.prototype.query=function(fn){var query=new lunr.Query(this.fields),matchingFields=Object.create(null),queryVectors=Object.create(null);fn.call(query,query);for(var i=0;i1){this._b=1}else{this._b=number}};lunr.Builder.prototype.k1=function(number){this._k1=number};lunr.Builder.prototype.add=function(doc){var docRef=doc[this._ref];this.documentCount+=1;for(var i=0;i=this.length){return lunr.QueryLexer.EOS}var char=this.str.charAt(this.pos);this.pos+=1;return char};lunr.QueryLexer.prototype.width=function(){return this.pos-this.start};lunr.QueryLexer.prototype.ignore=function(){if(this.start==this.pos){this.pos+=1}this.start=this.pos};lunr.QueryLexer.prototype.backup=function(){this.pos-=1};lunr.QueryLexer.prototype.acceptDigitRun=function(){var char,charCode;do{char=this.next();charCode=char.charCodeAt(0)}while(charCode>47&&charCode<58);if(char!=lunr.QueryLexer.EOS){this.backup()}};lunr.QueryLexer.prototype.more=function(){return this.pos1){lexer.backup();lexer.emit(lunr.QueryLexer.TERM)}lexer.ignore();if(lexer.more()){return lunr.QueryLexer.lexText}};lunr.QueryLexer.lexEditDistance=function(lexer){lexer.ignore();lexer.acceptDigitRun();lexer.emit(lunr.QueryLexer.EDIT_DISTANCE);return lunr.QueryLexer.lexText};lunr.QueryLexer.lexBoost=function(lexer){lexer.ignore();lexer.acceptDigitRun();lexer.emit(lunr.QueryLexer.BOOST);return lunr.QueryLexer.lexText};lunr.QueryLexer.lexEOS=function(lexer){if(lexer.width()>0){lexer.emit(lunr.QueryLexer.TERM)}};lunr.QueryLexer.termSeparator=lunr.tokenizer.separator;lunr.QueryLexer.lexText=function(lexer){while(true){var char=lexer.next();if(char==lunr.QueryLexer.EOS){return lunr.QueryLexer.lexEOS}if(char.charCodeAt(0)==92){lexer.escapeCharacter();continue}if(char==":"){return lunr.QueryLexer.lexField}if(char=="~"){lexer.backup();if(lexer.width()>0){lexer.emit(lunr.QueryLexer.TERM)}return lunr.QueryLexer.lexEditDistance}if(char=="^"){lexer.backup();if(lexer.width()>0){lexer.emit(lunr.QueryLexer.TERM)}return lunr.QueryLexer.lexBoost}if(char.match(lunr.QueryLexer.termSeparator)){return lunr.QueryLexer.lexTerm}}};lunr.QueryParser=function(str,query){this.lexer=new lunr.QueryLexer(str);this.query=query;this.currentClause={};this.lexemeIdx=0};lunr.QueryParser.prototype.parse=function(){this.lexer.run();this.lexemes=this.lexer.lexemes;var state=lunr.QueryParser.parseFieldOrTerm;while(state){state=state(this)}return this.query};lunr.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]};lunr.QueryParser.prototype.consumeLexeme=function(){var lexeme=this.peekLexeme();this.lexemeIdx+=1;return lexeme};lunr.QueryParser.prototype.nextClause=function(){var completedClause=this.currentClause;this.query.clause(completedClause);this.currentClause={}};lunr.QueryParser.parseFieldOrTerm=function(parser){var lexeme=parser.peekLexeme();if(lexeme==undefined){return}switch(lexeme.type){case lunr.QueryLexer.FIELD:return lunr.QueryParser.parseField;case lunr.QueryLexer.TERM:return lunr.QueryParser.parseTerm;default:var errorMessage="expected either a field or a term, found "+lexeme.type;if(lexeme.str.length>=1){errorMessage+=" with value '"+lexeme.str+"'"}throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}};lunr.QueryParser.parseField=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}if(parser.query.allFields.indexOf(lexeme.str)==-1){var possibleFields=parser.query.allFields.map((function(f){return"'"+f+"'"})).join(", "),errorMessage="unrecognised field '"+lexeme.str+"', possible fields: "+possibleFields;throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}parser.currentClause.fields=[lexeme.str];var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){var errorMessage="expecting term, found nothing";throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}switch(nextLexeme.type){case lunr.QueryLexer.TERM:return lunr.QueryParser.parseTerm;default:var errorMessage="expecting term, found '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};lunr.QueryParser.parseTerm=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}parser.currentClause.term=lexeme.str.toLowerCase();if(lexeme.str.indexOf("*")!=-1){parser.currentClause.usePipeline=false}var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){parser.nextClause();return}switch(nextLexeme.type){case lunr.QueryLexer.TERM:parser.nextClause();return lunr.QueryParser.parseTerm;case lunr.QueryLexer.FIELD:parser.nextClause();return lunr.QueryParser.parseField;case lunr.QueryLexer.EDIT_DISTANCE:return lunr.QueryParser.parseEditDistance;case lunr.QueryLexer.BOOST:return lunr.QueryParser.parseBoost;default:var errorMessage="Unexpected lexeme type '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};lunr.QueryParser.parseEditDistance=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}var editDistance=parseInt(lexeme.str,10);if(isNaN(editDistance)){var errorMessage="edit distance must be numeric";throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}parser.currentClause.editDistance=editDistance;var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){parser.nextClause();return}switch(nextLexeme.type){case lunr.QueryLexer.TERM:parser.nextClause();return lunr.QueryParser.parseTerm;case lunr.QueryLexer.FIELD:parser.nextClause();return lunr.QueryParser.parseField;case lunr.QueryLexer.EDIT_DISTANCE:return lunr.QueryParser.parseEditDistance;case lunr.QueryLexer.BOOST:return lunr.QueryParser.parseBoost;default:var errorMessage="Unexpected lexeme type '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};lunr.QueryParser.parseBoost=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}var boost=parseInt(lexeme.str,10);if(isNaN(boost)){var errorMessage="boost must be numeric";throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}parser.currentClause.boost=boost;var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){parser.nextClause();return}switch(nextLexeme.type){case lunr.QueryLexer.TERM:parser.nextClause();return lunr.QueryParser.parseTerm;case lunr.QueryLexer.FIELD:parser.nextClause();return lunr.QueryParser.parseField;case lunr.QueryLexer.EDIT_DISTANCE:return lunr.QueryParser.parseEditDistance;case lunr.QueryLexer.BOOST:return lunr.QueryParser.parseBoost;default:var errorMessage="Unexpected lexeme type '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};(function(root,factory){if(typeof define==="function"&&define.amd){define(factory)}else if(typeof exports==="object"){module.exports=factory()}else{root.lunr=factory()}})(this,(function(){return lunr}))})(); \ No newline at end of file diff --git a/docs/styles/main.css b/docs/styles/main.css deleted file mode 100644 index 01bd6f07ed..0000000000 --- a/docs/styles/main.css +++ /dev/null @@ -1,304 +0,0 @@ -/* COLOR VARIABLES*/ -:root { - --header-bg-color: #03265a; - --header-ft-color: #fff; - --highlight-light: #5e92f3; - --highlight-dark: #003c8f; - --accent-dim: #eee; - --font-color: #3c3d3e; - --card-box-shadow: 0 1px 2px 0 rgba(61, 65, 68, 0.06), 0 1px 3px 1px rgba(61, 65, 68, 0.16); - --under-box-shadow: 0 4px 4px -2px #eee; - --search-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1); -} - -body { - color: var(--font-color); - font-family: "Source Sans Pro", sans-serif; - line-height: 1.5; - font-size: 16px; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - word-wrap: break-word; -} - -code,kbd,pre,samp{ - font-family: "Source Code Pro", Menlo, Monaco, Consolas, "Courier New", monospace -} - -/* HIGHLIGHT COLOR */ - -button, -a { - color: var(--highlight-light); - cursor: pointer; -} - -button:hover, -button:focus, -a:hover, -a:focus { - color: var(--highlight-light); - text-decoration: none; -} - -.toc .nav > li.active > a { - color: var(--highlight-dark); -} - -.toc .nav > li.active > a:hover, -.toc .nav > li.active > a:focus { - color: var(--highlight-light); -} - -.pagination > .active > a { - background-color: var(--header-bg-color); - border-color: var(--header-bg-color); -} - -.pagination > .active > a, -.pagination > .active > a:focus, -.pagination > .active > a:hover, -.pagination > .active > span, -.pagination > .active > span:focus, -.pagination > .active > span:hover { - background-color: var(--highlight-light); - border-color: var(--highlight-light); -} - -/* HEADINGS */ - -h1 { - font-weight: 600; - font-size: 32px; -} - -h2 { - font-weight: 600; - font-size: 24px; - line-height: 1.8; -} - -h3 { - font-weight: 600; - font-size: 20px; - line-height: 1.8; -} - -h5 { - font-size: 14px; - padding: 10px 0px; -} - -article h1, -article h2, -article h3, -article h4 { - margin-top: 35px; - margin-bottom: 15px; -} - -article h4 { - padding-bottom: 8px; - border-bottom: 2px solid #ddd; -} - -/* NAVBAR */ - -.navbar-brand > img { - color: var(--header-ft-color); -} - -.navbar { - border: none; - /* Both navbars use box-shadow */ - -webkit-box-shadow: var(--card-box-shadow); - -moz-box-shadow: var(--card-box-shadow); - box-shadow: var(--card-box-shadow); - font-family: 'Source Code Pro', 'Courier New', Courier, monospace -} - -.subnav { - border-top: 1px solid #ddd; - background-color: #fff; -} - -.navbar-inverse { - background-color: var(--header-bg-color); - z-index: 100; -} - -.navbar-inverse .navbar-nav > li > a, -.navbar-inverse .navbar-text { - color: var(--header-ft-color); - background-color: var(--header-bg-color); - border-bottom: 3px solid transparent; - padding-bottom: 12px; -} - -.navbar-inverse .navbar-nav > li > a:focus, -.navbar-inverse .navbar-nav > li > a:hover { - color: var(--header-ft-color); - background-color: var(--header-bg-color); - border-bottom: 3px solid white; -} - -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:focus, -.navbar-inverse .navbar-nav > .active > a:hover { - color: var(--header-ft-color); - background-color: var(--header-bg-color); - border-bottom: 3px solid white; -} - -.navbar-form .form-control { - border: 0; - border-radius: 0; -} - -.navbar-form .form-control:hover { - box-shadow: var(--search-box-shadow); -} - -.toc-filter > input:hover { - box-shadow: var(--under-box-shadow); -} - -/* NAVBAR TOGGLED (small screens) */ - -.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { - border: none; -} -.navbar-inverse .navbar-toggle { - box-shadow: var(--card-box-shadow); - border: none; -} - -.navbar-inverse .navbar-toggle:focus, -.navbar-inverse .navbar-toggle:hover { - background-color: var(--header-ft-color); -} - -/* SIDEBAR */ - -.toc .level1 > li { - font-weight: 400; -} - -.toc .nav > li > a { - color: var(--font-color); -} - -.sidefilter { - background-color: #fff; - border-left: none; - border-right: none; -} - -.sidefilter { - background-color: #fff; - border-left: none; - border-right: none; -} - -.toc-filter { - padding: 10px; - margin: 0; -} - -.toc-filter > input { - border: none; - border-bottom: 2px solid var(--accent-dim); -} - -.toc-filter > .filter-icon { - display: none; -} - -.sidetoc > .toc { - background-color: #fff; - overflow-x: hidden; -} - -.sidetoc { - background-color: #fff; - border: none; -} - -/* ALERTS */ - -.alert { - padding: 0px 0px 5px 0px; - color: inherit; - background-color: inherit; - border: none; - box-shadow: var(--card-box-shadow); -} - -.alert > p { - margin-bottom: 0; - padding: 5px 10px; -} - -.alert > ul { - margin-bottom: 0; - padding: 5px 40px; -} - -.alert > h5 { - padding: 10px 15px; - margin-top: 0; - text-transform: uppercase; - font-weight: bold; - border-radius: 4px 4px 0 0; -} - -.alert-info > h5 { - color: #1976d2; - border-bottom: 4px solid #1976d2; - background-color: #e3f2fd; -} - -.alert-warning > h5 { - color: #f57f17; - border-bottom: 4px solid #f57f17; - background-color: #fff3e0; -} - -.alert-danger > h5 { - color: #d32f2f; - border-bottom: 4px solid #d32f2f; - background-color: #ffebee; -} - -/* CODE HIGHLIGHT */ -pre { - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - word-break: break-all; - word-wrap: break-word; - background-color: #fffaef; - border-radius: 4px; - border: none; - box-shadow: var(--card-box-shadow); -} - -/* STYLE FOR IMAGES */ - -.article .small-image { - margin-top: 15px; - box-shadow: var(--card-box-shadow); - max-width: 350px; -} - -.article .medium-image { - margin-top: 15px; - box-shadow: var(--card-box-shadow); - max-width: 550px; -} - -.article .large-image { - margin-top: 15px; - box-shadow: var(--card-box-shadow); - max-width: 700px; -} \ No newline at end of file diff --git a/docs/styles/main.js b/docs/styles/main.js deleted file mode 100644 index aeca70d851..0000000000 --- a/docs/styles/main.js +++ /dev/null @@ -1 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. diff --git a/docs/styles/search-worker.js b/docs/styles/search-worker.js deleted file mode 100644 index 60852af4ce..0000000000 --- a/docs/styles/search-worker.js +++ /dev/null @@ -1,80 +0,0 @@ -(function () { - importScripts('lunr.min.js'); - - var lunrIndex; - - var stopWords = null; - var searchData = {}; - - lunr.tokenizer.separator = /[\s\-\.\(\)]+/; - - var stopWordsRequest = new XMLHttpRequest(); - stopWordsRequest.open('GET', '../search-stopwords.json'); - stopWordsRequest.onload = function () { - if (this.status != 200) { - return; - } - stopWords = JSON.parse(this.responseText); - buildIndex(); - } - stopWordsRequest.send(); - - var searchDataRequest = new XMLHttpRequest(); - - searchDataRequest.open('GET', '../index.json'); - searchDataRequest.onload = function () { - if (this.status != 200) { - return; - } - searchData = JSON.parse(this.responseText); - - buildIndex(); - - postMessage({ e: 'index-ready' }); - } - searchDataRequest.send(); - - onmessage = function (oEvent) { - var q = oEvent.data.q; - var hits = lunrIndex.search(q); - var results = []; - hits.forEach(function (hit) { - var item = searchData[hit.ref]; - results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords }); - }); - postMessage({ e: 'query-ready', q: q, d: results }); - } - - function buildIndex() { - if (stopWords !== null && !isEmpty(searchData)) { - lunrIndex = lunr(function () { - this.pipeline.remove(lunr.stopWordFilter); - this.ref('href'); - this.field('title', { boost: 50 }); - this.field('keywords', { boost: 20 }); - - for (var prop in searchData) { - if (searchData.hasOwnProperty(prop)) { - this.add(searchData[prop]); - } - } - - var docfxStopWordFilter = lunr.generateStopWordFilter(stopWords); - lunr.Pipeline.registerFunction(docfxStopWordFilter, 'docfxStopWordFilter'); - this.pipeline.add(docfxStopWordFilter); - this.searchPipeline.add(docfxStopWordFilter); - }); - } - } - - function isEmpty(obj) { - if(!obj) return true; - - for (var prop in obj) { - if (obj.hasOwnProperty(prop)) - return false; - } - - return true; - } -})(); diff --git a/docs/toc.html b/docs/toc.html deleted file mode 100644 index e7b87953d7..0000000000 --- a/docs/toc.html +++ /dev/null @@ -1,31 +0,0 @@ - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \ No newline at end of file diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml deleted file mode 100644 index 5558aeb476..0000000000 --- a/docs/xrefmap.yml +++ /dev/null @@ -1,30139 +0,0 @@ -### YamlMime:XRefMap -sorted: true -references: -- uid: Terminal.Gui - name: Terminal.Gui - href: api/Terminal.Gui/Terminal.Gui.html - commentId: N:Terminal.Gui - fullName: Terminal.Gui - nameWithType: Terminal.Gui -- uid: Terminal.Gui.Application - name: Application - href: api/Terminal.Gui/Terminal.Gui.Application.html - commentId: T:Terminal.Gui.Application - fullName: Terminal.Gui.Application - nameWithType: Application -- uid: Terminal.Gui.Application.AlternateBackwardKey - name: AlternateBackwardKey - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_AlternateBackwardKey - commentId: P:Terminal.Gui.Application.AlternateBackwardKey - fullName: Terminal.Gui.Application.AlternateBackwardKey - nameWithType: Application.AlternateBackwardKey -- uid: Terminal.Gui.Application.AlternateBackwardKey* - name: AlternateBackwardKey - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_AlternateBackwardKey_ - commentId: Overload:Terminal.Gui.Application.AlternateBackwardKey - isSpec: "True" - fullName: Terminal.Gui.Application.AlternateBackwardKey - nameWithType: Application.AlternateBackwardKey -- uid: Terminal.Gui.Application.AlternateForwardKey - name: AlternateForwardKey - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_AlternateForwardKey - commentId: P:Terminal.Gui.Application.AlternateForwardKey - fullName: Terminal.Gui.Application.AlternateForwardKey - nameWithType: Application.AlternateForwardKey -- uid: Terminal.Gui.Application.AlternateForwardKey* - name: AlternateForwardKey - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_AlternateForwardKey_ - commentId: Overload:Terminal.Gui.Application.AlternateForwardKey - isSpec: "True" - fullName: Terminal.Gui.Application.AlternateForwardKey - nameWithType: Application.AlternateForwardKey -- uid: Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel) - name: Begin(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Begin_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel) - nameWithType: Application.Begin(Toplevel) -- uid: Terminal.Gui.Application.Begin* - name: Begin - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Begin_ - commentId: Overload:Terminal.Gui.Application.Begin - isSpec: "True" - fullName: Terminal.Gui.Application.Begin - nameWithType: Application.Begin -- uid: Terminal.Gui.Application.Current - name: Current - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Current - commentId: P:Terminal.Gui.Application.Current - fullName: Terminal.Gui.Application.Current - nameWithType: Application.Current -- uid: Terminal.Gui.Application.Current* - name: Current - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Current_ - commentId: Overload:Terminal.Gui.Application.Current - isSpec: "True" - fullName: Terminal.Gui.Application.Current - nameWithType: Application.Current -- uid: Terminal.Gui.Application.DoEvents - name: DoEvents() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_DoEvents - commentId: M:Terminal.Gui.Application.DoEvents - fullName: Terminal.Gui.Application.DoEvents() - nameWithType: Application.DoEvents() -- uid: Terminal.Gui.Application.DoEvents* - name: DoEvents - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_DoEvents_ - commentId: Overload:Terminal.Gui.Application.DoEvents - isSpec: "True" - fullName: Terminal.Gui.Application.DoEvents - nameWithType: Application.DoEvents -- uid: Terminal.Gui.Application.Driver - name: Driver - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Driver - commentId: F:Terminal.Gui.Application.Driver - fullName: Terminal.Gui.Application.Driver - nameWithType: Application.Driver -- uid: Terminal.Gui.Application.End(Terminal.Gui.Application.RunState) - name: End(Application.RunState) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_End_Terminal_Gui_Application_RunState_ - commentId: M:Terminal.Gui.Application.End(Terminal.Gui.Application.RunState) - fullName: Terminal.Gui.Application.End(Terminal.Gui.Application.RunState) - nameWithType: Application.End(Application.RunState) -- uid: Terminal.Gui.Application.End* - name: End - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_End_ - commentId: Overload:Terminal.Gui.Application.End - isSpec: "True" - fullName: Terminal.Gui.Application.End - nameWithType: Application.End -- uid: Terminal.Gui.Application.EnsuresTopOnFront - name: EnsuresTopOnFront() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_EnsuresTopOnFront - commentId: M:Terminal.Gui.Application.EnsuresTopOnFront - fullName: Terminal.Gui.Application.EnsuresTopOnFront() - nameWithType: Application.EnsuresTopOnFront() -- uid: Terminal.Gui.Application.EnsuresTopOnFront* - name: EnsuresTopOnFront - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_EnsuresTopOnFront_ - commentId: Overload:Terminal.Gui.Application.EnsuresTopOnFront - isSpec: "True" - fullName: Terminal.Gui.Application.EnsuresTopOnFront - nameWithType: Application.EnsuresTopOnFront -- uid: Terminal.Gui.Application.ExitRunLoopAfterFirstIteration - name: ExitRunLoopAfterFirstIteration - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_ExitRunLoopAfterFirstIteration - commentId: P:Terminal.Gui.Application.ExitRunLoopAfterFirstIteration - fullName: Terminal.Gui.Application.ExitRunLoopAfterFirstIteration - nameWithType: Application.ExitRunLoopAfterFirstIteration -- uid: Terminal.Gui.Application.ExitRunLoopAfterFirstIteration* - name: ExitRunLoopAfterFirstIteration - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_ExitRunLoopAfterFirstIteration_ - commentId: Overload:Terminal.Gui.Application.ExitRunLoopAfterFirstIteration - isSpec: "True" - fullName: Terminal.Gui.Application.ExitRunLoopAfterFirstIteration - nameWithType: Application.ExitRunLoopAfterFirstIteration -- uid: Terminal.Gui.Application.GrabMouse(Terminal.Gui.View) - name: GrabMouse(View) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_GrabMouse_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Application.GrabMouse(Terminal.Gui.View) - fullName: Terminal.Gui.Application.GrabMouse(Terminal.Gui.View) - nameWithType: Application.GrabMouse(View) -- uid: Terminal.Gui.Application.GrabMouse* - name: GrabMouse - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_GrabMouse_ - commentId: Overload:Terminal.Gui.Application.GrabMouse - isSpec: "True" - fullName: Terminal.Gui.Application.GrabMouse - nameWithType: Application.GrabMouse -- uid: Terminal.Gui.Application.HeightAsBuffer - name: HeightAsBuffer - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_HeightAsBuffer - commentId: P:Terminal.Gui.Application.HeightAsBuffer - fullName: Terminal.Gui.Application.HeightAsBuffer - nameWithType: Application.HeightAsBuffer -- uid: Terminal.Gui.Application.HeightAsBuffer* - name: HeightAsBuffer - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_HeightAsBuffer_ - commentId: Overload:Terminal.Gui.Application.HeightAsBuffer - isSpec: "True" - fullName: Terminal.Gui.Application.HeightAsBuffer - nameWithType: Application.HeightAsBuffer -- uid: Terminal.Gui.Application.Init(Terminal.Gui.ConsoleDriver,Terminal.Gui.IMainLoopDriver) - name: Init(ConsoleDriver, IMainLoopDriver) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Init_Terminal_Gui_ConsoleDriver_Terminal_Gui_IMainLoopDriver_ - commentId: M:Terminal.Gui.Application.Init(Terminal.Gui.ConsoleDriver,Terminal.Gui.IMainLoopDriver) - fullName: Terminal.Gui.Application.Init(Terminal.Gui.ConsoleDriver, Terminal.Gui.IMainLoopDriver) - nameWithType: Application.Init(ConsoleDriver, IMainLoopDriver) -- uid: Terminal.Gui.Application.Init* - name: Init - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Init_ - commentId: Overload:Terminal.Gui.Application.Init - isSpec: "True" - fullName: Terminal.Gui.Application.Init - nameWithType: Application.Init -- uid: Terminal.Gui.Application.IsMouseDisabled - name: IsMouseDisabled - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_IsMouseDisabled - commentId: P:Terminal.Gui.Application.IsMouseDisabled - fullName: Terminal.Gui.Application.IsMouseDisabled - nameWithType: Application.IsMouseDisabled -- uid: Terminal.Gui.Application.IsMouseDisabled* - name: IsMouseDisabled - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_IsMouseDisabled_ - commentId: Overload:Terminal.Gui.Application.IsMouseDisabled - isSpec: "True" - fullName: Terminal.Gui.Application.IsMouseDisabled - nameWithType: Application.IsMouseDisabled -- uid: Terminal.Gui.Application.Iteration - name: Iteration - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Iteration - commentId: F:Terminal.Gui.Application.Iteration - fullName: Terminal.Gui.Application.Iteration - nameWithType: Application.Iteration -- uid: Terminal.Gui.Application.MainLoop - name: MainLoop - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MainLoop - commentId: P:Terminal.Gui.Application.MainLoop - fullName: Terminal.Gui.Application.MainLoop - nameWithType: Application.MainLoop -- uid: Terminal.Gui.Application.MainLoop* - name: MainLoop - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MainLoop_ - commentId: Overload:Terminal.Gui.Application.MainLoop - isSpec: "True" - fullName: Terminal.Gui.Application.MainLoop - nameWithType: Application.MainLoop -- uid: Terminal.Gui.Application.MakeCenteredRect(Terminal.Gui.Size) - name: MakeCenteredRect(Size) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MakeCenteredRect_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Application.MakeCenteredRect(Terminal.Gui.Size) - fullName: Terminal.Gui.Application.MakeCenteredRect(Terminal.Gui.Size) - nameWithType: Application.MakeCenteredRect(Size) -- uid: Terminal.Gui.Application.MakeCenteredRect* - name: MakeCenteredRect - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MakeCenteredRect_ - commentId: Overload:Terminal.Gui.Application.MakeCenteredRect - isSpec: "True" - fullName: Terminal.Gui.Application.MakeCenteredRect - nameWithType: Application.MakeCenteredRect -- uid: Terminal.Gui.Application.MdiChildes - name: MdiChildes - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MdiChildes - commentId: P:Terminal.Gui.Application.MdiChildes - fullName: Terminal.Gui.Application.MdiChildes - nameWithType: Application.MdiChildes -- uid: Terminal.Gui.Application.MdiChildes* - name: MdiChildes - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MdiChildes_ - commentId: Overload:Terminal.Gui.Application.MdiChildes - isSpec: "True" - fullName: Terminal.Gui.Application.MdiChildes - nameWithType: Application.MdiChildes -- uid: Terminal.Gui.Application.MdiTop - name: MdiTop - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MdiTop - commentId: P:Terminal.Gui.Application.MdiTop - fullName: Terminal.Gui.Application.MdiTop - nameWithType: Application.MdiTop -- uid: Terminal.Gui.Application.MdiTop* - name: MdiTop - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MdiTop_ - commentId: Overload:Terminal.Gui.Application.MdiTop - isSpec: "True" - fullName: Terminal.Gui.Application.MdiTop - nameWithType: Application.MdiTop -- uid: Terminal.Gui.Application.MoveNext - name: MoveNext() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MoveNext - commentId: M:Terminal.Gui.Application.MoveNext - fullName: Terminal.Gui.Application.MoveNext() - nameWithType: Application.MoveNext() -- uid: Terminal.Gui.Application.MoveNext* - name: MoveNext - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MoveNext_ - commentId: Overload:Terminal.Gui.Application.MoveNext - isSpec: "True" - fullName: Terminal.Gui.Application.MoveNext - nameWithType: Application.MoveNext -- uid: Terminal.Gui.Application.MovePrevious - name: MovePrevious() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MovePrevious - commentId: M:Terminal.Gui.Application.MovePrevious - fullName: Terminal.Gui.Application.MovePrevious() - nameWithType: Application.MovePrevious() -- uid: Terminal.Gui.Application.MovePrevious* - name: MovePrevious - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_MovePrevious_ - commentId: Overload:Terminal.Gui.Application.MovePrevious - isSpec: "True" - fullName: Terminal.Gui.Application.MovePrevious - nameWithType: Application.MovePrevious -- uid: Terminal.Gui.Application.NotifyNewRunState - name: NotifyNewRunState - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_NotifyNewRunState - commentId: E:Terminal.Gui.Application.NotifyNewRunState - fullName: Terminal.Gui.Application.NotifyNewRunState - nameWithType: Application.NotifyNewRunState -- uid: Terminal.Gui.Application.NotifyStopRunState - name: NotifyStopRunState - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_NotifyStopRunState - commentId: E:Terminal.Gui.Application.NotifyStopRunState - fullName: Terminal.Gui.Application.NotifyStopRunState - nameWithType: Application.NotifyStopRunState -- uid: Terminal.Gui.Application.QuitKey - name: QuitKey - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_QuitKey - commentId: P:Terminal.Gui.Application.QuitKey - fullName: Terminal.Gui.Application.QuitKey - nameWithType: Application.QuitKey -- uid: Terminal.Gui.Application.QuitKey* - name: QuitKey - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_QuitKey_ - commentId: Overload:Terminal.Gui.Application.QuitKey - isSpec: "True" - fullName: Terminal.Gui.Application.QuitKey - nameWithType: Application.QuitKey -- uid: Terminal.Gui.Application.Refresh - name: Refresh() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Refresh - commentId: M:Terminal.Gui.Application.Refresh - fullName: Terminal.Gui.Application.Refresh() - nameWithType: Application.Refresh() -- uid: Terminal.Gui.Application.Refresh* - name: Refresh - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Refresh_ - commentId: Overload:Terminal.Gui.Application.Refresh - isSpec: "True" - fullName: Terminal.Gui.Application.Refresh - nameWithType: Application.Refresh -- uid: Terminal.Gui.Application.RequestStop(Terminal.Gui.Toplevel) - name: RequestStop(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.Application.RequestStop(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.Application.RequestStop(Terminal.Gui.Toplevel) - nameWithType: Application.RequestStop(Toplevel) -- uid: Terminal.Gui.Application.RequestStop* - name: RequestStop - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_ - commentId: Overload:Terminal.Gui.Application.RequestStop - isSpec: "True" - fullName: Terminal.Gui.Application.RequestStop - nameWithType: Application.RequestStop -- uid: Terminal.Gui.Application.Resized - name: Resized - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Resized - commentId: F:Terminal.Gui.Application.Resized - fullName: Terminal.Gui.Application.Resized - nameWithType: Application.Resized -- uid: Terminal.Gui.Application.ResizedEventArgs - name: Application.ResizedEventArgs - href: api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html - commentId: T:Terminal.Gui.Application.ResizedEventArgs - fullName: Terminal.Gui.Application.ResizedEventArgs - nameWithType: Application.ResizedEventArgs -- uid: Terminal.Gui.Application.ResizedEventArgs.Cols - name: Cols - href: api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html#Terminal_Gui_Application_ResizedEventArgs_Cols - commentId: P:Terminal.Gui.Application.ResizedEventArgs.Cols - fullName: Terminal.Gui.Application.ResizedEventArgs.Cols - nameWithType: Application.ResizedEventArgs.Cols -- uid: Terminal.Gui.Application.ResizedEventArgs.Cols* - name: Cols - href: api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html#Terminal_Gui_Application_ResizedEventArgs_Cols_ - commentId: Overload:Terminal.Gui.Application.ResizedEventArgs.Cols - isSpec: "True" - fullName: Terminal.Gui.Application.ResizedEventArgs.Cols - nameWithType: Application.ResizedEventArgs.Cols -- uid: Terminal.Gui.Application.ResizedEventArgs.Rows - name: Rows - href: api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html#Terminal_Gui_Application_ResizedEventArgs_Rows - commentId: P:Terminal.Gui.Application.ResizedEventArgs.Rows - fullName: Terminal.Gui.Application.ResizedEventArgs.Rows - nameWithType: Application.ResizedEventArgs.Rows -- uid: Terminal.Gui.Application.ResizedEventArgs.Rows* - name: Rows - href: api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html#Terminal_Gui_Application_ResizedEventArgs_Rows_ - commentId: Overload:Terminal.Gui.Application.ResizedEventArgs.Rows - isSpec: "True" - fullName: Terminal.Gui.Application.ResizedEventArgs.Rows - nameWithType: Application.ResizedEventArgs.Rows -- uid: Terminal.Gui.Application.RootKeyEvent - name: RootKeyEvent - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RootKeyEvent - commentId: F:Terminal.Gui.Application.RootKeyEvent - fullName: Terminal.Gui.Application.RootKeyEvent - nameWithType: Application.RootKeyEvent -- uid: Terminal.Gui.Application.RootMouseEvent - name: RootMouseEvent - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RootMouseEvent - commentId: F:Terminal.Gui.Application.RootMouseEvent - fullName: Terminal.Gui.Application.RootMouseEvent - nameWithType: Application.RootMouseEvent -- uid: Terminal.Gui.Application.Run(System.Func{System.Exception,System.Boolean}) - name: Run(Func) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Run_System_Func_System_Exception_System_Boolean__ - commentId: M:Terminal.Gui.Application.Run(System.Func{System.Exception,System.Boolean}) - name.vb: Run(Func(Of Exception, Boolean)) - fullName: Terminal.Gui.Application.Run(System.Func) - fullName.vb: Terminal.Gui.Application.Run(System.Func(Of System.Exception, System.Boolean)) - nameWithType: Application.Run(Func) - nameWithType.vb: Application.Run(Func(Of Exception, Boolean)) -- uid: Terminal.Gui.Application.Run(Terminal.Gui.Toplevel,System.Func{System.Exception,System.Boolean}) - name: Run(Toplevel, Func) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Run_Terminal_Gui_Toplevel_System_Func_System_Exception_System_Boolean__ - commentId: M:Terminal.Gui.Application.Run(Terminal.Gui.Toplevel,System.Func{System.Exception,System.Boolean}) - name.vb: Run(Toplevel, Func(Of Exception, Boolean)) - fullName: Terminal.Gui.Application.Run(Terminal.Gui.Toplevel, System.Func) - fullName.vb: Terminal.Gui.Application.Run(Terminal.Gui.Toplevel, System.Func(Of System.Exception, System.Boolean)) - nameWithType: Application.Run(Toplevel, Func) - nameWithType.vb: Application.Run(Toplevel, Func(Of Exception, Boolean)) -- uid: Terminal.Gui.Application.Run* - name: Run - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Run_ - commentId: Overload:Terminal.Gui.Application.Run - isSpec: "True" - fullName: Terminal.Gui.Application.Run - nameWithType: Application.Run -- uid: Terminal.Gui.Application.Run``1(System.Func{System.Exception,System.Boolean}) - name: Run(Func) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Run__1_System_Func_System_Exception_System_Boolean__ - commentId: M:Terminal.Gui.Application.Run``1(System.Func{System.Exception,System.Boolean}) - name.vb: Run(Of T)(Func(Of Exception, Boolean)) - fullName: Terminal.Gui.Application.Run(System.Func) - fullName.vb: Terminal.Gui.Application.Run(Of T)(System.Func(Of System.Exception, System.Boolean)) - nameWithType: Application.Run(Func) - nameWithType.vb: Application.Run(Of T)(Func(Of Exception, Boolean)) -- uid: Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState,System.Boolean) - name: RunLoop(Application.RunState, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RunLoop_Terminal_Gui_Application_RunState_System_Boolean_ - commentId: M:Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState,System.Boolean) - fullName: Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState, System.Boolean) - nameWithType: Application.RunLoop(Application.RunState, Boolean) -- uid: Terminal.Gui.Application.RunLoop* - name: RunLoop - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RunLoop_ - commentId: Overload:Terminal.Gui.Application.RunLoop - isSpec: "True" - fullName: Terminal.Gui.Application.RunLoop - nameWithType: Application.RunLoop -- uid: Terminal.Gui.Application.RunMainLoopIteration(Terminal.Gui.Application.RunState@,System.Boolean,System.Boolean@) - name: RunMainLoopIteration(ref Application.RunState, Boolean, ref Boolean) - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RunMainLoopIteration_Terminal_Gui_Application_RunState__System_Boolean_System_Boolean__ - commentId: M:Terminal.Gui.Application.RunMainLoopIteration(Terminal.Gui.Application.RunState@,System.Boolean,System.Boolean@) - name.vb: RunMainLoopIteration(ByRef Application.RunState, Boolean, ByRef Boolean) - fullName: Terminal.Gui.Application.RunMainLoopIteration(ref Terminal.Gui.Application.RunState, System.Boolean, ref System.Boolean) - fullName.vb: Terminal.Gui.Application.RunMainLoopIteration(ByRef Terminal.Gui.Application.RunState, System.Boolean, ByRef System.Boolean) - nameWithType: Application.RunMainLoopIteration(ref Application.RunState, Boolean, ref Boolean) - nameWithType.vb: Application.RunMainLoopIteration(ByRef Application.RunState, Boolean, ByRef Boolean) -- uid: Terminal.Gui.Application.RunMainLoopIteration* - name: RunMainLoopIteration - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_RunMainLoopIteration_ - commentId: Overload:Terminal.Gui.Application.RunMainLoopIteration - isSpec: "True" - fullName: Terminal.Gui.Application.RunMainLoopIteration - nameWithType: Application.RunMainLoopIteration -- uid: Terminal.Gui.Application.RunState - name: Application.RunState - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html - commentId: T:Terminal.Gui.Application.RunState - fullName: Terminal.Gui.Application.RunState - nameWithType: Application.RunState -- uid: Terminal.Gui.Application.RunState.#ctor(Terminal.Gui.Toplevel) - name: RunState(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState__ctor_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.Application.RunState.#ctor(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.Application.RunState.RunState(Terminal.Gui.Toplevel) - nameWithType: Application.RunState.RunState(Toplevel) -- uid: Terminal.Gui.Application.RunState.#ctor* - name: RunState - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState__ctor_ - commentId: Overload:Terminal.Gui.Application.RunState.#ctor - isSpec: "True" - fullName: Terminal.Gui.Application.RunState.RunState - nameWithType: Application.RunState.RunState -- uid: Terminal.Gui.Application.RunState.Dispose - name: Dispose() - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState_Dispose - commentId: M:Terminal.Gui.Application.RunState.Dispose - fullName: Terminal.Gui.Application.RunState.Dispose() - nameWithType: Application.RunState.Dispose() -- uid: Terminal.Gui.Application.RunState.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState_Dispose_System_Boolean_ - commentId: M:Terminal.Gui.Application.RunState.Dispose(System.Boolean) - fullName: Terminal.Gui.Application.RunState.Dispose(System.Boolean) - nameWithType: Application.RunState.Dispose(Boolean) -- uid: Terminal.Gui.Application.RunState.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState_Dispose_ - commentId: Overload:Terminal.Gui.Application.RunState.Dispose - isSpec: "True" - fullName: Terminal.Gui.Application.RunState.Dispose - nameWithType: Application.RunState.Dispose -- uid: Terminal.Gui.Application.RunState.Toplevel - name: Toplevel - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState_Toplevel - commentId: P:Terminal.Gui.Application.RunState.Toplevel - fullName: Terminal.Gui.Application.RunState.Toplevel - nameWithType: Application.RunState.Toplevel -- uid: Terminal.Gui.Application.RunState.Toplevel* - name: Toplevel - href: api/Terminal.Gui/Terminal.Gui.Application.RunState.html#Terminal_Gui_Application_RunState_Toplevel_ - commentId: Overload:Terminal.Gui.Application.RunState.Toplevel - isSpec: "True" - fullName: Terminal.Gui.Application.RunState.Toplevel - nameWithType: Application.RunState.Toplevel -- uid: Terminal.Gui.Application.Shutdown - name: Shutdown() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Shutdown - commentId: M:Terminal.Gui.Application.Shutdown - fullName: Terminal.Gui.Application.Shutdown() - nameWithType: Application.Shutdown() -- uid: Terminal.Gui.Application.Shutdown* - name: Shutdown - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Shutdown_ - commentId: Overload:Terminal.Gui.Application.Shutdown - isSpec: "True" - fullName: Terminal.Gui.Application.Shutdown - nameWithType: Application.Shutdown -- uid: Terminal.Gui.Application.SupportedCultures - name: SupportedCultures - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_SupportedCultures - commentId: P:Terminal.Gui.Application.SupportedCultures - fullName: Terminal.Gui.Application.SupportedCultures - nameWithType: Application.SupportedCultures -- uid: Terminal.Gui.Application.SupportedCultures* - name: SupportedCultures - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_SupportedCultures_ - commentId: Overload:Terminal.Gui.Application.SupportedCultures - isSpec: "True" - fullName: Terminal.Gui.Application.SupportedCultures - nameWithType: Application.SupportedCultures -- uid: Terminal.Gui.Application.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Top - commentId: P:Terminal.Gui.Application.Top - fullName: Terminal.Gui.Application.Top - nameWithType: Application.Top -- uid: Terminal.Gui.Application.Top* - name: Top - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Top_ - commentId: Overload:Terminal.Gui.Application.Top - isSpec: "True" - fullName: Terminal.Gui.Application.Top - nameWithType: Application.Top -- uid: Terminal.Gui.Application.UngrabMouse - name: UngrabMouse() - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_UngrabMouse - commentId: M:Terminal.Gui.Application.UngrabMouse - fullName: Terminal.Gui.Application.UngrabMouse() - nameWithType: Application.UngrabMouse() -- uid: Terminal.Gui.Application.UngrabMouse* - name: UngrabMouse - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_UngrabMouse_ - commentId: Overload:Terminal.Gui.Application.UngrabMouse - isSpec: "True" - fullName: Terminal.Gui.Application.UngrabMouse - nameWithType: Application.UngrabMouse -- uid: Terminal.Gui.Application.UseSystemConsole - name: UseSystemConsole - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_UseSystemConsole - commentId: F:Terminal.Gui.Application.UseSystemConsole - fullName: Terminal.Gui.Application.UseSystemConsole - nameWithType: Application.UseSystemConsole -- uid: Terminal.Gui.Application.WantContinuousButtonPressedView - name: WantContinuousButtonPressedView - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_WantContinuousButtonPressedView - commentId: P:Terminal.Gui.Application.WantContinuousButtonPressedView - fullName: Terminal.Gui.Application.WantContinuousButtonPressedView - nameWithType: Application.WantContinuousButtonPressedView -- uid: Terminal.Gui.Application.WantContinuousButtonPressedView* - name: WantContinuousButtonPressedView - href: api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_WantContinuousButtonPressedView_ - commentId: Overload:Terminal.Gui.Application.WantContinuousButtonPressedView - isSpec: "True" - fullName: Terminal.Gui.Application.WantContinuousButtonPressedView - nameWithType: Application.WantContinuousButtonPressedView -- uid: Terminal.Gui.Attribute - name: Attribute - href: api/Terminal.Gui/Terminal.Gui.Attribute.html - commentId: T:Terminal.Gui.Attribute - fullName: Terminal.Gui.Attribute - nameWithType: Attribute -- uid: Terminal.Gui.Attribute.#ctor(System.Int32) - name: Attribute(Int32) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute__ctor_System_Int32_ - commentId: M:Terminal.Gui.Attribute.#ctor(System.Int32) - fullName: Terminal.Gui.Attribute.Attribute(System.Int32) - nameWithType: Attribute.Attribute(Int32) -- uid: Terminal.Gui.Attribute.#ctor(System.Int32,Terminal.Gui.Color,Terminal.Gui.Color) - name: Attribute(Int32, Color, Color) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute__ctor_System_Int32_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.Attribute.#ctor(System.Int32,Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.Attribute.Attribute(System.Int32, Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: Attribute.Attribute(Int32, Color, Color) -- uid: Terminal.Gui.Attribute.#ctor(Terminal.Gui.Color) - name: Attribute(Color) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute__ctor_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.Attribute.#ctor(Terminal.Gui.Color) - fullName: Terminal.Gui.Attribute.Attribute(Terminal.Gui.Color) - nameWithType: Attribute.Attribute(Color) -- uid: Terminal.Gui.Attribute.#ctor(Terminal.Gui.Color,Terminal.Gui.Color) - name: Attribute(Color, Color) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute__ctor_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.Attribute.#ctor(Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.Attribute.Attribute(Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: Attribute.Attribute(Color, Color) -- uid: Terminal.Gui.Attribute.#ctor* - name: Attribute - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute__ctor_ - commentId: Overload:Terminal.Gui.Attribute.#ctor - isSpec: "True" - fullName: Terminal.Gui.Attribute.Attribute - nameWithType: Attribute.Attribute -- uid: Terminal.Gui.Attribute.Background - name: Background - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Background - commentId: P:Terminal.Gui.Attribute.Background - fullName: Terminal.Gui.Attribute.Background - nameWithType: Attribute.Background -- uid: Terminal.Gui.Attribute.Background* - name: Background - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Background_ - commentId: Overload:Terminal.Gui.Attribute.Background - isSpec: "True" - fullName: Terminal.Gui.Attribute.Background - nameWithType: Attribute.Background -- uid: Terminal.Gui.Attribute.Foreground - name: Foreground - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Foreground - commentId: P:Terminal.Gui.Attribute.Foreground - fullName: Terminal.Gui.Attribute.Foreground - nameWithType: Attribute.Foreground -- uid: Terminal.Gui.Attribute.Foreground* - name: Foreground - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Foreground_ - commentId: Overload:Terminal.Gui.Attribute.Foreground - isSpec: "True" - fullName: Terminal.Gui.Attribute.Foreground - nameWithType: Attribute.Foreground -- uid: Terminal.Gui.Attribute.Get - name: Get() - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Get - commentId: M:Terminal.Gui.Attribute.Get - fullName: Terminal.Gui.Attribute.Get() - nameWithType: Attribute.Get() -- uid: Terminal.Gui.Attribute.Get* - name: Get - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Get_ - commentId: Overload:Terminal.Gui.Attribute.Get - isSpec: "True" - fullName: Terminal.Gui.Attribute.Get - nameWithType: Attribute.Get -- uid: Terminal.Gui.Attribute.Make(Terminal.Gui.Color,Terminal.Gui.Color) - name: Make(Color, Color) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Make_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.Attribute.Make(Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.Attribute.Make(Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: Attribute.Make(Color, Color) -- uid: Terminal.Gui.Attribute.Make* - name: Make - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Make_ - commentId: Overload:Terminal.Gui.Attribute.Make - isSpec: "True" - fullName: Terminal.Gui.Attribute.Make - nameWithType: Attribute.Make -- uid: Terminal.Gui.Attribute.op_Implicit(System.Int32)~Terminal.Gui.Attribute - name: Implicit(Int32 to Attribute) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_op_Implicit_System_Int32__Terminal_Gui_Attribute - commentId: M:Terminal.Gui.Attribute.op_Implicit(System.Int32)~Terminal.Gui.Attribute - name.vb: Widening(Int32 to Attribute) - fullName: Terminal.Gui.Attribute.Implicit(System.Int32 to Terminal.Gui.Attribute) - fullName.vb: Terminal.Gui.Attribute.Widening(System.Int32 to Terminal.Gui.Attribute) - nameWithType: Attribute.Implicit(Int32 to Attribute) - nameWithType.vb: Attribute.Widening(Int32 to Attribute) -- uid: Terminal.Gui.Attribute.op_Implicit(Terminal.Gui.Attribute)~System.Int32 - name: Implicit(Attribute to Int32) - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_op_Implicit_Terminal_Gui_Attribute__System_Int32 - commentId: M:Terminal.Gui.Attribute.op_Implicit(Terminal.Gui.Attribute)~System.Int32 - name.vb: Widening(Attribute to Int32) - fullName: Terminal.Gui.Attribute.Implicit(Terminal.Gui.Attribute to System.Int32) - fullName.vb: Terminal.Gui.Attribute.Widening(Terminal.Gui.Attribute to System.Int32) - nameWithType: Attribute.Implicit(Attribute to Int32) - nameWithType.vb: Attribute.Widening(Attribute to Int32) -- uid: Terminal.Gui.Attribute.op_Implicit* - name: Implicit - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_op_Implicit_ - commentId: Overload:Terminal.Gui.Attribute.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: Terminal.Gui.Attribute.Implicit - fullName.vb: Terminal.Gui.Attribute.Widening - nameWithType: Attribute.Implicit - nameWithType.vb: Attribute.Widening -- uid: Terminal.Gui.Attribute.Value - name: Value - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Value - commentId: P:Terminal.Gui.Attribute.Value - fullName: Terminal.Gui.Attribute.Value - nameWithType: Attribute.Value -- uid: Terminal.Gui.Attribute.Value* - name: Value - href: api/Terminal.Gui/Terminal.Gui.Attribute.html#Terminal_Gui_Attribute_Value_ - commentId: Overload:Terminal.Gui.Attribute.Value - isSpec: "True" - fullName: Terminal.Gui.Attribute.Value - nameWithType: Attribute.Value -- uid: Terminal.Gui.Autocomplete - name: Autocomplete - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html - commentId: T:Terminal.Gui.Autocomplete - fullName: Terminal.Gui.Autocomplete - nameWithType: Autocomplete -- uid: Terminal.Gui.Autocomplete.AllSuggestions - name: AllSuggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_AllSuggestions - commentId: P:Terminal.Gui.Autocomplete.AllSuggestions - fullName: Terminal.Gui.Autocomplete.AllSuggestions - nameWithType: Autocomplete.AllSuggestions -- uid: Terminal.Gui.Autocomplete.AllSuggestions* - name: AllSuggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_AllSuggestions_ - commentId: Overload:Terminal.Gui.Autocomplete.AllSuggestions - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.AllSuggestions - nameWithType: Autocomplete.AllSuggestions -- uid: Terminal.Gui.Autocomplete.ClearSuggestions - name: ClearSuggestions() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ClearSuggestions - commentId: M:Terminal.Gui.Autocomplete.ClearSuggestions - fullName: Terminal.Gui.Autocomplete.ClearSuggestions() - nameWithType: Autocomplete.ClearSuggestions() -- uid: Terminal.Gui.Autocomplete.ClearSuggestions* - name: ClearSuggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ClearSuggestions_ - commentId: Overload:Terminal.Gui.Autocomplete.ClearSuggestions - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.ClearSuggestions - nameWithType: Autocomplete.ClearSuggestions -- uid: Terminal.Gui.Autocomplete.Close - name: Close() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Close - commentId: M:Terminal.Gui.Autocomplete.Close - fullName: Terminal.Gui.Autocomplete.Close() - nameWithType: Autocomplete.Close() -- uid: Terminal.Gui.Autocomplete.Close* - name: Close - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Close_ - commentId: Overload:Terminal.Gui.Autocomplete.Close - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.Close - nameWithType: Autocomplete.Close -- uid: Terminal.Gui.Autocomplete.CloseKey - name: CloseKey - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_CloseKey - commentId: P:Terminal.Gui.Autocomplete.CloseKey - fullName: Terminal.Gui.Autocomplete.CloseKey - nameWithType: Autocomplete.CloseKey -- uid: Terminal.Gui.Autocomplete.CloseKey* - name: CloseKey - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_CloseKey_ - commentId: Overload:Terminal.Gui.Autocomplete.CloseKey - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.CloseKey - nameWithType: Autocomplete.CloseKey -- uid: Terminal.Gui.Autocomplete.ColorScheme - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ColorScheme - commentId: P:Terminal.Gui.Autocomplete.ColorScheme - fullName: Terminal.Gui.Autocomplete.ColorScheme - nameWithType: Autocomplete.ColorScheme -- uid: Terminal.Gui.Autocomplete.ColorScheme* - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ColorScheme_ - commentId: Overload:Terminal.Gui.Autocomplete.ColorScheme - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.ColorScheme - nameWithType: Autocomplete.ColorScheme -- uid: Terminal.Gui.Autocomplete.DeleteTextBackwards - name: DeleteTextBackwards() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_DeleteTextBackwards - commentId: M:Terminal.Gui.Autocomplete.DeleteTextBackwards - fullName: Terminal.Gui.Autocomplete.DeleteTextBackwards() - nameWithType: Autocomplete.DeleteTextBackwards() -- uid: Terminal.Gui.Autocomplete.DeleteTextBackwards* - name: DeleteTextBackwards - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_DeleteTextBackwards_ - commentId: Overload:Terminal.Gui.Autocomplete.DeleteTextBackwards - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.DeleteTextBackwards - nameWithType: Autocomplete.DeleteTextBackwards -- uid: Terminal.Gui.Autocomplete.EnsureSelectedIdxIsValid - name: EnsureSelectedIdxIsValid() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_EnsureSelectedIdxIsValid - commentId: M:Terminal.Gui.Autocomplete.EnsureSelectedIdxIsValid - fullName: Terminal.Gui.Autocomplete.EnsureSelectedIdxIsValid() - nameWithType: Autocomplete.EnsureSelectedIdxIsValid() -- uid: Terminal.Gui.Autocomplete.EnsureSelectedIdxIsValid* - name: EnsureSelectedIdxIsValid - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_EnsureSelectedIdxIsValid_ - commentId: Overload:Terminal.Gui.Autocomplete.EnsureSelectedIdxIsValid - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.EnsureSelectedIdxIsValid - nameWithType: Autocomplete.EnsureSelectedIdxIsValid -- uid: Terminal.Gui.Autocomplete.GenerateSuggestions - name: GenerateSuggestions() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_GenerateSuggestions - commentId: M:Terminal.Gui.Autocomplete.GenerateSuggestions - fullName: Terminal.Gui.Autocomplete.GenerateSuggestions() - nameWithType: Autocomplete.GenerateSuggestions() -- uid: Terminal.Gui.Autocomplete.GenerateSuggestions* - name: GenerateSuggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_GenerateSuggestions_ - commentId: Overload:Terminal.Gui.Autocomplete.GenerateSuggestions - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.GenerateSuggestions - nameWithType: Autocomplete.GenerateSuggestions -- uid: Terminal.Gui.Autocomplete.GetCurrentWord - name: GetCurrentWord() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_GetCurrentWord - commentId: M:Terminal.Gui.Autocomplete.GetCurrentWord - fullName: Terminal.Gui.Autocomplete.GetCurrentWord() - nameWithType: Autocomplete.GetCurrentWord() -- uid: Terminal.Gui.Autocomplete.GetCurrentWord* - name: GetCurrentWord - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_GetCurrentWord_ - commentId: Overload:Terminal.Gui.Autocomplete.GetCurrentWord - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.GetCurrentWord - nameWithType: Autocomplete.GetCurrentWord -- uid: Terminal.Gui.Autocomplete.HostControl - name: HostControl - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_HostControl - commentId: P:Terminal.Gui.Autocomplete.HostControl - fullName: Terminal.Gui.Autocomplete.HostControl - nameWithType: Autocomplete.HostControl -- uid: Terminal.Gui.Autocomplete.HostControl* - name: HostControl - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_HostControl_ - commentId: Overload:Terminal.Gui.Autocomplete.HostControl - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.HostControl - nameWithType: Autocomplete.HostControl -- uid: Terminal.Gui.Autocomplete.IdxToWord(System.Collections.Generic.List{System.Rune},System.Int32) - name: IdxToWord(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_IdxToWord_System_Collections_Generic_List_System_Rune__System_Int32_ - commentId: M:Terminal.Gui.Autocomplete.IdxToWord(System.Collections.Generic.List{System.Rune},System.Int32) - name.vb: IdxToWord(List(Of Rune), Int32) - fullName: Terminal.Gui.Autocomplete.IdxToWord(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.Autocomplete.IdxToWord(System.Collections.Generic.List(Of System.Rune), System.Int32) - nameWithType: Autocomplete.IdxToWord(List, Int32) - nameWithType.vb: Autocomplete.IdxToWord(List(Of Rune), Int32) -- uid: Terminal.Gui.Autocomplete.IdxToWord* - name: IdxToWord - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_IdxToWord_ - commentId: Overload:Terminal.Gui.Autocomplete.IdxToWord - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.IdxToWord - nameWithType: Autocomplete.IdxToWord -- uid: Terminal.Gui.Autocomplete.InsertSelection(System.String) - name: InsertSelection(String) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_InsertSelection_System_String_ - commentId: M:Terminal.Gui.Autocomplete.InsertSelection(System.String) - fullName: Terminal.Gui.Autocomplete.InsertSelection(System.String) - nameWithType: Autocomplete.InsertSelection(String) -- uid: Terminal.Gui.Autocomplete.InsertSelection* - name: InsertSelection - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_InsertSelection_ - commentId: Overload:Terminal.Gui.Autocomplete.InsertSelection - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.InsertSelection - nameWithType: Autocomplete.InsertSelection -- uid: Terminal.Gui.Autocomplete.InsertText(System.String) - name: InsertText(String) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_InsertText_System_String_ - commentId: M:Terminal.Gui.Autocomplete.InsertText(System.String) - fullName: Terminal.Gui.Autocomplete.InsertText(System.String) - nameWithType: Autocomplete.InsertText(String) -- uid: Terminal.Gui.Autocomplete.InsertText* - name: InsertText - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_InsertText_ - commentId: Overload:Terminal.Gui.Autocomplete.InsertText - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.InsertText - nameWithType: Autocomplete.InsertText -- uid: Terminal.Gui.Autocomplete.IsWordChar(System.Rune) - name: IsWordChar(Rune) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_IsWordChar_System_Rune_ - commentId: M:Terminal.Gui.Autocomplete.IsWordChar(System.Rune) - fullName: Terminal.Gui.Autocomplete.IsWordChar(System.Rune) - nameWithType: Autocomplete.IsWordChar(Rune) -- uid: Terminal.Gui.Autocomplete.IsWordChar* - name: IsWordChar - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_IsWordChar_ - commentId: Overload:Terminal.Gui.Autocomplete.IsWordChar - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.IsWordChar - nameWithType: Autocomplete.IsWordChar -- uid: Terminal.Gui.Autocomplete.MaxHeight - name: MaxHeight - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MaxHeight - commentId: P:Terminal.Gui.Autocomplete.MaxHeight - fullName: Terminal.Gui.Autocomplete.MaxHeight - nameWithType: Autocomplete.MaxHeight -- uid: Terminal.Gui.Autocomplete.MaxHeight* - name: MaxHeight - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MaxHeight_ - commentId: Overload:Terminal.Gui.Autocomplete.MaxHeight - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.MaxHeight - nameWithType: Autocomplete.MaxHeight -- uid: Terminal.Gui.Autocomplete.MaxWidth - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MaxWidth - commentId: P:Terminal.Gui.Autocomplete.MaxWidth - fullName: Terminal.Gui.Autocomplete.MaxWidth - nameWithType: Autocomplete.MaxWidth -- uid: Terminal.Gui.Autocomplete.MaxWidth* - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MaxWidth_ - commentId: Overload:Terminal.Gui.Autocomplete.MaxWidth - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.MaxWidth - nameWithType: Autocomplete.MaxWidth -- uid: Terminal.Gui.Autocomplete.MouseEvent(Terminal.Gui.MouseEvent,System.Boolean) - name: MouseEvent(MouseEvent, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MouseEvent_Terminal_Gui_MouseEvent_System_Boolean_ - commentId: M:Terminal.Gui.Autocomplete.MouseEvent(Terminal.Gui.MouseEvent,System.Boolean) - fullName: Terminal.Gui.Autocomplete.MouseEvent(Terminal.Gui.MouseEvent, System.Boolean) - nameWithType: Autocomplete.MouseEvent(MouseEvent, Boolean) -- uid: Terminal.Gui.Autocomplete.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MouseEvent_ - commentId: Overload:Terminal.Gui.Autocomplete.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.MouseEvent - nameWithType: Autocomplete.MouseEvent -- uid: Terminal.Gui.Autocomplete.MoveDown - name: MoveDown() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MoveDown - commentId: M:Terminal.Gui.Autocomplete.MoveDown - fullName: Terminal.Gui.Autocomplete.MoveDown() - nameWithType: Autocomplete.MoveDown() -- uid: Terminal.Gui.Autocomplete.MoveDown* - name: MoveDown - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MoveDown_ - commentId: Overload:Terminal.Gui.Autocomplete.MoveDown - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.MoveDown - nameWithType: Autocomplete.MoveDown -- uid: Terminal.Gui.Autocomplete.MoveUp - name: MoveUp() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MoveUp - commentId: M:Terminal.Gui.Autocomplete.MoveUp - fullName: Terminal.Gui.Autocomplete.MoveUp() - nameWithType: Autocomplete.MoveUp() -- uid: Terminal.Gui.Autocomplete.MoveUp* - name: MoveUp - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_MoveUp_ - commentId: Overload:Terminal.Gui.Autocomplete.MoveUp - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.MoveUp - nameWithType: Autocomplete.MoveUp -- uid: Terminal.Gui.Autocomplete.PopupInsideContainer - name: PopupInsideContainer - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_PopupInsideContainer - commentId: P:Terminal.Gui.Autocomplete.PopupInsideContainer - fullName: Terminal.Gui.Autocomplete.PopupInsideContainer - nameWithType: Autocomplete.PopupInsideContainer -- uid: Terminal.Gui.Autocomplete.PopupInsideContainer* - name: PopupInsideContainer - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_PopupInsideContainer_ - commentId: Overload:Terminal.Gui.Autocomplete.PopupInsideContainer - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.PopupInsideContainer - nameWithType: Autocomplete.PopupInsideContainer -- uid: Terminal.Gui.Autocomplete.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Autocomplete.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Autocomplete.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: Autocomplete.ProcessKey(KeyEvent) -- uid: Terminal.Gui.Autocomplete.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ProcessKey_ - commentId: Overload:Terminal.Gui.Autocomplete.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.ProcessKey - nameWithType: Autocomplete.ProcessKey -- uid: Terminal.Gui.Autocomplete.RenderOverlay(Terminal.Gui.Point) - name: RenderOverlay(Point) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_RenderOverlay_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Autocomplete.RenderOverlay(Terminal.Gui.Point) - fullName: Terminal.Gui.Autocomplete.RenderOverlay(Terminal.Gui.Point) - nameWithType: Autocomplete.RenderOverlay(Point) -- uid: Terminal.Gui.Autocomplete.RenderOverlay* - name: RenderOverlay - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_RenderOverlay_ - commentId: Overload:Terminal.Gui.Autocomplete.RenderOverlay - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.RenderOverlay - nameWithType: Autocomplete.RenderOverlay -- uid: Terminal.Gui.Autocomplete.RenderSelectedIdxByMouse(Terminal.Gui.MouseEvent) - name: RenderSelectedIdxByMouse(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_RenderSelectedIdxByMouse_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Autocomplete.RenderSelectedIdxByMouse(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Autocomplete.RenderSelectedIdxByMouse(Terminal.Gui.MouseEvent) - nameWithType: Autocomplete.RenderSelectedIdxByMouse(MouseEvent) -- uid: Terminal.Gui.Autocomplete.RenderSelectedIdxByMouse* - name: RenderSelectedIdxByMouse - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_RenderSelectedIdxByMouse_ - commentId: Overload:Terminal.Gui.Autocomplete.RenderSelectedIdxByMouse - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.RenderSelectedIdxByMouse - nameWithType: Autocomplete.RenderSelectedIdxByMouse -- uid: Terminal.Gui.Autocomplete.Reopen - name: Reopen - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Reopen - commentId: P:Terminal.Gui.Autocomplete.Reopen - fullName: Terminal.Gui.Autocomplete.Reopen - nameWithType: Autocomplete.Reopen -- uid: Terminal.Gui.Autocomplete.Reopen* - name: Reopen - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Reopen_ - commentId: Overload:Terminal.Gui.Autocomplete.Reopen - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.Reopen - nameWithType: Autocomplete.Reopen -- uid: Terminal.Gui.Autocomplete.ReopenSuggestions - name: ReopenSuggestions() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ReopenSuggestions - commentId: M:Terminal.Gui.Autocomplete.ReopenSuggestions - fullName: Terminal.Gui.Autocomplete.ReopenSuggestions() - nameWithType: Autocomplete.ReopenSuggestions() -- uid: Terminal.Gui.Autocomplete.ReopenSuggestions* - name: ReopenSuggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ReopenSuggestions_ - commentId: Overload:Terminal.Gui.Autocomplete.ReopenSuggestions - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.ReopenSuggestions - nameWithType: Autocomplete.ReopenSuggestions -- uid: Terminal.Gui.Autocomplete.ScrollOffset - name: ScrollOffset - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ScrollOffset - commentId: P:Terminal.Gui.Autocomplete.ScrollOffset - fullName: Terminal.Gui.Autocomplete.ScrollOffset - nameWithType: Autocomplete.ScrollOffset -- uid: Terminal.Gui.Autocomplete.ScrollOffset* - name: ScrollOffset - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_ScrollOffset_ - commentId: Overload:Terminal.Gui.Autocomplete.ScrollOffset - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.ScrollOffset - nameWithType: Autocomplete.ScrollOffset -- uid: Terminal.Gui.Autocomplete.Select - name: Select() - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Select - commentId: M:Terminal.Gui.Autocomplete.Select - fullName: Terminal.Gui.Autocomplete.Select() - nameWithType: Autocomplete.Select() -- uid: Terminal.Gui.Autocomplete.Select* - name: Select - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Select_ - commentId: Overload:Terminal.Gui.Autocomplete.Select - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.Select - nameWithType: Autocomplete.Select -- uid: Terminal.Gui.Autocomplete.SelectedIdx - name: SelectedIdx - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_SelectedIdx - commentId: P:Terminal.Gui.Autocomplete.SelectedIdx - fullName: Terminal.Gui.Autocomplete.SelectedIdx - nameWithType: Autocomplete.SelectedIdx -- uid: Terminal.Gui.Autocomplete.SelectedIdx* - name: SelectedIdx - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_SelectedIdx_ - commentId: Overload:Terminal.Gui.Autocomplete.SelectedIdx - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.SelectedIdx - nameWithType: Autocomplete.SelectedIdx -- uid: Terminal.Gui.Autocomplete.SelectionKey - name: SelectionKey - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_SelectionKey - commentId: P:Terminal.Gui.Autocomplete.SelectionKey - fullName: Terminal.Gui.Autocomplete.SelectionKey - nameWithType: Autocomplete.SelectionKey -- uid: Terminal.Gui.Autocomplete.SelectionKey* - name: SelectionKey - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_SelectionKey_ - commentId: Overload:Terminal.Gui.Autocomplete.SelectionKey - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.SelectionKey - nameWithType: Autocomplete.SelectionKey -- uid: Terminal.Gui.Autocomplete.Suggestions - name: Suggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Suggestions - commentId: P:Terminal.Gui.Autocomplete.Suggestions - fullName: Terminal.Gui.Autocomplete.Suggestions - nameWithType: Autocomplete.Suggestions -- uid: Terminal.Gui.Autocomplete.Suggestions* - name: Suggestions - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Suggestions_ - commentId: Overload:Terminal.Gui.Autocomplete.Suggestions - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.Suggestions - nameWithType: Autocomplete.Suggestions -- uid: Terminal.Gui.Autocomplete.Visible - name: Visible - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Visible - commentId: P:Terminal.Gui.Autocomplete.Visible - fullName: Terminal.Gui.Autocomplete.Visible - nameWithType: Autocomplete.Visible -- uid: Terminal.Gui.Autocomplete.Visible* - name: Visible - href: api/Terminal.Gui/Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_Visible_ - commentId: Overload:Terminal.Gui.Autocomplete.Visible - isSpec: "True" - fullName: Terminal.Gui.Autocomplete.Visible - nameWithType: Autocomplete.Visible -- uid: Terminal.Gui.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.Border.html - commentId: T:Terminal.Gui.Border - fullName: Terminal.Gui.Border - nameWithType: Border -- uid: Terminal.Gui.Border.ActualHeight - name: ActualHeight - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_ActualHeight - commentId: P:Terminal.Gui.Border.ActualHeight - fullName: Terminal.Gui.Border.ActualHeight - nameWithType: Border.ActualHeight -- uid: Terminal.Gui.Border.ActualHeight* - name: ActualHeight - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_ActualHeight_ - commentId: Overload:Terminal.Gui.Border.ActualHeight - isSpec: "True" - fullName: Terminal.Gui.Border.ActualHeight - nameWithType: Border.ActualHeight -- uid: Terminal.Gui.Border.ActualWidth - name: ActualWidth - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_ActualWidth - commentId: P:Terminal.Gui.Border.ActualWidth - fullName: Terminal.Gui.Border.ActualWidth - nameWithType: Border.ActualWidth -- uid: Terminal.Gui.Border.ActualWidth* - name: ActualWidth - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_ActualWidth_ - commentId: Overload:Terminal.Gui.Border.ActualWidth - isSpec: "True" - fullName: Terminal.Gui.Border.ActualWidth - nameWithType: Border.ActualWidth -- uid: Terminal.Gui.Border.Background - name: Background - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Background - commentId: P:Terminal.Gui.Border.Background - fullName: Terminal.Gui.Border.Background - nameWithType: Border.Background -- uid: Terminal.Gui.Border.Background* - name: Background - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Background_ - commentId: Overload:Terminal.Gui.Border.Background - isSpec: "True" - fullName: Terminal.Gui.Border.Background - nameWithType: Border.Background -- uid: Terminal.Gui.Border.BorderBrush - name: BorderBrush - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderBrush - commentId: P:Terminal.Gui.Border.BorderBrush - fullName: Terminal.Gui.Border.BorderBrush - nameWithType: Border.BorderBrush -- uid: Terminal.Gui.Border.BorderBrush* - name: BorderBrush - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderBrush_ - commentId: Overload:Terminal.Gui.Border.BorderBrush - isSpec: "True" - fullName: Terminal.Gui.Border.BorderBrush - nameWithType: Border.BorderBrush -- uid: Terminal.Gui.Border.BorderChanged - name: BorderChanged - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderChanged - commentId: E:Terminal.Gui.Border.BorderChanged - fullName: Terminal.Gui.Border.BorderChanged - nameWithType: Border.BorderChanged -- uid: Terminal.Gui.Border.BorderStyle - name: BorderStyle - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderStyle - commentId: P:Terminal.Gui.Border.BorderStyle - fullName: Terminal.Gui.Border.BorderStyle - nameWithType: Border.BorderStyle -- uid: Terminal.Gui.Border.BorderStyle* - name: BorderStyle - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderStyle_ - commentId: Overload:Terminal.Gui.Border.BorderStyle - isSpec: "True" - fullName: Terminal.Gui.Border.BorderStyle - nameWithType: Border.BorderStyle -- uid: Terminal.Gui.Border.BorderThickness - name: BorderThickness - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderThickness - commentId: P:Terminal.Gui.Border.BorderThickness - fullName: Terminal.Gui.Border.BorderThickness - nameWithType: Border.BorderThickness -- uid: Terminal.Gui.Border.BorderThickness* - name: BorderThickness - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_BorderThickness_ - commentId: Overload:Terminal.Gui.Border.BorderThickness - isSpec: "True" - fullName: Terminal.Gui.Border.BorderThickness - nameWithType: Border.BorderThickness -- uid: Terminal.Gui.Border.Child - name: Child - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Child - commentId: P:Terminal.Gui.Border.Child - fullName: Terminal.Gui.Border.Child - nameWithType: Border.Child -- uid: Terminal.Gui.Border.Child* - name: Child - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Child_ - commentId: Overload:Terminal.Gui.Border.Child - isSpec: "True" - fullName: Terminal.Gui.Border.Child - nameWithType: Border.Child -- uid: Terminal.Gui.Border.ChildContainer - name: ChildContainer - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_ChildContainer - commentId: P:Terminal.Gui.Border.ChildContainer - fullName: Terminal.Gui.Border.ChildContainer - nameWithType: Border.ChildContainer -- uid: Terminal.Gui.Border.ChildContainer* - name: ChildContainer - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_ChildContainer_ - commentId: Overload:Terminal.Gui.Border.ChildContainer - isSpec: "True" - fullName: Terminal.Gui.Border.ChildContainer - nameWithType: Border.ChildContainer -- uid: Terminal.Gui.Border.DrawContent(Terminal.Gui.View,System.Boolean) - name: DrawContent(View, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawContent_Terminal_Gui_View_System_Boolean_ - commentId: M:Terminal.Gui.Border.DrawContent(Terminal.Gui.View,System.Boolean) - fullName: Terminal.Gui.Border.DrawContent(Terminal.Gui.View, System.Boolean) - nameWithType: Border.DrawContent(View, Boolean) -- uid: Terminal.Gui.Border.DrawContent* - name: DrawContent - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawContent_ - commentId: Overload:Terminal.Gui.Border.DrawContent - isSpec: "True" - fullName: Terminal.Gui.Border.DrawContent - nameWithType: Border.DrawContent -- uid: Terminal.Gui.Border.DrawFullContent - name: DrawFullContent() - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawFullContent - commentId: M:Terminal.Gui.Border.DrawFullContent - fullName: Terminal.Gui.Border.DrawFullContent() - nameWithType: Border.DrawFullContent() -- uid: Terminal.Gui.Border.DrawFullContent* - name: DrawFullContent - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawFullContent_ - commentId: Overload:Terminal.Gui.Border.DrawFullContent - isSpec: "True" - fullName: Terminal.Gui.Border.DrawFullContent - nameWithType: Border.DrawFullContent -- uid: Terminal.Gui.Border.DrawMarginFrame - name: DrawMarginFrame - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawMarginFrame - commentId: P:Terminal.Gui.Border.DrawMarginFrame - fullName: Terminal.Gui.Border.DrawMarginFrame - nameWithType: Border.DrawMarginFrame -- uid: Terminal.Gui.Border.DrawMarginFrame* - name: DrawMarginFrame - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawMarginFrame_ - commentId: Overload:Terminal.Gui.Border.DrawMarginFrame - isSpec: "True" - fullName: Terminal.Gui.Border.DrawMarginFrame - nameWithType: Border.DrawMarginFrame -- uid: Terminal.Gui.Border.DrawTitle(Terminal.Gui.View) - name: DrawTitle(View) - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawTitle_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Border.DrawTitle(Terminal.Gui.View) - fullName: Terminal.Gui.Border.DrawTitle(Terminal.Gui.View) - nameWithType: Border.DrawTitle(View) -- uid: Terminal.Gui.Border.DrawTitle(Terminal.Gui.View,Terminal.Gui.Rect) - name: DrawTitle(View, Rect) - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawTitle_Terminal_Gui_View_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Border.DrawTitle(Terminal.Gui.View,Terminal.Gui.Rect) - fullName: Terminal.Gui.Border.DrawTitle(Terminal.Gui.View, Terminal.Gui.Rect) - nameWithType: Border.DrawTitle(View, Rect) -- uid: Terminal.Gui.Border.DrawTitle* - name: DrawTitle - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_DrawTitle_ - commentId: Overload:Terminal.Gui.Border.DrawTitle - isSpec: "True" - fullName: Terminal.Gui.Border.DrawTitle - nameWithType: Border.DrawTitle -- uid: Terminal.Gui.Border.Effect3D - name: Effect3D - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Effect3D - commentId: P:Terminal.Gui.Border.Effect3D - fullName: Terminal.Gui.Border.Effect3D - nameWithType: Border.Effect3D -- uid: Terminal.Gui.Border.Effect3D* - name: Effect3D - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Effect3D_ - commentId: Overload:Terminal.Gui.Border.Effect3D - isSpec: "True" - fullName: Terminal.Gui.Border.Effect3D - nameWithType: Border.Effect3D -- uid: Terminal.Gui.Border.Effect3DBrush - name: Effect3DBrush - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Effect3DBrush - commentId: P:Terminal.Gui.Border.Effect3DBrush - fullName: Terminal.Gui.Border.Effect3DBrush - nameWithType: Border.Effect3DBrush -- uid: Terminal.Gui.Border.Effect3DBrush* - name: Effect3DBrush - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Effect3DBrush_ - commentId: Overload:Terminal.Gui.Border.Effect3DBrush - isSpec: "True" - fullName: Terminal.Gui.Border.Effect3DBrush - nameWithType: Border.Effect3DBrush -- uid: Terminal.Gui.Border.Effect3DOffset - name: Effect3DOffset - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Effect3DOffset - commentId: P:Terminal.Gui.Border.Effect3DOffset - fullName: Terminal.Gui.Border.Effect3DOffset - nameWithType: Border.Effect3DOffset -- uid: Terminal.Gui.Border.Effect3DOffset* - name: Effect3DOffset - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Effect3DOffset_ - commentId: Overload:Terminal.Gui.Border.Effect3DOffset - isSpec: "True" - fullName: Terminal.Gui.Border.Effect3DOffset - nameWithType: Border.Effect3DOffset -- uid: Terminal.Gui.Border.GetSumThickness - name: GetSumThickness() - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_GetSumThickness - commentId: M:Terminal.Gui.Border.GetSumThickness - fullName: Terminal.Gui.Border.GetSumThickness() - nameWithType: Border.GetSumThickness() -- uid: Terminal.Gui.Border.GetSumThickness* - name: GetSumThickness - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_GetSumThickness_ - commentId: Overload:Terminal.Gui.Border.GetSumThickness - isSpec: "True" - fullName: Terminal.Gui.Border.GetSumThickness - nameWithType: Border.GetSumThickness -- uid: Terminal.Gui.Border.OnBorderChanged - name: OnBorderChanged() - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_OnBorderChanged - commentId: M:Terminal.Gui.Border.OnBorderChanged - fullName: Terminal.Gui.Border.OnBorderChanged() - nameWithType: Border.OnBorderChanged() -- uid: Terminal.Gui.Border.OnBorderChanged* - name: OnBorderChanged - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_OnBorderChanged_ - commentId: Overload:Terminal.Gui.Border.OnBorderChanged - isSpec: "True" - fullName: Terminal.Gui.Border.OnBorderChanged - nameWithType: Border.OnBorderChanged -- uid: Terminal.Gui.Border.Padding - name: Padding - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Padding - commentId: P:Terminal.Gui.Border.Padding - fullName: Terminal.Gui.Border.Padding - nameWithType: Border.Padding -- uid: Terminal.Gui.Border.Padding* - name: Padding - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Padding_ - commentId: Overload:Terminal.Gui.Border.Padding - isSpec: "True" - fullName: Terminal.Gui.Border.Padding - nameWithType: Border.Padding -- uid: Terminal.Gui.Border.Parent - name: Parent - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Parent - commentId: P:Terminal.Gui.Border.Parent - fullName: Terminal.Gui.Border.Parent - nameWithType: Border.Parent -- uid: Terminal.Gui.Border.Parent* - name: Parent - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Parent_ - commentId: Overload:Terminal.Gui.Border.Parent - isSpec: "True" - fullName: Terminal.Gui.Border.Parent - nameWithType: Border.Parent -- uid: Terminal.Gui.Border.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Title - commentId: P:Terminal.Gui.Border.Title - fullName: Terminal.Gui.Border.Title - nameWithType: Border.Title -- uid: Terminal.Gui.Border.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.Border.html#Terminal_Gui_Border_Title_ - commentId: Overload:Terminal.Gui.Border.Title - isSpec: "True" - fullName: Terminal.Gui.Border.Title - nameWithType: Border.Title -- uid: Terminal.Gui.Border.ToplevelContainer - name: Border.ToplevelContainer - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html - commentId: T:Terminal.Gui.Border.ToplevelContainer - fullName: Terminal.Gui.Border.ToplevelContainer - nameWithType: Border.ToplevelContainer -- uid: Terminal.Gui.Border.ToplevelContainer.#ctor - name: ToplevelContainer() - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer__ctor - commentId: M:Terminal.Gui.Border.ToplevelContainer.#ctor - fullName: Terminal.Gui.Border.ToplevelContainer.ToplevelContainer() - nameWithType: Border.ToplevelContainer.ToplevelContainer() -- uid: Terminal.Gui.Border.ToplevelContainer.#ctor(Terminal.Gui.Border,System.String) - name: ToplevelContainer(Border, String) - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer__ctor_Terminal_Gui_Border_System_String_ - commentId: M:Terminal.Gui.Border.ToplevelContainer.#ctor(Terminal.Gui.Border,System.String) - fullName: Terminal.Gui.Border.ToplevelContainer.ToplevelContainer(Terminal.Gui.Border, System.String) - nameWithType: Border.ToplevelContainer.ToplevelContainer(Border, String) -- uid: Terminal.Gui.Border.ToplevelContainer.#ctor(Terminal.Gui.Rect,Terminal.Gui.Border,System.String) - name: ToplevelContainer(Rect, Border, String) - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer__ctor_Terminal_Gui_Rect_Terminal_Gui_Border_System_String_ - commentId: M:Terminal.Gui.Border.ToplevelContainer.#ctor(Terminal.Gui.Rect,Terminal.Gui.Border,System.String) - fullName: Terminal.Gui.Border.ToplevelContainer.ToplevelContainer(Terminal.Gui.Rect, Terminal.Gui.Border, System.String) - nameWithType: Border.ToplevelContainer.ToplevelContainer(Rect, Border, String) -- uid: Terminal.Gui.Border.ToplevelContainer.#ctor* - name: ToplevelContainer - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer__ctor_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.#ctor - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.ToplevelContainer - nameWithType: Border.ToplevelContainer.ToplevelContainer -- uid: Terminal.Gui.Border.ToplevelContainer.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Border.ToplevelContainer.Add(Terminal.Gui.View) - fullName: Terminal.Gui.Border.ToplevelContainer.Add(Terminal.Gui.View) - nameWithType: Border.ToplevelContainer.Add(View) -- uid: Terminal.Gui.Border.ToplevelContainer.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Add_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.Add - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.Add - nameWithType: Border.ToplevelContainer.Add -- uid: Terminal.Gui.Border.ToplevelContainer.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Border - commentId: P:Terminal.Gui.Border.ToplevelContainer.Border - fullName: Terminal.Gui.Border.ToplevelContainer.Border - nameWithType: Border.ToplevelContainer.Border -- uid: Terminal.Gui.Border.ToplevelContainer.Border* - name: Border - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Border_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.Border - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.Border - nameWithType: Border.ToplevelContainer.Border -- uid: Terminal.Gui.Border.ToplevelContainer.OnCanFocusChanged - name: OnCanFocusChanged() - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_OnCanFocusChanged - commentId: M:Terminal.Gui.Border.ToplevelContainer.OnCanFocusChanged - fullName: Terminal.Gui.Border.ToplevelContainer.OnCanFocusChanged() - nameWithType: Border.ToplevelContainer.OnCanFocusChanged() -- uid: Terminal.Gui.Border.ToplevelContainer.OnCanFocusChanged* - name: OnCanFocusChanged - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_OnCanFocusChanged_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.OnCanFocusChanged - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.OnCanFocusChanged - nameWithType: Border.ToplevelContainer.OnCanFocusChanged -- uid: Terminal.Gui.Border.ToplevelContainer.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Border.ToplevelContainer.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.Border.ToplevelContainer.Redraw(Terminal.Gui.Rect) - nameWithType: Border.ToplevelContainer.Redraw(Rect) -- uid: Terminal.Gui.Border.ToplevelContainer.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Redraw_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.Redraw - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.Redraw - nameWithType: Border.ToplevelContainer.Redraw -- uid: Terminal.Gui.Border.ToplevelContainer.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Border.ToplevelContainer.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.Border.ToplevelContainer.Remove(Terminal.Gui.View) - nameWithType: Border.ToplevelContainer.Remove(View) -- uid: Terminal.Gui.Border.ToplevelContainer.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_Remove_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.Remove - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.Remove - nameWithType: Border.ToplevelContainer.Remove -- uid: Terminal.Gui.Border.ToplevelContainer.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_RemoveAll - commentId: M:Terminal.Gui.Border.ToplevelContainer.RemoveAll - fullName: Terminal.Gui.Border.ToplevelContainer.RemoveAll() - nameWithType: Border.ToplevelContainer.RemoveAll() -- uid: Terminal.Gui.Border.ToplevelContainer.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html#Terminal_Gui_Border_ToplevelContainer_RemoveAll_ - commentId: Overload:Terminal.Gui.Border.ToplevelContainer.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.Border.ToplevelContainer.RemoveAll - nameWithType: Border.ToplevelContainer.RemoveAll -- uid: Terminal.Gui.BorderStyle - name: BorderStyle - href: api/Terminal.Gui/Terminal.Gui.BorderStyle.html - commentId: T:Terminal.Gui.BorderStyle - fullName: Terminal.Gui.BorderStyle - nameWithType: BorderStyle -- uid: Terminal.Gui.BorderStyle.Double - name: Double - href: api/Terminal.Gui/Terminal.Gui.BorderStyle.html#Terminal_Gui_BorderStyle_Double - commentId: F:Terminal.Gui.BorderStyle.Double - fullName: Terminal.Gui.BorderStyle.Double - nameWithType: BorderStyle.Double -- uid: Terminal.Gui.BorderStyle.None - name: None - href: api/Terminal.Gui/Terminal.Gui.BorderStyle.html#Terminal_Gui_BorderStyle_None - commentId: F:Terminal.Gui.BorderStyle.None - fullName: Terminal.Gui.BorderStyle.None - nameWithType: BorderStyle.None -- uid: Terminal.Gui.BorderStyle.Rounded - name: Rounded - href: api/Terminal.Gui/Terminal.Gui.BorderStyle.html#Terminal_Gui_BorderStyle_Rounded - commentId: F:Terminal.Gui.BorderStyle.Rounded - fullName: Terminal.Gui.BorderStyle.Rounded - nameWithType: BorderStyle.Rounded -- uid: Terminal.Gui.BorderStyle.Single - name: Single - href: api/Terminal.Gui/Terminal.Gui.BorderStyle.html#Terminal_Gui_BorderStyle_Single - commentId: F:Terminal.Gui.BorderStyle.Single - fullName: Terminal.Gui.BorderStyle.Single - nameWithType: BorderStyle.Single -- uid: Terminal.Gui.Button - name: Button - href: api/Terminal.Gui/Terminal.Gui.Button.html - commentId: T:Terminal.Gui.Button - fullName: Terminal.Gui.Button - nameWithType: Button -- uid: Terminal.Gui.Button.#ctor - name: Button() - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor - commentId: M:Terminal.Gui.Button.#ctor - fullName: Terminal.Gui.Button.Button() - nameWithType: Button.Button() -- uid: Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean) - name: Button(ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean) - fullName: Terminal.Gui.Button.Button(NStack.ustring, System.Boolean) - nameWithType: Button.Button(ustring, Boolean) -- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring) - name: Button(Int32, Int32, ustring) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_System_Int32_System_Int32_NStack_ustring_ - commentId: M:Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring) - fullName: Terminal.Gui.Button.Button(System.Int32, System.Int32, NStack.ustring) - nameWithType: Button.Button(Int32, Int32, ustring) -- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - name: Button(Int32, Int32, ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_System_Int32_System_Int32_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - fullName: Terminal.Gui.Button.Button(System.Int32, System.Int32, NStack.ustring, System.Boolean) - nameWithType: Button.Button(Int32, Int32, ustring, Boolean) -- uid: Terminal.Gui.Button.#ctor* - name: Button - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_ - commentId: Overload:Terminal.Gui.Button.#ctor - isSpec: "True" - fullName: Terminal.Gui.Button.Button - nameWithType: Button.Button -- uid: Terminal.Gui.Button.Clicked - name: Clicked - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_Clicked - commentId: E:Terminal.Gui.Button.Clicked - fullName: Terminal.Gui.Button.Clicked - nameWithType: Button.Clicked -- uid: Terminal.Gui.Button.HotKey - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_HotKey - commentId: P:Terminal.Gui.Button.HotKey - fullName: Terminal.Gui.Button.HotKey - nameWithType: Button.HotKey -- uid: Terminal.Gui.Button.HotKey* - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_HotKey_ - commentId: Overload:Terminal.Gui.Button.HotKey - isSpec: "True" - fullName: Terminal.Gui.Button.HotKey - nameWithType: Button.HotKey -- uid: Terminal.Gui.Button.IsDefault - name: IsDefault - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_IsDefault - commentId: P:Terminal.Gui.Button.IsDefault - fullName: Terminal.Gui.Button.IsDefault - nameWithType: Button.IsDefault -- uid: Terminal.Gui.Button.IsDefault* - name: IsDefault - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_IsDefault_ - commentId: Overload:Terminal.Gui.Button.IsDefault - isSpec: "True" - fullName: Terminal.Gui.Button.IsDefault - nameWithType: Button.IsDefault -- uid: Terminal.Gui.Button.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Button.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Button.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: Button.MouseEvent(MouseEvent) -- uid: Terminal.Gui.Button.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_MouseEvent_ - commentId: Overload:Terminal.Gui.Button.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.Button.MouseEvent - nameWithType: Button.MouseEvent -- uid: Terminal.Gui.Button.OnClicked - name: OnClicked() - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_OnClicked - commentId: M:Terminal.Gui.Button.OnClicked - fullName: Terminal.Gui.Button.OnClicked() - nameWithType: Button.OnClicked() -- uid: Terminal.Gui.Button.OnClicked* - name: OnClicked - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_OnClicked_ - commentId: Overload:Terminal.Gui.Button.OnClicked - isSpec: "True" - fullName: Terminal.Gui.Button.OnClicked - nameWithType: Button.OnClicked -- uid: Terminal.Gui.Button.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Button.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.Button.OnEnter(Terminal.Gui.View) - nameWithType: Button.OnEnter(View) -- uid: Terminal.Gui.Button.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_OnEnter_ - commentId: Overload:Terminal.Gui.Button.OnEnter - isSpec: "True" - fullName: Terminal.Gui.Button.OnEnter - nameWithType: Button.OnEnter -- uid: Terminal.Gui.Button.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_PositionCursor - commentId: M:Terminal.Gui.Button.PositionCursor - fullName: Terminal.Gui.Button.PositionCursor() - nameWithType: Button.PositionCursor() -- uid: Terminal.Gui.Button.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_PositionCursor_ - commentId: Overload:Terminal.Gui.Button.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.Button.PositionCursor - nameWithType: Button.PositionCursor -- uid: Terminal.Gui.Button.ProcessColdKey(Terminal.Gui.KeyEvent) - name: ProcessColdKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_ProcessColdKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Button.ProcessColdKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Button.ProcessColdKey(Terminal.Gui.KeyEvent) - nameWithType: Button.ProcessColdKey(KeyEvent) -- uid: Terminal.Gui.Button.ProcessColdKey* - name: ProcessColdKey - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_ProcessColdKey_ - commentId: Overload:Terminal.Gui.Button.ProcessColdKey - isSpec: "True" - fullName: Terminal.Gui.Button.ProcessColdKey - nameWithType: Button.ProcessColdKey -- uid: Terminal.Gui.Button.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Button.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Button.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: Button.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.Button.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_ProcessHotKey_ - commentId: Overload:Terminal.Gui.Button.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.Button.ProcessHotKey - nameWithType: Button.ProcessHotKey -- uid: Terminal.Gui.Button.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Button.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Button.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: Button.ProcessKey(KeyEvent) -- uid: Terminal.Gui.Button.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_ProcessKey_ - commentId: Overload:Terminal.Gui.Button.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.Button.ProcessKey - nameWithType: Button.ProcessKey -- uid: Terminal.Gui.Button.UpdateTextFormatterText - name: UpdateTextFormatterText() - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_UpdateTextFormatterText - commentId: M:Terminal.Gui.Button.UpdateTextFormatterText - fullName: Terminal.Gui.Button.UpdateTextFormatterText() - nameWithType: Button.UpdateTextFormatterText() -- uid: Terminal.Gui.Button.UpdateTextFormatterText* - name: UpdateTextFormatterText - href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button_UpdateTextFormatterText_ - commentId: Overload:Terminal.Gui.Button.UpdateTextFormatterText - isSpec: "True" - fullName: Terminal.Gui.Button.UpdateTextFormatterText - nameWithType: Button.UpdateTextFormatterText -- uid: Terminal.Gui.CheckBox - name: CheckBox - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html - commentId: T:Terminal.Gui.CheckBox - fullName: Terminal.Gui.CheckBox - nameWithType: CheckBox -- uid: Terminal.Gui.CheckBox.#ctor - name: CheckBox() - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox__ctor - commentId: M:Terminal.Gui.CheckBox.#ctor - fullName: Terminal.Gui.CheckBox.CheckBox() - nameWithType: CheckBox.CheckBox() -- uid: Terminal.Gui.CheckBox.#ctor(NStack.ustring,System.Boolean) - name: CheckBox(ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox__ctor_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.CheckBox.#ctor(NStack.ustring,System.Boolean) - fullName: Terminal.Gui.CheckBox.CheckBox(NStack.ustring, System.Boolean) - nameWithType: CheckBox.CheckBox(ustring, Boolean) -- uid: Terminal.Gui.CheckBox.#ctor(System.Int32,System.Int32,NStack.ustring) - name: CheckBox(Int32, Int32, ustring) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox__ctor_System_Int32_System_Int32_NStack_ustring_ - commentId: M:Terminal.Gui.CheckBox.#ctor(System.Int32,System.Int32,NStack.ustring) - fullName: Terminal.Gui.CheckBox.CheckBox(System.Int32, System.Int32, NStack.ustring) - nameWithType: CheckBox.CheckBox(Int32, Int32, ustring) -- uid: Terminal.Gui.CheckBox.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - name: CheckBox(Int32, Int32, ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox__ctor_System_Int32_System_Int32_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.CheckBox.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - fullName: Terminal.Gui.CheckBox.CheckBox(System.Int32, System.Int32, NStack.ustring, System.Boolean) - nameWithType: CheckBox.CheckBox(Int32, Int32, ustring, Boolean) -- uid: Terminal.Gui.CheckBox.#ctor* - name: CheckBox - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox__ctor_ - commentId: Overload:Terminal.Gui.CheckBox.#ctor - isSpec: "True" - fullName: Terminal.Gui.CheckBox.CheckBox - nameWithType: CheckBox.CheckBox -- uid: Terminal.Gui.CheckBox.Checked - name: Checked - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_Checked - commentId: P:Terminal.Gui.CheckBox.Checked - fullName: Terminal.Gui.CheckBox.Checked - nameWithType: CheckBox.Checked -- uid: Terminal.Gui.CheckBox.Checked* - name: Checked - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_Checked_ - commentId: Overload:Terminal.Gui.CheckBox.Checked - isSpec: "True" - fullName: Terminal.Gui.CheckBox.Checked - nameWithType: CheckBox.Checked -- uid: Terminal.Gui.CheckBox.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.CheckBox.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.CheckBox.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: CheckBox.MouseEvent(MouseEvent) -- uid: Terminal.Gui.CheckBox.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_MouseEvent_ - commentId: Overload:Terminal.Gui.CheckBox.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.CheckBox.MouseEvent - nameWithType: CheckBox.MouseEvent -- uid: Terminal.Gui.CheckBox.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.CheckBox.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.CheckBox.OnEnter(Terminal.Gui.View) - nameWithType: CheckBox.OnEnter(View) -- uid: Terminal.Gui.CheckBox.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_OnEnter_ - commentId: Overload:Terminal.Gui.CheckBox.OnEnter - isSpec: "True" - fullName: Terminal.Gui.CheckBox.OnEnter - nameWithType: CheckBox.OnEnter -- uid: Terminal.Gui.CheckBox.OnToggled(System.Boolean) - name: OnToggled(Boolean) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_OnToggled_System_Boolean_ - commentId: M:Terminal.Gui.CheckBox.OnToggled(System.Boolean) - fullName: Terminal.Gui.CheckBox.OnToggled(System.Boolean) - nameWithType: CheckBox.OnToggled(Boolean) -- uid: Terminal.Gui.CheckBox.OnToggled* - name: OnToggled - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_OnToggled_ - commentId: Overload:Terminal.Gui.CheckBox.OnToggled - isSpec: "True" - fullName: Terminal.Gui.CheckBox.OnToggled - nameWithType: CheckBox.OnToggled -- uid: Terminal.Gui.CheckBox.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_PositionCursor - commentId: M:Terminal.Gui.CheckBox.PositionCursor - fullName: Terminal.Gui.CheckBox.PositionCursor() - nameWithType: CheckBox.PositionCursor() -- uid: Terminal.Gui.CheckBox.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_PositionCursor_ - commentId: Overload:Terminal.Gui.CheckBox.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.CheckBox.PositionCursor - nameWithType: CheckBox.PositionCursor -- uid: Terminal.Gui.CheckBox.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.CheckBox.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.CheckBox.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: CheckBox.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.CheckBox.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_ProcessHotKey_ - commentId: Overload:Terminal.Gui.CheckBox.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.CheckBox.ProcessHotKey - nameWithType: CheckBox.ProcessHotKey -- uid: Terminal.Gui.CheckBox.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.CheckBox.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.CheckBox.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: CheckBox.ProcessKey(KeyEvent) -- uid: Terminal.Gui.CheckBox.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_ProcessKey_ - commentId: Overload:Terminal.Gui.CheckBox.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.CheckBox.ProcessKey - nameWithType: CheckBox.ProcessKey -- uid: Terminal.Gui.CheckBox.Toggled - name: Toggled - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_Toggled - commentId: E:Terminal.Gui.CheckBox.Toggled - fullName: Terminal.Gui.CheckBox.Toggled - nameWithType: CheckBox.Toggled -- uid: Terminal.Gui.CheckBox.UpdateTextFormatterText - name: UpdateTextFormatterText() - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_UpdateTextFormatterText - commentId: M:Terminal.Gui.CheckBox.UpdateTextFormatterText - fullName: Terminal.Gui.CheckBox.UpdateTextFormatterText() - nameWithType: CheckBox.UpdateTextFormatterText() -- uid: Terminal.Gui.CheckBox.UpdateTextFormatterText* - name: UpdateTextFormatterText - href: api/Terminal.Gui/Terminal.Gui.CheckBox.html#Terminal_Gui_CheckBox_UpdateTextFormatterText_ - commentId: Overload:Terminal.Gui.CheckBox.UpdateTextFormatterText - isSpec: "True" - fullName: Terminal.Gui.CheckBox.UpdateTextFormatterText - nameWithType: CheckBox.UpdateTextFormatterText -- uid: Terminal.Gui.Clipboard - name: Clipboard - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html - commentId: T:Terminal.Gui.Clipboard - fullName: Terminal.Gui.Clipboard - nameWithType: Clipboard -- uid: Terminal.Gui.Clipboard.Contents - name: Contents - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_Contents - commentId: P:Terminal.Gui.Clipboard.Contents - fullName: Terminal.Gui.Clipboard.Contents - nameWithType: Clipboard.Contents -- uid: Terminal.Gui.Clipboard.Contents* - name: Contents - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_Contents_ - commentId: Overload:Terminal.Gui.Clipboard.Contents - isSpec: "True" - fullName: Terminal.Gui.Clipboard.Contents - nameWithType: Clipboard.Contents -- uid: Terminal.Gui.Clipboard.IsSupported - name: IsSupported - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_IsSupported - commentId: P:Terminal.Gui.Clipboard.IsSupported - fullName: Terminal.Gui.Clipboard.IsSupported - nameWithType: Clipboard.IsSupported -- uid: Terminal.Gui.Clipboard.IsSupported* - name: IsSupported - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_IsSupported_ - commentId: Overload:Terminal.Gui.Clipboard.IsSupported - isSpec: "True" - fullName: Terminal.Gui.Clipboard.IsSupported - nameWithType: Clipboard.IsSupported -- uid: Terminal.Gui.Clipboard.TryGetClipboardData(System.String@) - name: TryGetClipboardData(out String) - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_TryGetClipboardData_System_String__ - commentId: M:Terminal.Gui.Clipboard.TryGetClipboardData(System.String@) - name.vb: TryGetClipboardData(ByRef String) - fullName: Terminal.Gui.Clipboard.TryGetClipboardData(out System.String) - fullName.vb: Terminal.Gui.Clipboard.TryGetClipboardData(ByRef System.String) - nameWithType: Clipboard.TryGetClipboardData(out String) - nameWithType.vb: Clipboard.TryGetClipboardData(ByRef String) -- uid: Terminal.Gui.Clipboard.TryGetClipboardData* - name: TryGetClipboardData - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_TryGetClipboardData_ - commentId: Overload:Terminal.Gui.Clipboard.TryGetClipboardData - isSpec: "True" - fullName: Terminal.Gui.Clipboard.TryGetClipboardData - nameWithType: Clipboard.TryGetClipboardData -- uid: Terminal.Gui.Clipboard.TrySetClipboardData(System.String) - name: TrySetClipboardData(String) - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_TrySetClipboardData_System_String_ - commentId: M:Terminal.Gui.Clipboard.TrySetClipboardData(System.String) - fullName: Terminal.Gui.Clipboard.TrySetClipboardData(System.String) - nameWithType: Clipboard.TrySetClipboardData(String) -- uid: Terminal.Gui.Clipboard.TrySetClipboardData* - name: TrySetClipboardData - href: api/Terminal.Gui/Terminal.Gui.Clipboard.html#Terminal_Gui_Clipboard_TrySetClipboardData_ - commentId: Overload:Terminal.Gui.Clipboard.TrySetClipboardData - isSpec: "True" - fullName: Terminal.Gui.Clipboard.TrySetClipboardData - nameWithType: Clipboard.TrySetClipboardData -- uid: Terminal.Gui.ClipboardBase - name: ClipboardBase - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html - commentId: T:Terminal.Gui.ClipboardBase - fullName: Terminal.Gui.ClipboardBase - nameWithType: ClipboardBase -- uid: Terminal.Gui.ClipboardBase.GetClipboardData - name: GetClipboardData() - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_GetClipboardData - commentId: M:Terminal.Gui.ClipboardBase.GetClipboardData - fullName: Terminal.Gui.ClipboardBase.GetClipboardData() - nameWithType: ClipboardBase.GetClipboardData() -- uid: Terminal.Gui.ClipboardBase.GetClipboardData* - name: GetClipboardData - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_GetClipboardData_ - commentId: Overload:Terminal.Gui.ClipboardBase.GetClipboardData - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.GetClipboardData - nameWithType: ClipboardBase.GetClipboardData -- uid: Terminal.Gui.ClipboardBase.GetClipboardDataImpl - name: GetClipboardDataImpl() - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_GetClipboardDataImpl - commentId: M:Terminal.Gui.ClipboardBase.GetClipboardDataImpl - fullName: Terminal.Gui.ClipboardBase.GetClipboardDataImpl() - nameWithType: ClipboardBase.GetClipboardDataImpl() -- uid: Terminal.Gui.ClipboardBase.GetClipboardDataImpl* - name: GetClipboardDataImpl - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_GetClipboardDataImpl_ - commentId: Overload:Terminal.Gui.ClipboardBase.GetClipboardDataImpl - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.GetClipboardDataImpl - nameWithType: ClipboardBase.GetClipboardDataImpl -- uid: Terminal.Gui.ClipboardBase.IsSupported - name: IsSupported - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_IsSupported - commentId: P:Terminal.Gui.ClipboardBase.IsSupported - fullName: Terminal.Gui.ClipboardBase.IsSupported - nameWithType: ClipboardBase.IsSupported -- uid: Terminal.Gui.ClipboardBase.IsSupported* - name: IsSupported - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_IsSupported_ - commentId: Overload:Terminal.Gui.ClipboardBase.IsSupported - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.IsSupported - nameWithType: ClipboardBase.IsSupported -- uid: Terminal.Gui.ClipboardBase.SetClipboardData(System.String) - name: SetClipboardData(String) - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_SetClipboardData_System_String_ - commentId: M:Terminal.Gui.ClipboardBase.SetClipboardData(System.String) - fullName: Terminal.Gui.ClipboardBase.SetClipboardData(System.String) - nameWithType: ClipboardBase.SetClipboardData(String) -- uid: Terminal.Gui.ClipboardBase.SetClipboardData* - name: SetClipboardData - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_SetClipboardData_ - commentId: Overload:Terminal.Gui.ClipboardBase.SetClipboardData - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.SetClipboardData - nameWithType: ClipboardBase.SetClipboardData -- uid: Terminal.Gui.ClipboardBase.SetClipboardDataImpl(System.String) - name: SetClipboardDataImpl(String) - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_SetClipboardDataImpl_System_String_ - commentId: M:Terminal.Gui.ClipboardBase.SetClipboardDataImpl(System.String) - fullName: Terminal.Gui.ClipboardBase.SetClipboardDataImpl(System.String) - nameWithType: ClipboardBase.SetClipboardDataImpl(String) -- uid: Terminal.Gui.ClipboardBase.SetClipboardDataImpl* - name: SetClipboardDataImpl - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_SetClipboardDataImpl_ - commentId: Overload:Terminal.Gui.ClipboardBase.SetClipboardDataImpl - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.SetClipboardDataImpl - nameWithType: ClipboardBase.SetClipboardDataImpl -- uid: Terminal.Gui.ClipboardBase.TryGetClipboardData(System.String@) - name: TryGetClipboardData(out String) - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_TryGetClipboardData_System_String__ - commentId: M:Terminal.Gui.ClipboardBase.TryGetClipboardData(System.String@) - name.vb: TryGetClipboardData(ByRef String) - fullName: Terminal.Gui.ClipboardBase.TryGetClipboardData(out System.String) - fullName.vb: Terminal.Gui.ClipboardBase.TryGetClipboardData(ByRef System.String) - nameWithType: ClipboardBase.TryGetClipboardData(out String) - nameWithType.vb: ClipboardBase.TryGetClipboardData(ByRef String) -- uid: Terminal.Gui.ClipboardBase.TryGetClipboardData* - name: TryGetClipboardData - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_TryGetClipboardData_ - commentId: Overload:Terminal.Gui.ClipboardBase.TryGetClipboardData - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.TryGetClipboardData - nameWithType: ClipboardBase.TryGetClipboardData -- uid: Terminal.Gui.ClipboardBase.TrySetClipboardData(System.String) - name: TrySetClipboardData(String) - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_TrySetClipboardData_System_String_ - commentId: M:Terminal.Gui.ClipboardBase.TrySetClipboardData(System.String) - fullName: Terminal.Gui.ClipboardBase.TrySetClipboardData(System.String) - nameWithType: ClipboardBase.TrySetClipboardData(String) -- uid: Terminal.Gui.ClipboardBase.TrySetClipboardData* - name: TrySetClipboardData - href: api/Terminal.Gui/Terminal.Gui.ClipboardBase.html#Terminal_Gui_ClipboardBase_TrySetClipboardData_ - commentId: Overload:Terminal.Gui.ClipboardBase.TrySetClipboardData - isSpec: "True" - fullName: Terminal.Gui.ClipboardBase.TrySetClipboardData - nameWithType: ClipboardBase.TrySetClipboardData -- uid: Terminal.Gui.Color - name: Color - href: api/Terminal.Gui/Terminal.Gui.Color.html - commentId: T:Terminal.Gui.Color - fullName: Terminal.Gui.Color - nameWithType: Color -- uid: Terminal.Gui.Color.Black - name: Black - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Black - commentId: F:Terminal.Gui.Color.Black - fullName: Terminal.Gui.Color.Black - nameWithType: Color.Black -- uid: Terminal.Gui.Color.Blue - name: Blue - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Blue - commentId: F:Terminal.Gui.Color.Blue - fullName: Terminal.Gui.Color.Blue - nameWithType: Color.Blue -- uid: Terminal.Gui.Color.BrightBlue - name: BrightBlue - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_BrightBlue - commentId: F:Terminal.Gui.Color.BrightBlue - fullName: Terminal.Gui.Color.BrightBlue - nameWithType: Color.BrightBlue -- uid: Terminal.Gui.Color.BrightCyan - name: BrightCyan - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_BrightCyan - commentId: F:Terminal.Gui.Color.BrightCyan - fullName: Terminal.Gui.Color.BrightCyan - nameWithType: Color.BrightCyan -- uid: Terminal.Gui.Color.BrightGreen - name: BrightGreen - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_BrightGreen - commentId: F:Terminal.Gui.Color.BrightGreen - fullName: Terminal.Gui.Color.BrightGreen - nameWithType: Color.BrightGreen -- uid: Terminal.Gui.Color.BrightMagenta - name: BrightMagenta - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_BrightMagenta - commentId: F:Terminal.Gui.Color.BrightMagenta - fullName: Terminal.Gui.Color.BrightMagenta - nameWithType: Color.BrightMagenta -- uid: Terminal.Gui.Color.BrightRed - name: BrightRed - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_BrightRed - commentId: F:Terminal.Gui.Color.BrightRed - fullName: Terminal.Gui.Color.BrightRed - nameWithType: Color.BrightRed -- uid: Terminal.Gui.Color.BrightYellow - name: BrightYellow - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_BrightYellow - commentId: F:Terminal.Gui.Color.BrightYellow - fullName: Terminal.Gui.Color.BrightYellow - nameWithType: Color.BrightYellow -- uid: Terminal.Gui.Color.Brown - name: Brown - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Brown - commentId: F:Terminal.Gui.Color.Brown - fullName: Terminal.Gui.Color.Brown - nameWithType: Color.Brown -- uid: Terminal.Gui.Color.Cyan - name: Cyan - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Cyan - commentId: F:Terminal.Gui.Color.Cyan - fullName: Terminal.Gui.Color.Cyan - nameWithType: Color.Cyan -- uid: Terminal.Gui.Color.DarkGray - name: DarkGray - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_DarkGray - commentId: F:Terminal.Gui.Color.DarkGray - fullName: Terminal.Gui.Color.DarkGray - nameWithType: Color.DarkGray -- uid: Terminal.Gui.Color.Gray - name: Gray - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Gray - commentId: F:Terminal.Gui.Color.Gray - fullName: Terminal.Gui.Color.Gray - nameWithType: Color.Gray -- uid: Terminal.Gui.Color.Green - name: Green - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Green - commentId: F:Terminal.Gui.Color.Green - fullName: Terminal.Gui.Color.Green - nameWithType: Color.Green -- uid: Terminal.Gui.Color.Magenta - name: Magenta - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Magenta - commentId: F:Terminal.Gui.Color.Magenta - fullName: Terminal.Gui.Color.Magenta - nameWithType: Color.Magenta -- uid: Terminal.Gui.Color.Red - name: Red - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_Red - commentId: F:Terminal.Gui.Color.Red - fullName: Terminal.Gui.Color.Red - nameWithType: Color.Red -- uid: Terminal.Gui.Color.White - name: White - href: api/Terminal.Gui/Terminal.Gui.Color.html#Terminal_Gui_Color_White - commentId: F:Terminal.Gui.Color.White - fullName: Terminal.Gui.Color.White - nameWithType: Color.White -- uid: Terminal.Gui.ColorPicker - name: ColorPicker - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html - commentId: T:Terminal.Gui.ColorPicker - fullName: Terminal.Gui.ColorPicker - nameWithType: ColorPicker -- uid: Terminal.Gui.ColorPicker.#ctor - name: ColorPicker() - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker__ctor - commentId: M:Terminal.Gui.ColorPicker.#ctor - fullName: Terminal.Gui.ColorPicker.ColorPicker() - nameWithType: ColorPicker.ColorPicker() -- uid: Terminal.Gui.ColorPicker.#ctor(NStack.ustring) - name: ColorPicker(ustring) - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.ColorPicker.#ctor(NStack.ustring) - fullName: Terminal.Gui.ColorPicker.ColorPicker(NStack.ustring) - nameWithType: ColorPicker.ColorPicker(ustring) -- uid: Terminal.Gui.ColorPicker.#ctor(System.Int32,System.Int32,NStack.ustring) - name: ColorPicker(Int32, Int32, ustring) - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker__ctor_System_Int32_System_Int32_NStack_ustring_ - commentId: M:Terminal.Gui.ColorPicker.#ctor(System.Int32,System.Int32,NStack.ustring) - fullName: Terminal.Gui.ColorPicker.ColorPicker(System.Int32, System.Int32, NStack.ustring) - nameWithType: ColorPicker.ColorPicker(Int32, Int32, ustring) -- uid: Terminal.Gui.ColorPicker.#ctor(Terminal.Gui.Point,NStack.ustring) - name: ColorPicker(Point, ustring) - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker__ctor_Terminal_Gui_Point_NStack_ustring_ - commentId: M:Terminal.Gui.ColorPicker.#ctor(Terminal.Gui.Point,NStack.ustring) - fullName: Terminal.Gui.ColorPicker.ColorPicker(Terminal.Gui.Point, NStack.ustring) - nameWithType: ColorPicker.ColorPicker(Point, ustring) -- uid: Terminal.Gui.ColorPicker.#ctor* - name: ColorPicker - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker__ctor_ - commentId: Overload:Terminal.Gui.ColorPicker.#ctor - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.ColorPicker - nameWithType: ColorPicker.ColorPicker -- uid: Terminal.Gui.ColorPicker.ColorChanged - name: ColorChanged - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_ColorChanged - commentId: E:Terminal.Gui.ColorPicker.ColorChanged - fullName: Terminal.Gui.ColorPicker.ColorChanged - nameWithType: ColorPicker.ColorChanged -- uid: Terminal.Gui.ColorPicker.Cursor - name: Cursor - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_Cursor - commentId: P:Terminal.Gui.ColorPicker.Cursor - fullName: Terminal.Gui.ColorPicker.Cursor - nameWithType: ColorPicker.Cursor -- uid: Terminal.Gui.ColorPicker.Cursor* - name: Cursor - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_Cursor_ - commentId: Overload:Terminal.Gui.ColorPicker.Cursor - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.Cursor - nameWithType: ColorPicker.Cursor -- uid: Terminal.Gui.ColorPicker.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.ColorPicker.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.ColorPicker.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: ColorPicker.MouseEvent(MouseEvent) -- uid: Terminal.Gui.ColorPicker.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MouseEvent_ - commentId: Overload:Terminal.Gui.ColorPicker.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.MouseEvent - nameWithType: ColorPicker.MouseEvent -- uid: Terminal.Gui.ColorPicker.MoveDown - name: MoveDown() - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveDown - commentId: M:Terminal.Gui.ColorPicker.MoveDown - fullName: Terminal.Gui.ColorPicker.MoveDown() - nameWithType: ColorPicker.MoveDown() -- uid: Terminal.Gui.ColorPicker.MoveDown* - name: MoveDown - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveDown_ - commentId: Overload:Terminal.Gui.ColorPicker.MoveDown - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.MoveDown - nameWithType: ColorPicker.MoveDown -- uid: Terminal.Gui.ColorPicker.MoveLeft - name: MoveLeft() - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveLeft - commentId: M:Terminal.Gui.ColorPicker.MoveLeft - fullName: Terminal.Gui.ColorPicker.MoveLeft() - nameWithType: ColorPicker.MoveLeft() -- uid: Terminal.Gui.ColorPicker.MoveLeft* - name: MoveLeft - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveLeft_ - commentId: Overload:Terminal.Gui.ColorPicker.MoveLeft - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.MoveLeft - nameWithType: ColorPicker.MoveLeft -- uid: Terminal.Gui.ColorPicker.MoveRight - name: MoveRight() - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveRight - commentId: M:Terminal.Gui.ColorPicker.MoveRight - fullName: Terminal.Gui.ColorPicker.MoveRight() - nameWithType: ColorPicker.MoveRight() -- uid: Terminal.Gui.ColorPicker.MoveRight* - name: MoveRight - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveRight_ - commentId: Overload:Terminal.Gui.ColorPicker.MoveRight - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.MoveRight - nameWithType: ColorPicker.MoveRight -- uid: Terminal.Gui.ColorPicker.MoveUp - name: MoveUp() - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveUp - commentId: M:Terminal.Gui.ColorPicker.MoveUp - fullName: Terminal.Gui.ColorPicker.MoveUp() - nameWithType: ColorPicker.MoveUp() -- uid: Terminal.Gui.ColorPicker.MoveUp* - name: MoveUp - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_MoveUp_ - commentId: Overload:Terminal.Gui.ColorPicker.MoveUp - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.MoveUp - nameWithType: ColorPicker.MoveUp -- uid: Terminal.Gui.ColorPicker.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.ColorPicker.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.ColorPicker.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: ColorPicker.ProcessKey(KeyEvent) -- uid: Terminal.Gui.ColorPicker.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_ProcessKey_ - commentId: Overload:Terminal.Gui.ColorPicker.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.ProcessKey - nameWithType: ColorPicker.ProcessKey -- uid: Terminal.Gui.ColorPicker.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ColorPicker.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.ColorPicker.Redraw(Terminal.Gui.Rect) - nameWithType: ColorPicker.Redraw(Rect) -- uid: Terminal.Gui.ColorPicker.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_Redraw_ - commentId: Overload:Terminal.Gui.ColorPicker.Redraw - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.Redraw - nameWithType: ColorPicker.Redraw -- uid: Terminal.Gui.ColorPicker.SelectedColor - name: SelectedColor - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_SelectedColor - commentId: P:Terminal.Gui.ColorPicker.SelectedColor - fullName: Terminal.Gui.ColorPicker.SelectedColor - nameWithType: ColorPicker.SelectedColor -- uid: Terminal.Gui.ColorPicker.SelectedColor* - name: SelectedColor - href: api/Terminal.Gui/Terminal.Gui.ColorPicker.html#Terminal_Gui_ColorPicker_SelectedColor_ - commentId: Overload:Terminal.Gui.ColorPicker.SelectedColor - isSpec: "True" - fullName: Terminal.Gui.ColorPicker.SelectedColor - nameWithType: ColorPicker.SelectedColor -- uid: Terminal.Gui.Colors - name: Colors - href: api/Terminal.Gui/Terminal.Gui.Colors.html - commentId: T:Terminal.Gui.Colors - fullName: Terminal.Gui.Colors - nameWithType: Colors -- uid: Terminal.Gui.Colors.Base - name: Base - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Base - commentId: P:Terminal.Gui.Colors.Base - fullName: Terminal.Gui.Colors.Base - nameWithType: Colors.Base -- uid: Terminal.Gui.Colors.Base* - name: Base - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Base_ - commentId: Overload:Terminal.Gui.Colors.Base - isSpec: "True" - fullName: Terminal.Gui.Colors.Base - nameWithType: Colors.Base -- uid: Terminal.Gui.Colors.ColorSchemes - name: ColorSchemes - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_ColorSchemes - commentId: P:Terminal.Gui.Colors.ColorSchemes - fullName: Terminal.Gui.Colors.ColorSchemes - nameWithType: Colors.ColorSchemes -- uid: Terminal.Gui.Colors.ColorSchemes* - name: ColorSchemes - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_ColorSchemes_ - commentId: Overload:Terminal.Gui.Colors.ColorSchemes - isSpec: "True" - fullName: Terminal.Gui.Colors.ColorSchemes - nameWithType: Colors.ColorSchemes -- uid: Terminal.Gui.Colors.Dialog - name: Dialog - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Dialog - commentId: P:Terminal.Gui.Colors.Dialog - fullName: Terminal.Gui.Colors.Dialog - nameWithType: Colors.Dialog -- uid: Terminal.Gui.Colors.Dialog* - name: Dialog - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Dialog_ - commentId: Overload:Terminal.Gui.Colors.Dialog - isSpec: "True" - fullName: Terminal.Gui.Colors.Dialog - nameWithType: Colors.Dialog -- uid: Terminal.Gui.Colors.Error - name: Error - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Error - commentId: P:Terminal.Gui.Colors.Error - fullName: Terminal.Gui.Colors.Error - nameWithType: Colors.Error -- uid: Terminal.Gui.Colors.Error* - name: Error - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Error_ - commentId: Overload:Terminal.Gui.Colors.Error - isSpec: "True" - fullName: Terminal.Gui.Colors.Error - nameWithType: Colors.Error -- uid: Terminal.Gui.Colors.Menu - name: Menu - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Menu - commentId: P:Terminal.Gui.Colors.Menu - fullName: Terminal.Gui.Colors.Menu - nameWithType: Colors.Menu -- uid: Terminal.Gui.Colors.Menu* - name: Menu - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_Menu_ - commentId: Overload:Terminal.Gui.Colors.Menu - isSpec: "True" - fullName: Terminal.Gui.Colors.Menu - nameWithType: Colors.Menu -- uid: Terminal.Gui.Colors.TopLevel - name: TopLevel - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_TopLevel - commentId: P:Terminal.Gui.Colors.TopLevel - fullName: Terminal.Gui.Colors.TopLevel - nameWithType: Colors.TopLevel -- uid: Terminal.Gui.Colors.TopLevel* - name: TopLevel - href: api/Terminal.Gui/Terminal.Gui.Colors.html#Terminal_Gui_Colors_TopLevel_ - commentId: Overload:Terminal.Gui.Colors.TopLevel - isSpec: "True" - fullName: Terminal.Gui.Colors.TopLevel - nameWithType: Colors.TopLevel -- uid: Terminal.Gui.ColorScheme - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html - commentId: T:Terminal.Gui.ColorScheme - fullName: Terminal.Gui.ColorScheme - nameWithType: ColorScheme -- uid: Terminal.Gui.ColorScheme.Disabled - name: Disabled - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Disabled - commentId: P:Terminal.Gui.ColorScheme.Disabled - fullName: Terminal.Gui.ColorScheme.Disabled - nameWithType: ColorScheme.Disabled -- uid: Terminal.Gui.ColorScheme.Disabled* - name: Disabled - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Disabled_ - commentId: Overload:Terminal.Gui.ColorScheme.Disabled - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.Disabled - nameWithType: ColorScheme.Disabled -- uid: Terminal.Gui.ColorScheme.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Equals_System_Object_ - commentId: M:Terminal.Gui.ColorScheme.Equals(System.Object) - fullName: Terminal.Gui.ColorScheme.Equals(System.Object) - nameWithType: ColorScheme.Equals(Object) -- uid: Terminal.Gui.ColorScheme.Equals(Terminal.Gui.ColorScheme) - name: Equals(ColorScheme) - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Equals_Terminal_Gui_ColorScheme_ - commentId: M:Terminal.Gui.ColorScheme.Equals(Terminal.Gui.ColorScheme) - fullName: Terminal.Gui.ColorScheme.Equals(Terminal.Gui.ColorScheme) - nameWithType: ColorScheme.Equals(ColorScheme) -- uid: Terminal.Gui.ColorScheme.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Equals_ - commentId: Overload:Terminal.Gui.ColorScheme.Equals - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.Equals - nameWithType: ColorScheme.Equals -- uid: Terminal.Gui.ColorScheme.Focus - name: Focus - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Focus - commentId: P:Terminal.Gui.ColorScheme.Focus - fullName: Terminal.Gui.ColorScheme.Focus - nameWithType: ColorScheme.Focus -- uid: Terminal.Gui.ColorScheme.Focus* - name: Focus - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Focus_ - commentId: Overload:Terminal.Gui.ColorScheme.Focus - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.Focus - nameWithType: ColorScheme.Focus -- uid: Terminal.Gui.ColorScheme.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_GetHashCode - commentId: M:Terminal.Gui.ColorScheme.GetHashCode - fullName: Terminal.Gui.ColorScheme.GetHashCode() - nameWithType: ColorScheme.GetHashCode() -- uid: Terminal.Gui.ColorScheme.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_GetHashCode_ - commentId: Overload:Terminal.Gui.ColorScheme.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.GetHashCode - nameWithType: ColorScheme.GetHashCode -- uid: Terminal.Gui.ColorScheme.HotFocus - name: HotFocus - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_HotFocus - commentId: P:Terminal.Gui.ColorScheme.HotFocus - fullName: Terminal.Gui.ColorScheme.HotFocus - nameWithType: ColorScheme.HotFocus -- uid: Terminal.Gui.ColorScheme.HotFocus* - name: HotFocus - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_HotFocus_ - commentId: Overload:Terminal.Gui.ColorScheme.HotFocus - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.HotFocus - nameWithType: ColorScheme.HotFocus -- uid: Terminal.Gui.ColorScheme.HotNormal - name: HotNormal - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_HotNormal - commentId: P:Terminal.Gui.ColorScheme.HotNormal - fullName: Terminal.Gui.ColorScheme.HotNormal - nameWithType: ColorScheme.HotNormal -- uid: Terminal.Gui.ColorScheme.HotNormal* - name: HotNormal - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_HotNormal_ - commentId: Overload:Terminal.Gui.ColorScheme.HotNormal - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.HotNormal - nameWithType: ColorScheme.HotNormal -- uid: Terminal.Gui.ColorScheme.Normal - name: Normal - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Normal - commentId: P:Terminal.Gui.ColorScheme.Normal - fullName: Terminal.Gui.ColorScheme.Normal - nameWithType: ColorScheme.Normal -- uid: Terminal.Gui.ColorScheme.Normal* - name: Normal - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Normal_ - commentId: Overload:Terminal.Gui.ColorScheme.Normal - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.Normal - nameWithType: ColorScheme.Normal -- uid: Terminal.Gui.ColorScheme.op_Equality(Terminal.Gui.ColorScheme,Terminal.Gui.ColorScheme) - name: Equality(ColorScheme, ColorScheme) - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_op_Equality_Terminal_Gui_ColorScheme_Terminal_Gui_ColorScheme_ - commentId: M:Terminal.Gui.ColorScheme.op_Equality(Terminal.Gui.ColorScheme,Terminal.Gui.ColorScheme) - fullName: Terminal.Gui.ColorScheme.Equality(Terminal.Gui.ColorScheme, Terminal.Gui.ColorScheme) - nameWithType: ColorScheme.Equality(ColorScheme, ColorScheme) -- uid: Terminal.Gui.ColorScheme.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_op_Equality_ - commentId: Overload:Terminal.Gui.ColorScheme.op_Equality - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.Equality - nameWithType: ColorScheme.Equality -- uid: Terminal.Gui.ColorScheme.op_Inequality(Terminal.Gui.ColorScheme,Terminal.Gui.ColorScheme) - name: Inequality(ColorScheme, ColorScheme) - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_op_Inequality_Terminal_Gui_ColorScheme_Terminal_Gui_ColorScheme_ - commentId: M:Terminal.Gui.ColorScheme.op_Inequality(Terminal.Gui.ColorScheme,Terminal.Gui.ColorScheme) - fullName: Terminal.Gui.ColorScheme.Inequality(Terminal.Gui.ColorScheme, Terminal.Gui.ColorScheme) - nameWithType: ColorScheme.Inequality(ColorScheme, ColorScheme) -- uid: Terminal.Gui.ColorScheme.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_op_Inequality_ - commentId: Overload:Terminal.Gui.ColorScheme.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.ColorScheme.Inequality - nameWithType: ColorScheme.Inequality -- uid: Terminal.Gui.ComboBox - name: ComboBox - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html - commentId: T:Terminal.Gui.ComboBox - fullName: Terminal.Gui.ComboBox - nameWithType: ComboBox -- uid: Terminal.Gui.ComboBox.#ctor - name: ComboBox() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox__ctor - commentId: M:Terminal.Gui.ComboBox.#ctor - fullName: Terminal.Gui.ComboBox.ComboBox() - nameWithType: ComboBox.ComboBox() -- uid: Terminal.Gui.ComboBox.#ctor(NStack.ustring) - name: ComboBox(ustring) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.ComboBox.#ctor(NStack.ustring) - fullName: Terminal.Gui.ComboBox.ComboBox(NStack.ustring) - nameWithType: ComboBox.ComboBox(ustring) -- uid: Terminal.Gui.ComboBox.#ctor(System.Collections.IList) - name: ComboBox(IList) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox__ctor_System_Collections_IList_ - commentId: M:Terminal.Gui.ComboBox.#ctor(System.Collections.IList) - fullName: Terminal.Gui.ComboBox.ComboBox(System.Collections.IList) - nameWithType: ComboBox.ComboBox(IList) -- uid: Terminal.Gui.ComboBox.#ctor(Terminal.Gui.Rect,System.Collections.IList) - name: ComboBox(Rect, IList) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox__ctor_Terminal_Gui_Rect_System_Collections_IList_ - commentId: M:Terminal.Gui.ComboBox.#ctor(Terminal.Gui.Rect,System.Collections.IList) - fullName: Terminal.Gui.ComboBox.ComboBox(Terminal.Gui.Rect, System.Collections.IList) - nameWithType: ComboBox.ComboBox(Rect, IList) -- uid: Terminal.Gui.ComboBox.#ctor* - name: ComboBox - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox__ctor_ - commentId: Overload:Terminal.Gui.ComboBox.#ctor - isSpec: "True" - fullName: Terminal.Gui.ComboBox.ComboBox - nameWithType: ComboBox.ComboBox -- uid: Terminal.Gui.ComboBox.Collapse - name: Collapse() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Collapse - commentId: M:Terminal.Gui.ComboBox.Collapse - fullName: Terminal.Gui.ComboBox.Collapse() - nameWithType: ComboBox.Collapse() -- uid: Terminal.Gui.ComboBox.Collapse* - name: Collapse - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Collapse_ - commentId: Overload:Terminal.Gui.ComboBox.Collapse - isSpec: "True" - fullName: Terminal.Gui.ComboBox.Collapse - nameWithType: ComboBox.Collapse -- uid: Terminal.Gui.ComboBox.Collapsed - name: Collapsed - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Collapsed - commentId: E:Terminal.Gui.ComboBox.Collapsed - fullName: Terminal.Gui.ComboBox.Collapsed - nameWithType: ComboBox.Collapsed -- uid: Terminal.Gui.ComboBox.ColorScheme - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_ColorScheme - commentId: P:Terminal.Gui.ComboBox.ColorScheme - fullName: Terminal.Gui.ComboBox.ColorScheme - nameWithType: ComboBox.ColorScheme -- uid: Terminal.Gui.ComboBox.ColorScheme* - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_ColorScheme_ - commentId: Overload:Terminal.Gui.ComboBox.ColorScheme - isSpec: "True" - fullName: Terminal.Gui.ComboBox.ColorScheme - nameWithType: ComboBox.ColorScheme -- uid: Terminal.Gui.ComboBox.Expand - name: Expand() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Expand - commentId: M:Terminal.Gui.ComboBox.Expand - fullName: Terminal.Gui.ComboBox.Expand() - nameWithType: ComboBox.Expand() -- uid: Terminal.Gui.ComboBox.Expand* - name: Expand - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Expand_ - commentId: Overload:Terminal.Gui.ComboBox.Expand - isSpec: "True" - fullName: Terminal.Gui.ComboBox.Expand - nameWithType: ComboBox.Expand -- uid: Terminal.Gui.ComboBox.Expanded - name: Expanded - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Expanded - commentId: E:Terminal.Gui.ComboBox.Expanded - fullName: Terminal.Gui.ComboBox.Expanded - nameWithType: ComboBox.Expanded -- uid: Terminal.Gui.ComboBox.HideDropdownListOnClick - name: HideDropdownListOnClick - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_HideDropdownListOnClick - commentId: P:Terminal.Gui.ComboBox.HideDropdownListOnClick - fullName: Terminal.Gui.ComboBox.HideDropdownListOnClick - nameWithType: ComboBox.HideDropdownListOnClick -- uid: Terminal.Gui.ComboBox.HideDropdownListOnClick* - name: HideDropdownListOnClick - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_HideDropdownListOnClick_ - commentId: Overload:Terminal.Gui.ComboBox.HideDropdownListOnClick - isSpec: "True" - fullName: Terminal.Gui.ComboBox.HideDropdownListOnClick - nameWithType: ComboBox.HideDropdownListOnClick -- uid: Terminal.Gui.ComboBox.IsShow - name: IsShow - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_IsShow - commentId: P:Terminal.Gui.ComboBox.IsShow - fullName: Terminal.Gui.ComboBox.IsShow - nameWithType: ComboBox.IsShow -- uid: Terminal.Gui.ComboBox.IsShow* - name: IsShow - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_IsShow_ - commentId: Overload:Terminal.Gui.ComboBox.IsShow - isSpec: "True" - fullName: Terminal.Gui.ComboBox.IsShow - nameWithType: ComboBox.IsShow -- uid: Terminal.Gui.ComboBox.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.ComboBox.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.ComboBox.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: ComboBox.MouseEvent(MouseEvent) -- uid: Terminal.Gui.ComboBox.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_MouseEvent_ - commentId: Overload:Terminal.Gui.ComboBox.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.ComboBox.MouseEvent - nameWithType: ComboBox.MouseEvent -- uid: Terminal.Gui.ComboBox.OnCollapsed - name: OnCollapsed() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnCollapsed - commentId: M:Terminal.Gui.ComboBox.OnCollapsed - fullName: Terminal.Gui.ComboBox.OnCollapsed() - nameWithType: ComboBox.OnCollapsed() -- uid: Terminal.Gui.ComboBox.OnCollapsed* - name: OnCollapsed - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnCollapsed_ - commentId: Overload:Terminal.Gui.ComboBox.OnCollapsed - isSpec: "True" - fullName: Terminal.Gui.ComboBox.OnCollapsed - nameWithType: ComboBox.OnCollapsed -- uid: Terminal.Gui.ComboBox.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ComboBox.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.ComboBox.OnEnter(Terminal.Gui.View) - nameWithType: ComboBox.OnEnter(View) -- uid: Terminal.Gui.ComboBox.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnEnter_ - commentId: Overload:Terminal.Gui.ComboBox.OnEnter - isSpec: "True" - fullName: Terminal.Gui.ComboBox.OnEnter - nameWithType: ComboBox.OnEnter -- uid: Terminal.Gui.ComboBox.OnExpanded - name: OnExpanded() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnExpanded - commentId: M:Terminal.Gui.ComboBox.OnExpanded - fullName: Terminal.Gui.ComboBox.OnExpanded() - nameWithType: ComboBox.OnExpanded() -- uid: Terminal.Gui.ComboBox.OnExpanded* - name: OnExpanded - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnExpanded_ - commentId: Overload:Terminal.Gui.ComboBox.OnExpanded - isSpec: "True" - fullName: Terminal.Gui.ComboBox.OnExpanded - nameWithType: ComboBox.OnExpanded -- uid: Terminal.Gui.ComboBox.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ComboBox.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.ComboBox.OnLeave(Terminal.Gui.View) - nameWithType: ComboBox.OnLeave(View) -- uid: Terminal.Gui.ComboBox.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnLeave_ - commentId: Overload:Terminal.Gui.ComboBox.OnLeave - isSpec: "True" - fullName: Terminal.Gui.ComboBox.OnLeave - nameWithType: ComboBox.OnLeave -- uid: Terminal.Gui.ComboBox.OnOpenSelectedItem - name: OnOpenSelectedItem() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnOpenSelectedItem - commentId: M:Terminal.Gui.ComboBox.OnOpenSelectedItem - fullName: Terminal.Gui.ComboBox.OnOpenSelectedItem() - nameWithType: ComboBox.OnOpenSelectedItem() -- uid: Terminal.Gui.ComboBox.OnOpenSelectedItem* - name: OnOpenSelectedItem - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnOpenSelectedItem_ - commentId: Overload:Terminal.Gui.ComboBox.OnOpenSelectedItem - isSpec: "True" - fullName: Terminal.Gui.ComboBox.OnOpenSelectedItem - nameWithType: ComboBox.OnOpenSelectedItem -- uid: Terminal.Gui.ComboBox.OnSelectedChanged - name: OnSelectedChanged() - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnSelectedChanged - commentId: M:Terminal.Gui.ComboBox.OnSelectedChanged - fullName: Terminal.Gui.ComboBox.OnSelectedChanged() - nameWithType: ComboBox.OnSelectedChanged() -- uid: Terminal.Gui.ComboBox.OnSelectedChanged* - name: OnSelectedChanged - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OnSelectedChanged_ - commentId: Overload:Terminal.Gui.ComboBox.OnSelectedChanged - isSpec: "True" - fullName: Terminal.Gui.ComboBox.OnSelectedChanged - nameWithType: ComboBox.OnSelectedChanged -- uid: Terminal.Gui.ComboBox.OpenSelectedItem - name: OpenSelectedItem - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_OpenSelectedItem - commentId: E:Terminal.Gui.ComboBox.OpenSelectedItem - fullName: Terminal.Gui.ComboBox.OpenSelectedItem - nameWithType: ComboBox.OpenSelectedItem -- uid: Terminal.Gui.ComboBox.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.ComboBox.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.ComboBox.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: ComboBox.ProcessKey(KeyEvent) -- uid: Terminal.Gui.ComboBox.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_ProcessKey_ - commentId: Overload:Terminal.Gui.ComboBox.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.ComboBox.ProcessKey - nameWithType: ComboBox.ProcessKey -- uid: Terminal.Gui.ComboBox.ReadOnly - name: ReadOnly - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_ReadOnly - commentId: P:Terminal.Gui.ComboBox.ReadOnly - fullName: Terminal.Gui.ComboBox.ReadOnly - nameWithType: ComboBox.ReadOnly -- uid: Terminal.Gui.ComboBox.ReadOnly* - name: ReadOnly - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_ReadOnly_ - commentId: Overload:Terminal.Gui.ComboBox.ReadOnly - isSpec: "True" - fullName: Terminal.Gui.ComboBox.ReadOnly - nameWithType: ComboBox.ReadOnly -- uid: Terminal.Gui.ComboBox.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ComboBox.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.ComboBox.Redraw(Terminal.Gui.Rect) - nameWithType: ComboBox.Redraw(Rect) -- uid: Terminal.Gui.ComboBox.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Redraw_ - commentId: Overload:Terminal.Gui.ComboBox.Redraw - isSpec: "True" - fullName: Terminal.Gui.ComboBox.Redraw - nameWithType: ComboBox.Redraw -- uid: Terminal.Gui.ComboBox.SelectedItem - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_SelectedItem - commentId: P:Terminal.Gui.ComboBox.SelectedItem - fullName: Terminal.Gui.ComboBox.SelectedItem - nameWithType: ComboBox.SelectedItem -- uid: Terminal.Gui.ComboBox.SelectedItem* - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_SelectedItem_ - commentId: Overload:Terminal.Gui.ComboBox.SelectedItem - isSpec: "True" - fullName: Terminal.Gui.ComboBox.SelectedItem - nameWithType: ComboBox.SelectedItem -- uid: Terminal.Gui.ComboBox.SelectedItemChanged - name: SelectedItemChanged - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_SelectedItemChanged - commentId: E:Terminal.Gui.ComboBox.SelectedItemChanged - fullName: Terminal.Gui.ComboBox.SelectedItemChanged - nameWithType: ComboBox.SelectedItemChanged -- uid: Terminal.Gui.ComboBox.SetSource(System.Collections.IList) - name: SetSource(IList) - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_SetSource_System_Collections_IList_ - commentId: M:Terminal.Gui.ComboBox.SetSource(System.Collections.IList) - fullName: Terminal.Gui.ComboBox.SetSource(System.Collections.IList) - nameWithType: ComboBox.SetSource(IList) -- uid: Terminal.Gui.ComboBox.SetSource* - name: SetSource - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_SetSource_ - commentId: Overload:Terminal.Gui.ComboBox.SetSource - isSpec: "True" - fullName: Terminal.Gui.ComboBox.SetSource - nameWithType: ComboBox.SetSource -- uid: Terminal.Gui.ComboBox.Source - name: Source - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Source - commentId: P:Terminal.Gui.ComboBox.Source - fullName: Terminal.Gui.ComboBox.Source - nameWithType: ComboBox.Source -- uid: Terminal.Gui.ComboBox.Source* - name: Source - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Source_ - commentId: Overload:Terminal.Gui.ComboBox.Source - isSpec: "True" - fullName: Terminal.Gui.ComboBox.Source - nameWithType: ComboBox.Source -- uid: Terminal.Gui.ComboBox.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Text - commentId: P:Terminal.Gui.ComboBox.Text - fullName: Terminal.Gui.ComboBox.Text - nameWithType: ComboBox.Text -- uid: Terminal.Gui.ComboBox.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.ComboBox.html#Terminal_Gui_ComboBox_Text_ - commentId: Overload:Terminal.Gui.ComboBox.Text - isSpec: "True" - fullName: Terminal.Gui.ComboBox.Text - nameWithType: ComboBox.Text -- uid: Terminal.Gui.Command - name: Command - href: api/Terminal.Gui/Terminal.Gui.Command.html - commentId: T:Terminal.Gui.Command - fullName: Terminal.Gui.Command - nameWithType: Command -- uid: Terminal.Gui.Command.Accept - name: Accept - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Accept - commentId: F:Terminal.Gui.Command.Accept - fullName: Terminal.Gui.Command.Accept - nameWithType: Command.Accept -- uid: Terminal.Gui.Command.BackTab - name: BackTab - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_BackTab - commentId: F:Terminal.Gui.Command.BackTab - fullName: Terminal.Gui.Command.BackTab - nameWithType: Command.BackTab -- uid: Terminal.Gui.Command.BottomEnd - name: BottomEnd - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_BottomEnd - commentId: F:Terminal.Gui.Command.BottomEnd - fullName: Terminal.Gui.Command.BottomEnd - nameWithType: Command.BottomEnd -- uid: Terminal.Gui.Command.BottomEndExtend - name: BottomEndExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_BottomEndExtend - commentId: F:Terminal.Gui.Command.BottomEndExtend - fullName: Terminal.Gui.Command.BottomEndExtend - nameWithType: Command.BottomEndExtend -- uid: Terminal.Gui.Command.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Cancel - commentId: F:Terminal.Gui.Command.Cancel - fullName: Terminal.Gui.Command.Cancel - nameWithType: Command.Cancel -- uid: Terminal.Gui.Command.Collapse - name: Collapse - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Collapse - commentId: F:Terminal.Gui.Command.Collapse - fullName: Terminal.Gui.Command.Collapse - nameWithType: Command.Collapse -- uid: Terminal.Gui.Command.CollapseAll - name: CollapseAll - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_CollapseAll - commentId: F:Terminal.Gui.Command.CollapseAll - fullName: Terminal.Gui.Command.CollapseAll - nameWithType: Command.CollapseAll -- uid: Terminal.Gui.Command.Copy - name: Copy - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Copy - commentId: F:Terminal.Gui.Command.Copy - fullName: Terminal.Gui.Command.Copy - nameWithType: Command.Copy -- uid: Terminal.Gui.Command.Cut - name: Cut - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Cut - commentId: F:Terminal.Gui.Command.Cut - fullName: Terminal.Gui.Command.Cut - nameWithType: Command.Cut -- uid: Terminal.Gui.Command.CutToEndLine - name: CutToEndLine - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_CutToEndLine - commentId: F:Terminal.Gui.Command.CutToEndLine - fullName: Terminal.Gui.Command.CutToEndLine - nameWithType: Command.CutToEndLine -- uid: Terminal.Gui.Command.CutToStartLine - name: CutToStartLine - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_CutToStartLine - commentId: F:Terminal.Gui.Command.CutToStartLine - fullName: Terminal.Gui.Command.CutToStartLine - nameWithType: Command.CutToStartLine -- uid: Terminal.Gui.Command.DeleteAll - name: DeleteAll - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_DeleteAll - commentId: F:Terminal.Gui.Command.DeleteAll - fullName: Terminal.Gui.Command.DeleteAll - nameWithType: Command.DeleteAll -- uid: Terminal.Gui.Command.DeleteCharLeft - name: DeleteCharLeft - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_DeleteCharLeft - commentId: F:Terminal.Gui.Command.DeleteCharLeft - fullName: Terminal.Gui.Command.DeleteCharLeft - nameWithType: Command.DeleteCharLeft -- uid: Terminal.Gui.Command.DeleteCharRight - name: DeleteCharRight - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_DeleteCharRight - commentId: F:Terminal.Gui.Command.DeleteCharRight - fullName: Terminal.Gui.Command.DeleteCharRight - nameWithType: Command.DeleteCharRight -- uid: Terminal.Gui.Command.DisableOverwrite - name: DisableOverwrite - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_DisableOverwrite - commentId: F:Terminal.Gui.Command.DisableOverwrite - fullName: Terminal.Gui.Command.DisableOverwrite - nameWithType: Command.DisableOverwrite -- uid: Terminal.Gui.Command.EnableOverwrite - name: EnableOverwrite - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_EnableOverwrite - commentId: F:Terminal.Gui.Command.EnableOverwrite - fullName: Terminal.Gui.Command.EnableOverwrite - nameWithType: Command.EnableOverwrite -- uid: Terminal.Gui.Command.EndOfLine - name: EndOfLine - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_EndOfLine - commentId: F:Terminal.Gui.Command.EndOfLine - fullName: Terminal.Gui.Command.EndOfLine - nameWithType: Command.EndOfLine -- uid: Terminal.Gui.Command.EndOfLineExtend - name: EndOfLineExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_EndOfLineExtend - commentId: F:Terminal.Gui.Command.EndOfLineExtend - fullName: Terminal.Gui.Command.EndOfLineExtend - nameWithType: Command.EndOfLineExtend -- uid: Terminal.Gui.Command.EndOfPage - name: EndOfPage - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_EndOfPage - commentId: F:Terminal.Gui.Command.EndOfPage - fullName: Terminal.Gui.Command.EndOfPage - nameWithType: Command.EndOfPage -- uid: Terminal.Gui.Command.Expand - name: Expand - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Expand - commentId: F:Terminal.Gui.Command.Expand - fullName: Terminal.Gui.Command.Expand - nameWithType: Command.Expand -- uid: Terminal.Gui.Command.ExpandAll - name: ExpandAll - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ExpandAll - commentId: F:Terminal.Gui.Command.ExpandAll - fullName: Terminal.Gui.Command.ExpandAll - nameWithType: Command.ExpandAll -- uid: Terminal.Gui.Command.KillWordBackwards - name: KillWordBackwards - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_KillWordBackwards - commentId: F:Terminal.Gui.Command.KillWordBackwards - fullName: Terminal.Gui.Command.KillWordBackwards - nameWithType: Command.KillWordBackwards -- uid: Terminal.Gui.Command.KillWordForwards - name: KillWordForwards - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_KillWordForwards - commentId: F:Terminal.Gui.Command.KillWordForwards - fullName: Terminal.Gui.Command.KillWordForwards - nameWithType: Command.KillWordForwards -- uid: Terminal.Gui.Command.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Left - commentId: F:Terminal.Gui.Command.Left - fullName: Terminal.Gui.Command.Left - nameWithType: Command.Left -- uid: Terminal.Gui.Command.LeftExtend - name: LeftExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LeftExtend - commentId: F:Terminal.Gui.Command.LeftExtend - fullName: Terminal.Gui.Command.LeftExtend - nameWithType: Command.LeftExtend -- uid: Terminal.Gui.Command.LeftHome - name: LeftHome - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LeftHome - commentId: F:Terminal.Gui.Command.LeftHome - fullName: Terminal.Gui.Command.LeftHome - nameWithType: Command.LeftHome -- uid: Terminal.Gui.Command.LeftHomeExtend - name: LeftHomeExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LeftHomeExtend - commentId: F:Terminal.Gui.Command.LeftHomeExtend - fullName: Terminal.Gui.Command.LeftHomeExtend - nameWithType: Command.LeftHomeExtend -- uid: Terminal.Gui.Command.LineDown - name: LineDown - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LineDown - commentId: F:Terminal.Gui.Command.LineDown - fullName: Terminal.Gui.Command.LineDown - nameWithType: Command.LineDown -- uid: Terminal.Gui.Command.LineDownExtend - name: LineDownExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LineDownExtend - commentId: F:Terminal.Gui.Command.LineDownExtend - fullName: Terminal.Gui.Command.LineDownExtend - nameWithType: Command.LineDownExtend -- uid: Terminal.Gui.Command.LineDownToLastBranch - name: LineDownToLastBranch - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LineDownToLastBranch - commentId: F:Terminal.Gui.Command.LineDownToLastBranch - fullName: Terminal.Gui.Command.LineDownToLastBranch - nameWithType: Command.LineDownToLastBranch -- uid: Terminal.Gui.Command.LineUp - name: LineUp - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LineUp - commentId: F:Terminal.Gui.Command.LineUp - fullName: Terminal.Gui.Command.LineUp - nameWithType: Command.LineUp -- uid: Terminal.Gui.Command.LineUpExtend - name: LineUpExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LineUpExtend - commentId: F:Terminal.Gui.Command.LineUpExtend - fullName: Terminal.Gui.Command.LineUpExtend - nameWithType: Command.LineUpExtend -- uid: Terminal.Gui.Command.LineUpToFirstBranch - name: LineUpToFirstBranch - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_LineUpToFirstBranch - commentId: F:Terminal.Gui.Command.LineUpToFirstBranch - fullName: Terminal.Gui.Command.LineUpToFirstBranch - nameWithType: Command.LineUpToFirstBranch -- uid: Terminal.Gui.Command.NewLine - name: NewLine - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_NewLine - commentId: F:Terminal.Gui.Command.NewLine - fullName: Terminal.Gui.Command.NewLine - nameWithType: Command.NewLine -- uid: Terminal.Gui.Command.NextView - name: NextView - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_NextView - commentId: F:Terminal.Gui.Command.NextView - fullName: Terminal.Gui.Command.NextView - nameWithType: Command.NextView -- uid: Terminal.Gui.Command.NextViewOrTop - name: NextViewOrTop - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_NextViewOrTop - commentId: F:Terminal.Gui.Command.NextViewOrTop - fullName: Terminal.Gui.Command.NextViewOrTop - nameWithType: Command.NextViewOrTop -- uid: Terminal.Gui.Command.OpenSelectedItem - name: OpenSelectedItem - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_OpenSelectedItem - commentId: F:Terminal.Gui.Command.OpenSelectedItem - fullName: Terminal.Gui.Command.OpenSelectedItem - nameWithType: Command.OpenSelectedItem -- uid: Terminal.Gui.Command.PageDown - name: PageDown - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PageDown - commentId: F:Terminal.Gui.Command.PageDown - fullName: Terminal.Gui.Command.PageDown - nameWithType: Command.PageDown -- uid: Terminal.Gui.Command.PageDownExtend - name: PageDownExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PageDownExtend - commentId: F:Terminal.Gui.Command.PageDownExtend - fullName: Terminal.Gui.Command.PageDownExtend - nameWithType: Command.PageDownExtend -- uid: Terminal.Gui.Command.PageLeft - name: PageLeft - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PageLeft - commentId: F:Terminal.Gui.Command.PageLeft - fullName: Terminal.Gui.Command.PageLeft - nameWithType: Command.PageLeft -- uid: Terminal.Gui.Command.PageRight - name: PageRight - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PageRight - commentId: F:Terminal.Gui.Command.PageRight - fullName: Terminal.Gui.Command.PageRight - nameWithType: Command.PageRight -- uid: Terminal.Gui.Command.PageUp - name: PageUp - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PageUp - commentId: F:Terminal.Gui.Command.PageUp - fullName: Terminal.Gui.Command.PageUp - nameWithType: Command.PageUp -- uid: Terminal.Gui.Command.PageUpExtend - name: PageUpExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PageUpExtend - commentId: F:Terminal.Gui.Command.PageUpExtend - fullName: Terminal.Gui.Command.PageUpExtend - nameWithType: Command.PageUpExtend -- uid: Terminal.Gui.Command.Paste - name: Paste - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Paste - commentId: F:Terminal.Gui.Command.Paste - fullName: Terminal.Gui.Command.Paste - nameWithType: Command.Paste -- uid: Terminal.Gui.Command.PreviousView - name: PreviousView - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PreviousView - commentId: F:Terminal.Gui.Command.PreviousView - fullName: Terminal.Gui.Command.PreviousView - nameWithType: Command.PreviousView -- uid: Terminal.Gui.Command.PreviousViewOrTop - name: PreviousViewOrTop - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_PreviousViewOrTop - commentId: F:Terminal.Gui.Command.PreviousViewOrTop - fullName: Terminal.Gui.Command.PreviousViewOrTop - nameWithType: Command.PreviousViewOrTop -- uid: Terminal.Gui.Command.QuitToplevel - name: QuitToplevel - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_QuitToplevel - commentId: F:Terminal.Gui.Command.QuitToplevel - fullName: Terminal.Gui.Command.QuitToplevel - nameWithType: Command.QuitToplevel -- uid: Terminal.Gui.Command.Redo - name: Redo - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Redo - commentId: F:Terminal.Gui.Command.Redo - fullName: Terminal.Gui.Command.Redo - nameWithType: Command.Redo -- uid: Terminal.Gui.Command.Refresh - name: Refresh - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Refresh - commentId: F:Terminal.Gui.Command.Refresh - fullName: Terminal.Gui.Command.Refresh - nameWithType: Command.Refresh -- uid: Terminal.Gui.Command.Right - name: Right - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Right - commentId: F:Terminal.Gui.Command.Right - fullName: Terminal.Gui.Command.Right - nameWithType: Command.Right -- uid: Terminal.Gui.Command.RightEnd - name: RightEnd - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_RightEnd - commentId: F:Terminal.Gui.Command.RightEnd - fullName: Terminal.Gui.Command.RightEnd - nameWithType: Command.RightEnd -- uid: Terminal.Gui.Command.RightEndExtend - name: RightEndExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_RightEndExtend - commentId: F:Terminal.Gui.Command.RightEndExtend - fullName: Terminal.Gui.Command.RightEndExtend - nameWithType: Command.RightEndExtend -- uid: Terminal.Gui.Command.RightExtend - name: RightExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_RightExtend - commentId: F:Terminal.Gui.Command.RightExtend - fullName: Terminal.Gui.Command.RightExtend - nameWithType: Command.RightExtend -- uid: Terminal.Gui.Command.ScrollDown - name: ScrollDown - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ScrollDown - commentId: F:Terminal.Gui.Command.ScrollDown - fullName: Terminal.Gui.Command.ScrollDown - nameWithType: Command.ScrollDown -- uid: Terminal.Gui.Command.ScrollLeft - name: ScrollLeft - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ScrollLeft - commentId: F:Terminal.Gui.Command.ScrollLeft - fullName: Terminal.Gui.Command.ScrollLeft - nameWithType: Command.ScrollLeft -- uid: Terminal.Gui.Command.ScrollRight - name: ScrollRight - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ScrollRight - commentId: F:Terminal.Gui.Command.ScrollRight - fullName: Terminal.Gui.Command.ScrollRight - nameWithType: Command.ScrollRight -- uid: Terminal.Gui.Command.ScrollUp - name: ScrollUp - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ScrollUp - commentId: F:Terminal.Gui.Command.ScrollUp - fullName: Terminal.Gui.Command.ScrollUp - nameWithType: Command.ScrollUp -- uid: Terminal.Gui.Command.SelectAll - name: SelectAll - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_SelectAll - commentId: F:Terminal.Gui.Command.SelectAll - fullName: Terminal.Gui.Command.SelectAll - nameWithType: Command.SelectAll -- uid: Terminal.Gui.Command.StartOfLine - name: StartOfLine - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_StartOfLine - commentId: F:Terminal.Gui.Command.StartOfLine - fullName: Terminal.Gui.Command.StartOfLine - nameWithType: Command.StartOfLine -- uid: Terminal.Gui.Command.StartOfLineExtend - name: StartOfLineExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_StartOfLineExtend - commentId: F:Terminal.Gui.Command.StartOfLineExtend - fullName: Terminal.Gui.Command.StartOfLineExtend - nameWithType: Command.StartOfLineExtend -- uid: Terminal.Gui.Command.StartOfPage - name: StartOfPage - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_StartOfPage - commentId: F:Terminal.Gui.Command.StartOfPage - fullName: Terminal.Gui.Command.StartOfPage - nameWithType: Command.StartOfPage -- uid: Terminal.Gui.Command.Suspend - name: Suspend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Suspend - commentId: F:Terminal.Gui.Command.Suspend - fullName: Terminal.Gui.Command.Suspend - nameWithType: Command.Suspend -- uid: Terminal.Gui.Command.Tab - name: Tab - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Tab - commentId: F:Terminal.Gui.Command.Tab - fullName: Terminal.Gui.Command.Tab - nameWithType: Command.Tab -- uid: Terminal.Gui.Command.ToggleChecked - name: ToggleChecked - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ToggleChecked - commentId: F:Terminal.Gui.Command.ToggleChecked - fullName: Terminal.Gui.Command.ToggleChecked - nameWithType: Command.ToggleChecked -- uid: Terminal.Gui.Command.ToggleExpandCollapse - name: ToggleExpandCollapse - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ToggleExpandCollapse - commentId: F:Terminal.Gui.Command.ToggleExpandCollapse - fullName: Terminal.Gui.Command.ToggleExpandCollapse - nameWithType: Command.ToggleExpandCollapse -- uid: Terminal.Gui.Command.ToggleExtend - name: ToggleExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ToggleExtend - commentId: F:Terminal.Gui.Command.ToggleExtend - fullName: Terminal.Gui.Command.ToggleExtend - nameWithType: Command.ToggleExtend -- uid: Terminal.Gui.Command.ToggleOverwrite - name: ToggleOverwrite - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_ToggleOverwrite - commentId: F:Terminal.Gui.Command.ToggleOverwrite - fullName: Terminal.Gui.Command.ToggleOverwrite - nameWithType: Command.ToggleOverwrite -- uid: Terminal.Gui.Command.TopHome - name: TopHome - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_TopHome - commentId: F:Terminal.Gui.Command.TopHome - fullName: Terminal.Gui.Command.TopHome - nameWithType: Command.TopHome -- uid: Terminal.Gui.Command.TopHomeExtend - name: TopHomeExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_TopHomeExtend - commentId: F:Terminal.Gui.Command.TopHomeExtend - fullName: Terminal.Gui.Command.TopHomeExtend - nameWithType: Command.TopHomeExtend -- uid: Terminal.Gui.Command.Undo - name: Undo - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_Undo - commentId: F:Terminal.Gui.Command.Undo - fullName: Terminal.Gui.Command.Undo - nameWithType: Command.Undo -- uid: Terminal.Gui.Command.UnixEmulation - name: UnixEmulation - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_UnixEmulation - commentId: F:Terminal.Gui.Command.UnixEmulation - fullName: Terminal.Gui.Command.UnixEmulation - nameWithType: Command.UnixEmulation -- uid: Terminal.Gui.Command.WordLeft - name: WordLeft - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_WordLeft - commentId: F:Terminal.Gui.Command.WordLeft - fullName: Terminal.Gui.Command.WordLeft - nameWithType: Command.WordLeft -- uid: Terminal.Gui.Command.WordLeftExtend - name: WordLeftExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_WordLeftExtend - commentId: F:Terminal.Gui.Command.WordLeftExtend - fullName: Terminal.Gui.Command.WordLeftExtend - nameWithType: Command.WordLeftExtend -- uid: Terminal.Gui.Command.WordRight - name: WordRight - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_WordRight - commentId: F:Terminal.Gui.Command.WordRight - fullName: Terminal.Gui.Command.WordRight - nameWithType: Command.WordRight -- uid: Terminal.Gui.Command.WordRightExtend - name: WordRightExtend - href: api/Terminal.Gui/Terminal.Gui.Command.html#Terminal_Gui_Command_WordRightExtend - commentId: F:Terminal.Gui.Command.WordRightExtend - fullName: Terminal.Gui.Command.WordRightExtend - nameWithType: Command.WordRightExtend -- uid: Terminal.Gui.ConsoleDriver - name: ConsoleDriver - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html - commentId: T:Terminal.Gui.ConsoleDriver - fullName: Terminal.Gui.ConsoleDriver - nameWithType: ConsoleDriver -- uid: Terminal.Gui.ConsoleDriver.AddRune(System.Rune) - name: AddRune(Rune) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_AddRune_System_Rune_ - commentId: M:Terminal.Gui.ConsoleDriver.AddRune(System.Rune) - fullName: Terminal.Gui.ConsoleDriver.AddRune(System.Rune) - nameWithType: ConsoleDriver.AddRune(Rune) -- uid: Terminal.Gui.ConsoleDriver.AddRune* - name: AddRune - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_AddRune_ - commentId: Overload:Terminal.Gui.ConsoleDriver.AddRune - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.AddRune - nameWithType: ConsoleDriver.AddRune -- uid: Terminal.Gui.ConsoleDriver.AddStr(NStack.ustring) - name: AddStr(ustring) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_AddStr_NStack_ustring_ - commentId: M:Terminal.Gui.ConsoleDriver.AddStr(NStack.ustring) - fullName: Terminal.Gui.ConsoleDriver.AddStr(NStack.ustring) - nameWithType: ConsoleDriver.AddStr(ustring) -- uid: Terminal.Gui.ConsoleDriver.AddStr* - name: AddStr - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_AddStr_ - commentId: Overload:Terminal.Gui.ConsoleDriver.AddStr - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.AddStr - nameWithType: ConsoleDriver.AddStr -- uid: Terminal.Gui.ConsoleDriver.BlocksMeterSegment - name: BlocksMeterSegment - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_BlocksMeterSegment - commentId: F:Terminal.Gui.ConsoleDriver.BlocksMeterSegment - fullName: Terminal.Gui.ConsoleDriver.BlocksMeterSegment - nameWithType: ConsoleDriver.BlocksMeterSegment -- uid: Terminal.Gui.ConsoleDriver.BottomTee - name: BottomTee - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_BottomTee - commentId: F:Terminal.Gui.ConsoleDriver.BottomTee - fullName: Terminal.Gui.ConsoleDriver.BottomTee - nameWithType: ConsoleDriver.BottomTee -- uid: Terminal.Gui.ConsoleDriver.Checked - name: Checked - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Checked - commentId: F:Terminal.Gui.ConsoleDriver.Checked - fullName: Terminal.Gui.ConsoleDriver.Checked - nameWithType: ConsoleDriver.Checked -- uid: Terminal.Gui.ConsoleDriver.Clip - name: Clip - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Clip - commentId: P:Terminal.Gui.ConsoleDriver.Clip - fullName: Terminal.Gui.ConsoleDriver.Clip - nameWithType: ConsoleDriver.Clip -- uid: Terminal.Gui.ConsoleDriver.Clip* - name: Clip - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Clip_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Clip - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Clip - nameWithType: ConsoleDriver.Clip -- uid: Terminal.Gui.ConsoleDriver.Clipboard - name: Clipboard - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Clipboard - commentId: P:Terminal.Gui.ConsoleDriver.Clipboard - fullName: Terminal.Gui.ConsoleDriver.Clipboard - nameWithType: ConsoleDriver.Clipboard -- uid: Terminal.Gui.ConsoleDriver.Clipboard* - name: Clipboard - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Clipboard_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Clipboard - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Clipboard - nameWithType: ConsoleDriver.Clipboard -- uid: Terminal.Gui.ConsoleDriver.Cols - name: Cols - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Cols - commentId: P:Terminal.Gui.ConsoleDriver.Cols - fullName: Terminal.Gui.ConsoleDriver.Cols - nameWithType: ConsoleDriver.Cols -- uid: Terminal.Gui.ConsoleDriver.Cols* - name: Cols - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Cols_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Cols - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Cols - nameWithType: ConsoleDriver.Cols -- uid: Terminal.Gui.ConsoleDriver.Contents - name: Contents - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Contents - commentId: P:Terminal.Gui.ConsoleDriver.Contents - fullName: Terminal.Gui.ConsoleDriver.Contents - nameWithType: ConsoleDriver.Contents -- uid: Terminal.Gui.ConsoleDriver.Contents* - name: Contents - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Contents_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Contents - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Contents - nameWithType: ConsoleDriver.Contents -- uid: Terminal.Gui.ConsoleDriver.ContinuousMeterSegment - name: ContinuousMeterSegment - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_ContinuousMeterSegment - commentId: F:Terminal.Gui.ConsoleDriver.ContinuousMeterSegment - fullName: Terminal.Gui.ConsoleDriver.ContinuousMeterSegment - nameWithType: ConsoleDriver.ContinuousMeterSegment -- uid: Terminal.Gui.ConsoleDriver.CookMouse - name: CookMouse() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_CookMouse - commentId: M:Terminal.Gui.ConsoleDriver.CookMouse - fullName: Terminal.Gui.ConsoleDriver.CookMouse() - nameWithType: ConsoleDriver.CookMouse() -- uid: Terminal.Gui.ConsoleDriver.CookMouse* - name: CookMouse - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_CookMouse_ - commentId: Overload:Terminal.Gui.ConsoleDriver.CookMouse - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.CookMouse - nameWithType: ConsoleDriver.CookMouse -- uid: Terminal.Gui.ConsoleDriver.CreateColors(System.Boolean) - name: CreateColors(Boolean) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_CreateColors_System_Boolean_ - commentId: M:Terminal.Gui.ConsoleDriver.CreateColors(System.Boolean) - fullName: Terminal.Gui.ConsoleDriver.CreateColors(System.Boolean) - nameWithType: ConsoleDriver.CreateColors(Boolean) -- uid: Terminal.Gui.ConsoleDriver.CreateColors* - name: CreateColors - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_CreateColors_ - commentId: Overload:Terminal.Gui.ConsoleDriver.CreateColors - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.CreateColors - nameWithType: ConsoleDriver.CreateColors -- uid: Terminal.Gui.ConsoleDriver.DiagnosticFlags - name: ConsoleDriver.DiagnosticFlags - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html - commentId: T:Terminal.Gui.ConsoleDriver.DiagnosticFlags - fullName: Terminal.Gui.ConsoleDriver.DiagnosticFlags - nameWithType: ConsoleDriver.DiagnosticFlags -- uid: Terminal.Gui.ConsoleDriver.DiagnosticFlags.FramePadding - name: FramePadding - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html#Terminal_Gui_ConsoleDriver_DiagnosticFlags_FramePadding - commentId: F:Terminal.Gui.ConsoleDriver.DiagnosticFlags.FramePadding - fullName: Terminal.Gui.ConsoleDriver.DiagnosticFlags.FramePadding - nameWithType: ConsoleDriver.DiagnosticFlags.FramePadding -- uid: Terminal.Gui.ConsoleDriver.DiagnosticFlags.FrameRuler - name: FrameRuler - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html#Terminal_Gui_ConsoleDriver_DiagnosticFlags_FrameRuler - commentId: F:Terminal.Gui.ConsoleDriver.DiagnosticFlags.FrameRuler - fullName: Terminal.Gui.ConsoleDriver.DiagnosticFlags.FrameRuler - nameWithType: ConsoleDriver.DiagnosticFlags.FrameRuler -- uid: Terminal.Gui.ConsoleDriver.DiagnosticFlags.Off - name: Off - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html#Terminal_Gui_ConsoleDriver_DiagnosticFlags_Off - commentId: F:Terminal.Gui.ConsoleDriver.DiagnosticFlags.Off - fullName: Terminal.Gui.ConsoleDriver.DiagnosticFlags.Off - nameWithType: ConsoleDriver.DiagnosticFlags.Off -- uid: Terminal.Gui.ConsoleDriver.Diagnostics - name: Diagnostics - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Diagnostics - commentId: P:Terminal.Gui.ConsoleDriver.Diagnostics - fullName: Terminal.Gui.ConsoleDriver.Diagnostics - nameWithType: ConsoleDriver.Diagnostics -- uid: Terminal.Gui.ConsoleDriver.Diagnostics* - name: Diagnostics - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Diagnostics_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Diagnostics - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Diagnostics - nameWithType: ConsoleDriver.Diagnostics -- uid: Terminal.Gui.ConsoleDriver.Diamond - name: Diamond - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Diamond - commentId: F:Terminal.Gui.ConsoleDriver.Diamond - fullName: Terminal.Gui.ConsoleDriver.Diamond - nameWithType: ConsoleDriver.Diamond -- uid: Terminal.Gui.ConsoleDriver.DownArrow - name: DownArrow - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DownArrow - commentId: F:Terminal.Gui.ConsoleDriver.DownArrow - fullName: Terminal.Gui.ConsoleDriver.DownArrow - nameWithType: ConsoleDriver.DownArrow -- uid: Terminal.Gui.ConsoleDriver.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean) - name: DrawFrame(Rect, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DrawFrame_Terminal_Gui_Rect_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.ConsoleDriver.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean) - fullName: Terminal.Gui.ConsoleDriver.DrawFrame(Terminal.Gui.Rect, System.Int32, System.Boolean) - nameWithType: ConsoleDriver.DrawFrame(Rect, Int32, Boolean) -- uid: Terminal.Gui.ConsoleDriver.DrawFrame* - name: DrawFrame - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DrawFrame_ - commentId: Overload:Terminal.Gui.ConsoleDriver.DrawFrame - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.DrawFrame - nameWithType: ConsoleDriver.DrawFrame -- uid: Terminal.Gui.ConsoleDriver.DrawWindowFrame(Terminal.Gui.Rect,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,Terminal.Gui.Border) - name: DrawWindowFrame(Rect, Int32, Int32, Int32, Int32, Boolean, Boolean, Border) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DrawWindowFrame_Terminal_Gui_Rect_System_Int32_System_Int32_System_Int32_System_Int32_System_Boolean_System_Boolean_Terminal_Gui_Border_ - commentId: M:Terminal.Gui.ConsoleDriver.DrawWindowFrame(Terminal.Gui.Rect,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,Terminal.Gui.Border) - fullName: Terminal.Gui.ConsoleDriver.DrawWindowFrame(Terminal.Gui.Rect, System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Boolean, Terminal.Gui.Border) - nameWithType: ConsoleDriver.DrawWindowFrame(Rect, Int32, Int32, Int32, Int32, Boolean, Boolean, Border) -- uid: Terminal.Gui.ConsoleDriver.DrawWindowFrame* - name: DrawWindowFrame - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DrawWindowFrame_ - commentId: Overload:Terminal.Gui.ConsoleDriver.DrawWindowFrame - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.DrawWindowFrame - nameWithType: ConsoleDriver.DrawWindowFrame -- uid: Terminal.Gui.ConsoleDriver.DrawWindowTitle(Terminal.Gui.Rect,NStack.ustring,System.Int32,System.Int32,System.Int32,System.Int32,Terminal.Gui.TextAlignment) - name: DrawWindowTitle(Rect, ustring, Int32, Int32, Int32, Int32, TextAlignment) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DrawWindowTitle_Terminal_Gui_Rect_NStack_ustring_System_Int32_System_Int32_System_Int32_System_Int32_Terminal_Gui_TextAlignment_ - commentId: M:Terminal.Gui.ConsoleDriver.DrawWindowTitle(Terminal.Gui.Rect,NStack.ustring,System.Int32,System.Int32,System.Int32,System.Int32,Terminal.Gui.TextAlignment) - fullName: Terminal.Gui.ConsoleDriver.DrawWindowTitle(Terminal.Gui.Rect, NStack.ustring, System.Int32, System.Int32, System.Int32, System.Int32, Terminal.Gui.TextAlignment) - nameWithType: ConsoleDriver.DrawWindowTitle(Rect, ustring, Int32, Int32, Int32, Int32, TextAlignment) -- uid: Terminal.Gui.ConsoleDriver.DrawWindowTitle* - name: DrawWindowTitle - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_DrawWindowTitle_ - commentId: Overload:Terminal.Gui.ConsoleDriver.DrawWindowTitle - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.DrawWindowTitle - nameWithType: ConsoleDriver.DrawWindowTitle -- uid: Terminal.Gui.ConsoleDriver.End - name: End() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_End - commentId: M:Terminal.Gui.ConsoleDriver.End - fullName: Terminal.Gui.ConsoleDriver.End() - nameWithType: ConsoleDriver.End() -- uid: Terminal.Gui.ConsoleDriver.End* - name: End - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_End_ - commentId: Overload:Terminal.Gui.ConsoleDriver.End - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.End - nameWithType: ConsoleDriver.End -- uid: Terminal.Gui.ConsoleDriver.EnsureCursorVisibility - name: EnsureCursorVisibility() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_EnsureCursorVisibility - commentId: M:Terminal.Gui.ConsoleDriver.EnsureCursorVisibility - fullName: Terminal.Gui.ConsoleDriver.EnsureCursorVisibility() - nameWithType: ConsoleDriver.EnsureCursorVisibility() -- uid: Terminal.Gui.ConsoleDriver.EnsureCursorVisibility* - name: EnsureCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_EnsureCursorVisibility_ - commentId: Overload:Terminal.Gui.ConsoleDriver.EnsureCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.EnsureCursorVisibility - nameWithType: ConsoleDriver.EnsureCursorVisibility -- uid: Terminal.Gui.ConsoleDriver.GetAttribute - name: GetAttribute() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_GetAttribute - commentId: M:Terminal.Gui.ConsoleDriver.GetAttribute - fullName: Terminal.Gui.ConsoleDriver.GetAttribute() - nameWithType: ConsoleDriver.GetAttribute() -- uid: Terminal.Gui.ConsoleDriver.GetAttribute* - name: GetAttribute - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_GetAttribute_ - commentId: Overload:Terminal.Gui.ConsoleDriver.GetAttribute - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.GetAttribute - nameWithType: ConsoleDriver.GetAttribute -- uid: Terminal.Gui.ConsoleDriver.GetColors(System.Int32,Terminal.Gui.Color@,Terminal.Gui.Color@) - name: GetColors(Int32, out Color, out Color) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_GetColors_System_Int32_Terminal_Gui_Color__Terminal_Gui_Color__ - commentId: M:Terminal.Gui.ConsoleDriver.GetColors(System.Int32,Terminal.Gui.Color@,Terminal.Gui.Color@) - name.vb: GetColors(Int32, ByRef Color, ByRef Color) - fullName: Terminal.Gui.ConsoleDriver.GetColors(System.Int32, out Terminal.Gui.Color, out Terminal.Gui.Color) - fullName.vb: Terminal.Gui.ConsoleDriver.GetColors(System.Int32, ByRef Terminal.Gui.Color, ByRef Terminal.Gui.Color) - nameWithType: ConsoleDriver.GetColors(Int32, out Color, out Color) - nameWithType.vb: ConsoleDriver.GetColors(Int32, ByRef Color, ByRef Color) -- uid: Terminal.Gui.ConsoleDriver.GetColors* - name: GetColors - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_GetColors_ - commentId: Overload:Terminal.Gui.ConsoleDriver.GetColors - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.GetColors - nameWithType: ConsoleDriver.GetColors -- uid: Terminal.Gui.ConsoleDriver.GetCursorVisibility(Terminal.Gui.CursorVisibility@) - name: GetCursorVisibility(out CursorVisibility) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_GetCursorVisibility_Terminal_Gui_CursorVisibility__ - commentId: M:Terminal.Gui.ConsoleDriver.GetCursorVisibility(Terminal.Gui.CursorVisibility@) - name.vb: GetCursorVisibility(ByRef CursorVisibility) - fullName: Terminal.Gui.ConsoleDriver.GetCursorVisibility(out Terminal.Gui.CursorVisibility) - fullName.vb: Terminal.Gui.ConsoleDriver.GetCursorVisibility(ByRef Terminal.Gui.CursorVisibility) - nameWithType: ConsoleDriver.GetCursorVisibility(out CursorVisibility) - nameWithType.vb: ConsoleDriver.GetCursorVisibility(ByRef CursorVisibility) -- uid: Terminal.Gui.ConsoleDriver.GetCursorVisibility* - name: GetCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_GetCursorVisibility_ - commentId: Overload:Terminal.Gui.ConsoleDriver.GetCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.GetCursorVisibility - nameWithType: ConsoleDriver.GetCursorVisibility -- uid: Terminal.Gui.ConsoleDriver.HDLine - name: HDLine - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_HDLine - commentId: F:Terminal.Gui.ConsoleDriver.HDLine - fullName: Terminal.Gui.ConsoleDriver.HDLine - nameWithType: ConsoleDriver.HDLine -- uid: Terminal.Gui.ConsoleDriver.HeightAsBuffer - name: HeightAsBuffer - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_HeightAsBuffer - commentId: P:Terminal.Gui.ConsoleDriver.HeightAsBuffer - fullName: Terminal.Gui.ConsoleDriver.HeightAsBuffer - nameWithType: ConsoleDriver.HeightAsBuffer -- uid: Terminal.Gui.ConsoleDriver.HeightAsBuffer* - name: HeightAsBuffer - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_HeightAsBuffer_ - commentId: Overload:Terminal.Gui.ConsoleDriver.HeightAsBuffer - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.HeightAsBuffer - nameWithType: ConsoleDriver.HeightAsBuffer -- uid: Terminal.Gui.ConsoleDriver.HLine - name: HLine - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_HLine - commentId: F:Terminal.Gui.ConsoleDriver.HLine - fullName: Terminal.Gui.ConsoleDriver.HLine - nameWithType: ConsoleDriver.HLine -- uid: Terminal.Gui.ConsoleDriver.HRLine - name: HRLine - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_HRLine - commentId: F:Terminal.Gui.ConsoleDriver.HRLine - fullName: Terminal.Gui.ConsoleDriver.HRLine - nameWithType: ConsoleDriver.HRLine -- uid: Terminal.Gui.ConsoleDriver.Init(System.Action) - name: Init(Action) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Init_System_Action_ - commentId: M:Terminal.Gui.ConsoleDriver.Init(System.Action) - fullName: Terminal.Gui.ConsoleDriver.Init(System.Action) - nameWithType: ConsoleDriver.Init(Action) -- uid: Terminal.Gui.ConsoleDriver.Init* - name: Init - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Init_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Init - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Init - nameWithType: ConsoleDriver.Init -- uid: Terminal.Gui.ConsoleDriver.IsValidContent(System.Int32,System.Int32,Terminal.Gui.Rect) - name: IsValidContent(Int32, Int32, Rect) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_IsValidContent_System_Int32_System_Int32_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ConsoleDriver.IsValidContent(System.Int32,System.Int32,Terminal.Gui.Rect) - fullName: Terminal.Gui.ConsoleDriver.IsValidContent(System.Int32, System.Int32, Terminal.Gui.Rect) - nameWithType: ConsoleDriver.IsValidContent(Int32, Int32, Rect) -- uid: Terminal.Gui.ConsoleDriver.IsValidContent* - name: IsValidContent - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_IsValidContent_ - commentId: Overload:Terminal.Gui.ConsoleDriver.IsValidContent - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.IsValidContent - nameWithType: ConsoleDriver.IsValidContent -- uid: Terminal.Gui.ConsoleDriver.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Left - commentId: P:Terminal.Gui.ConsoleDriver.Left - fullName: Terminal.Gui.ConsoleDriver.Left - nameWithType: ConsoleDriver.Left -- uid: Terminal.Gui.ConsoleDriver.Left* - name: Left - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Left_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Left - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Left - nameWithType: ConsoleDriver.Left -- uid: Terminal.Gui.ConsoleDriver.LeftArrow - name: LeftArrow - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LeftArrow - commentId: F:Terminal.Gui.ConsoleDriver.LeftArrow - fullName: Terminal.Gui.ConsoleDriver.LeftArrow - nameWithType: ConsoleDriver.LeftArrow -- uid: Terminal.Gui.ConsoleDriver.LeftBracket - name: LeftBracket - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LeftBracket - commentId: F:Terminal.Gui.ConsoleDriver.LeftBracket - fullName: Terminal.Gui.ConsoleDriver.LeftBracket - nameWithType: ConsoleDriver.LeftBracket -- uid: Terminal.Gui.ConsoleDriver.LeftDefaultIndicator - name: LeftDefaultIndicator - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LeftDefaultIndicator - commentId: F:Terminal.Gui.ConsoleDriver.LeftDefaultIndicator - fullName: Terminal.Gui.ConsoleDriver.LeftDefaultIndicator - nameWithType: ConsoleDriver.LeftDefaultIndicator -- uid: Terminal.Gui.ConsoleDriver.LeftTee - name: LeftTee - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LeftTee - commentId: F:Terminal.Gui.ConsoleDriver.LeftTee - fullName: Terminal.Gui.ConsoleDriver.LeftTee - nameWithType: ConsoleDriver.LeftTee -- uid: Terminal.Gui.ConsoleDriver.LLCorner - name: LLCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LLCorner - commentId: F:Terminal.Gui.ConsoleDriver.LLCorner - fullName: Terminal.Gui.ConsoleDriver.LLCorner - nameWithType: ConsoleDriver.LLCorner -- uid: Terminal.Gui.ConsoleDriver.LLDCorner - name: LLDCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LLDCorner - commentId: F:Terminal.Gui.ConsoleDriver.LLDCorner - fullName: Terminal.Gui.ConsoleDriver.LLDCorner - nameWithType: ConsoleDriver.LLDCorner -- uid: Terminal.Gui.ConsoleDriver.LLRCorner - name: LLRCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LLRCorner - commentId: F:Terminal.Gui.ConsoleDriver.LLRCorner - fullName: Terminal.Gui.ConsoleDriver.LLRCorner - nameWithType: ConsoleDriver.LLRCorner -- uid: Terminal.Gui.ConsoleDriver.LRCorner - name: LRCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LRCorner - commentId: F:Terminal.Gui.ConsoleDriver.LRCorner - fullName: Terminal.Gui.ConsoleDriver.LRCorner - nameWithType: ConsoleDriver.LRCorner -- uid: Terminal.Gui.ConsoleDriver.LRDCorner - name: LRDCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LRDCorner - commentId: F:Terminal.Gui.ConsoleDriver.LRDCorner - fullName: Terminal.Gui.ConsoleDriver.LRDCorner - nameWithType: ConsoleDriver.LRDCorner -- uid: Terminal.Gui.ConsoleDriver.LRRCorner - name: LRRCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_LRRCorner - commentId: F:Terminal.Gui.ConsoleDriver.LRRCorner - fullName: Terminal.Gui.ConsoleDriver.LRRCorner - nameWithType: ConsoleDriver.LRRCorner -- uid: Terminal.Gui.ConsoleDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color) - name: MakeAttribute(Color, Color) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_MakeAttribute_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.ConsoleDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.ConsoleDriver.MakeAttribute(Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: ConsoleDriver.MakeAttribute(Color, Color) -- uid: Terminal.Gui.ConsoleDriver.MakeAttribute* - name: MakeAttribute - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_MakeAttribute_ - commentId: Overload:Terminal.Gui.ConsoleDriver.MakeAttribute - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.MakeAttribute - nameWithType: ConsoleDriver.MakeAttribute -- uid: Terminal.Gui.ConsoleDriver.MakeColor(Terminal.Gui.Color,Terminal.Gui.Color) - name: MakeColor(Color, Color) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_MakeColor_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.ConsoleDriver.MakeColor(Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.ConsoleDriver.MakeColor(Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: ConsoleDriver.MakeColor(Color, Color) -- uid: Terminal.Gui.ConsoleDriver.MakeColor* - name: MakeColor - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_MakeColor_ - commentId: Overload:Terminal.Gui.ConsoleDriver.MakeColor - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.MakeColor - nameWithType: ConsoleDriver.MakeColor -- uid: Terminal.Gui.ConsoleDriver.MakePrintable(System.Rune) - name: MakePrintable(Rune) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_MakePrintable_System_Rune_ - commentId: M:Terminal.Gui.ConsoleDriver.MakePrintable(System.Rune) - fullName: Terminal.Gui.ConsoleDriver.MakePrintable(System.Rune) - nameWithType: ConsoleDriver.MakePrintable(Rune) -- uid: Terminal.Gui.ConsoleDriver.MakePrintable* - name: MakePrintable - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_MakePrintable_ - commentId: Overload:Terminal.Gui.ConsoleDriver.MakePrintable - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.MakePrintable - nameWithType: ConsoleDriver.MakePrintable -- uid: Terminal.Gui.ConsoleDriver.Move(System.Int32,System.Int32) - name: Move(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Move_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.ConsoleDriver.Move(System.Int32,System.Int32) - fullName: Terminal.Gui.ConsoleDriver.Move(System.Int32, System.Int32) - nameWithType: ConsoleDriver.Move(Int32, Int32) -- uid: Terminal.Gui.ConsoleDriver.Move* - name: Move - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Move_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Move - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Move - nameWithType: ConsoleDriver.Move -- uid: Terminal.Gui.ConsoleDriver.PrepareToRun(Terminal.Gui.MainLoop,System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.MouseEvent}) - name: PrepareToRun(MainLoop, Action, Action, Action, Action) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_PrepareToRun_Terminal_Gui_MainLoop_System_Action_Terminal_Gui_KeyEvent__System_Action_Terminal_Gui_KeyEvent__System_Action_Terminal_Gui_KeyEvent__System_Action_Terminal_Gui_MouseEvent__ - commentId: M:Terminal.Gui.ConsoleDriver.PrepareToRun(Terminal.Gui.MainLoop,System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.MouseEvent}) - name.vb: PrepareToRun(MainLoop, Action(Of KeyEvent), Action(Of KeyEvent), Action(Of KeyEvent), Action(Of MouseEvent)) - fullName: Terminal.Gui.ConsoleDriver.PrepareToRun(Terminal.Gui.MainLoop, System.Action, System.Action, System.Action, System.Action) - fullName.vb: Terminal.Gui.ConsoleDriver.PrepareToRun(Terminal.Gui.MainLoop, System.Action(Of Terminal.Gui.KeyEvent), System.Action(Of Terminal.Gui.KeyEvent), System.Action(Of Terminal.Gui.KeyEvent), System.Action(Of Terminal.Gui.MouseEvent)) - nameWithType: ConsoleDriver.PrepareToRun(MainLoop, Action, Action, Action, Action) - nameWithType.vb: ConsoleDriver.PrepareToRun(MainLoop, Action(Of KeyEvent), Action(Of KeyEvent), Action(Of KeyEvent), Action(Of MouseEvent)) -- uid: Terminal.Gui.ConsoleDriver.PrepareToRun* - name: PrepareToRun - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_PrepareToRun_ - commentId: Overload:Terminal.Gui.ConsoleDriver.PrepareToRun - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.PrepareToRun - nameWithType: ConsoleDriver.PrepareToRun -- uid: Terminal.Gui.ConsoleDriver.Refresh - name: Refresh() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Refresh - commentId: M:Terminal.Gui.ConsoleDriver.Refresh - fullName: Terminal.Gui.ConsoleDriver.Refresh() - nameWithType: ConsoleDriver.Refresh() -- uid: Terminal.Gui.ConsoleDriver.Refresh* - name: Refresh - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Refresh_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Refresh - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Refresh - nameWithType: ConsoleDriver.Refresh -- uid: Terminal.Gui.ConsoleDriver.ResizeScreen - name: ResizeScreen() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_ResizeScreen - commentId: M:Terminal.Gui.ConsoleDriver.ResizeScreen - fullName: Terminal.Gui.ConsoleDriver.ResizeScreen() - nameWithType: ConsoleDriver.ResizeScreen() -- uid: Terminal.Gui.ConsoleDriver.ResizeScreen* - name: ResizeScreen - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_ResizeScreen_ - commentId: Overload:Terminal.Gui.ConsoleDriver.ResizeScreen - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.ResizeScreen - nameWithType: ConsoleDriver.ResizeScreen -- uid: Terminal.Gui.ConsoleDriver.RightArrow - name: RightArrow - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_RightArrow - commentId: F:Terminal.Gui.ConsoleDriver.RightArrow - fullName: Terminal.Gui.ConsoleDriver.RightArrow - nameWithType: ConsoleDriver.RightArrow -- uid: Terminal.Gui.ConsoleDriver.RightBracket - name: RightBracket - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_RightBracket - commentId: F:Terminal.Gui.ConsoleDriver.RightBracket - fullName: Terminal.Gui.ConsoleDriver.RightBracket - nameWithType: ConsoleDriver.RightBracket -- uid: Terminal.Gui.ConsoleDriver.RightDefaultIndicator - name: RightDefaultIndicator - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_RightDefaultIndicator - commentId: F:Terminal.Gui.ConsoleDriver.RightDefaultIndicator - fullName: Terminal.Gui.ConsoleDriver.RightDefaultIndicator - nameWithType: ConsoleDriver.RightDefaultIndicator -- uid: Terminal.Gui.ConsoleDriver.RightTee - name: RightTee - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_RightTee - commentId: F:Terminal.Gui.ConsoleDriver.RightTee - fullName: Terminal.Gui.ConsoleDriver.RightTee - nameWithType: ConsoleDriver.RightTee -- uid: Terminal.Gui.ConsoleDriver.Rows - name: Rows - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Rows - commentId: P:Terminal.Gui.ConsoleDriver.Rows - fullName: Terminal.Gui.ConsoleDriver.Rows - nameWithType: ConsoleDriver.Rows -- uid: Terminal.Gui.ConsoleDriver.Rows* - name: Rows - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Rows_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Rows - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Rows - nameWithType: ConsoleDriver.Rows -- uid: Terminal.Gui.ConsoleDriver.Selected - name: Selected - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Selected - commentId: F:Terminal.Gui.ConsoleDriver.Selected - fullName: Terminal.Gui.ConsoleDriver.Selected - nameWithType: ConsoleDriver.Selected -- uid: Terminal.Gui.ConsoleDriver.SendKeys(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean) - name: SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SendKeys_System_Char_System_ConsoleKey_System_Boolean_System_Boolean_System_Boolean_ - commentId: M:Terminal.Gui.ConsoleDriver.SendKeys(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean) - fullName: Terminal.Gui.ConsoleDriver.SendKeys(System.Char, System.ConsoleKey, System.Boolean, System.Boolean, System.Boolean) - nameWithType: ConsoleDriver.SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) -- uid: Terminal.Gui.ConsoleDriver.SendKeys* - name: SendKeys - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SendKeys_ - commentId: Overload:Terminal.Gui.ConsoleDriver.SendKeys - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.SendKeys - nameWithType: ConsoleDriver.SendKeys -- uid: Terminal.Gui.ConsoleDriver.SetAttribute(Terminal.Gui.Attribute) - name: SetAttribute(Attribute) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetAttribute_Terminal_Gui_Attribute_ - commentId: M:Terminal.Gui.ConsoleDriver.SetAttribute(Terminal.Gui.Attribute) - fullName: Terminal.Gui.ConsoleDriver.SetAttribute(Terminal.Gui.Attribute) - nameWithType: ConsoleDriver.SetAttribute(Attribute) -- uid: Terminal.Gui.ConsoleDriver.SetAttribute* - name: SetAttribute - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetAttribute_ - commentId: Overload:Terminal.Gui.ConsoleDriver.SetAttribute - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.SetAttribute - nameWithType: ConsoleDriver.SetAttribute -- uid: Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor) - name: SetColors(ConsoleColor, ConsoleColor) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetColors_System_ConsoleColor_System_ConsoleColor_ - commentId: M:Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor) - fullName: Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor, System.ConsoleColor) - nameWithType: ConsoleDriver.SetColors(ConsoleColor, ConsoleColor) -- uid: Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) - name: SetColors(Int16, Int16) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetColors_System_Int16_System_Int16_ - commentId: M:Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) - fullName: Terminal.Gui.ConsoleDriver.SetColors(System.Int16, System.Int16) - nameWithType: ConsoleDriver.SetColors(Int16, Int16) -- uid: Terminal.Gui.ConsoleDriver.SetColors* - name: SetColors - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetColors_ - commentId: Overload:Terminal.Gui.ConsoleDriver.SetColors - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.SetColors - nameWithType: ConsoleDriver.SetColors -- uid: Terminal.Gui.ConsoleDriver.SetCursorVisibility(Terminal.Gui.CursorVisibility) - name: SetCursorVisibility(CursorVisibility) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetCursorVisibility_Terminal_Gui_CursorVisibility_ - commentId: M:Terminal.Gui.ConsoleDriver.SetCursorVisibility(Terminal.Gui.CursorVisibility) - fullName: Terminal.Gui.ConsoleDriver.SetCursorVisibility(Terminal.Gui.CursorVisibility) - nameWithType: ConsoleDriver.SetCursorVisibility(CursorVisibility) -- uid: Terminal.Gui.ConsoleDriver.SetCursorVisibility* - name: SetCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetCursorVisibility_ - commentId: Overload:Terminal.Gui.ConsoleDriver.SetCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.SetCursorVisibility - nameWithType: ConsoleDriver.SetCursorVisibility -- uid: Terminal.Gui.ConsoleDriver.SetTerminalResized(System.Action) - name: SetTerminalResized(Action) - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetTerminalResized_System_Action_ - commentId: M:Terminal.Gui.ConsoleDriver.SetTerminalResized(System.Action) - fullName: Terminal.Gui.ConsoleDriver.SetTerminalResized(System.Action) - nameWithType: ConsoleDriver.SetTerminalResized(Action) -- uid: Terminal.Gui.ConsoleDriver.SetTerminalResized* - name: SetTerminalResized - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetTerminalResized_ - commentId: Overload:Terminal.Gui.ConsoleDriver.SetTerminalResized - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.SetTerminalResized - nameWithType: ConsoleDriver.SetTerminalResized -- uid: Terminal.Gui.ConsoleDriver.StartReportingMouseMoves - name: StartReportingMouseMoves() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_StartReportingMouseMoves - commentId: M:Terminal.Gui.ConsoleDriver.StartReportingMouseMoves - fullName: Terminal.Gui.ConsoleDriver.StartReportingMouseMoves() - nameWithType: ConsoleDriver.StartReportingMouseMoves() -- uid: Terminal.Gui.ConsoleDriver.StartReportingMouseMoves* - name: StartReportingMouseMoves - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_StartReportingMouseMoves_ - commentId: Overload:Terminal.Gui.ConsoleDriver.StartReportingMouseMoves - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.StartReportingMouseMoves - nameWithType: ConsoleDriver.StartReportingMouseMoves -- uid: Terminal.Gui.ConsoleDriver.Stipple - name: Stipple - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Stipple - commentId: F:Terminal.Gui.ConsoleDriver.Stipple - fullName: Terminal.Gui.ConsoleDriver.Stipple - nameWithType: ConsoleDriver.Stipple -- uid: Terminal.Gui.ConsoleDriver.StopReportingMouseMoves - name: StopReportingMouseMoves() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_StopReportingMouseMoves - commentId: M:Terminal.Gui.ConsoleDriver.StopReportingMouseMoves - fullName: Terminal.Gui.ConsoleDriver.StopReportingMouseMoves() - nameWithType: ConsoleDriver.StopReportingMouseMoves() -- uid: Terminal.Gui.ConsoleDriver.StopReportingMouseMoves* - name: StopReportingMouseMoves - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_StopReportingMouseMoves_ - commentId: Overload:Terminal.Gui.ConsoleDriver.StopReportingMouseMoves - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.StopReportingMouseMoves - nameWithType: ConsoleDriver.StopReportingMouseMoves -- uid: Terminal.Gui.ConsoleDriver.Suspend - name: Suspend() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Suspend - commentId: M:Terminal.Gui.ConsoleDriver.Suspend - fullName: Terminal.Gui.ConsoleDriver.Suspend() - nameWithType: ConsoleDriver.Suspend() -- uid: Terminal.Gui.ConsoleDriver.Suspend* - name: Suspend - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Suspend_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Suspend - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Suspend - nameWithType: ConsoleDriver.Suspend -- uid: Terminal.Gui.ConsoleDriver.TerminalResized - name: TerminalResized - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_TerminalResized - commentId: F:Terminal.Gui.ConsoleDriver.TerminalResized - fullName: Terminal.Gui.ConsoleDriver.TerminalResized - nameWithType: ConsoleDriver.TerminalResized -- uid: Terminal.Gui.ConsoleDriver.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Top - commentId: P:Terminal.Gui.ConsoleDriver.Top - fullName: Terminal.Gui.ConsoleDriver.Top - nameWithType: ConsoleDriver.Top -- uid: Terminal.Gui.ConsoleDriver.Top* - name: Top - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_Top_ - commentId: Overload:Terminal.Gui.ConsoleDriver.Top - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.Top - nameWithType: ConsoleDriver.Top -- uid: Terminal.Gui.ConsoleDriver.TopTee - name: TopTee - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_TopTee - commentId: F:Terminal.Gui.ConsoleDriver.TopTee - fullName: Terminal.Gui.ConsoleDriver.TopTee - nameWithType: ConsoleDriver.TopTee -- uid: Terminal.Gui.ConsoleDriver.ULCorner - name: ULCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_ULCorner - commentId: F:Terminal.Gui.ConsoleDriver.ULCorner - fullName: Terminal.Gui.ConsoleDriver.ULCorner - nameWithType: ConsoleDriver.ULCorner -- uid: Terminal.Gui.ConsoleDriver.ULDCorner - name: ULDCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_ULDCorner - commentId: F:Terminal.Gui.ConsoleDriver.ULDCorner - fullName: Terminal.Gui.ConsoleDriver.ULDCorner - nameWithType: ConsoleDriver.ULDCorner -- uid: Terminal.Gui.ConsoleDriver.ULRCorner - name: ULRCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_ULRCorner - commentId: F:Terminal.Gui.ConsoleDriver.ULRCorner - fullName: Terminal.Gui.ConsoleDriver.ULRCorner - nameWithType: ConsoleDriver.ULRCorner -- uid: Terminal.Gui.ConsoleDriver.UnChecked - name: UnChecked - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UnChecked - commentId: F:Terminal.Gui.ConsoleDriver.UnChecked - fullName: Terminal.Gui.ConsoleDriver.UnChecked - nameWithType: ConsoleDriver.UnChecked -- uid: Terminal.Gui.ConsoleDriver.UncookMouse - name: UncookMouse() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UncookMouse - commentId: M:Terminal.Gui.ConsoleDriver.UncookMouse - fullName: Terminal.Gui.ConsoleDriver.UncookMouse() - nameWithType: ConsoleDriver.UncookMouse() -- uid: Terminal.Gui.ConsoleDriver.UncookMouse* - name: UncookMouse - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UncookMouse_ - commentId: Overload:Terminal.Gui.ConsoleDriver.UncookMouse - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.UncookMouse - nameWithType: ConsoleDriver.UncookMouse -- uid: Terminal.Gui.ConsoleDriver.UnSelected - name: UnSelected - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UnSelected - commentId: F:Terminal.Gui.ConsoleDriver.UnSelected - fullName: Terminal.Gui.ConsoleDriver.UnSelected - nameWithType: ConsoleDriver.UnSelected -- uid: Terminal.Gui.ConsoleDriver.UpArrow - name: UpArrow - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpArrow - commentId: F:Terminal.Gui.ConsoleDriver.UpArrow - fullName: Terminal.Gui.ConsoleDriver.UpArrow - nameWithType: ConsoleDriver.UpArrow -- uid: Terminal.Gui.ConsoleDriver.UpdateCursor - name: UpdateCursor() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateCursor - commentId: M:Terminal.Gui.ConsoleDriver.UpdateCursor - fullName: Terminal.Gui.ConsoleDriver.UpdateCursor() - nameWithType: ConsoleDriver.UpdateCursor() -- uid: Terminal.Gui.ConsoleDriver.UpdateCursor* - name: UpdateCursor - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateCursor_ - commentId: Overload:Terminal.Gui.ConsoleDriver.UpdateCursor - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.UpdateCursor - nameWithType: ConsoleDriver.UpdateCursor -- uid: Terminal.Gui.ConsoleDriver.UpdateOffScreen - name: UpdateOffScreen() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateOffScreen - commentId: M:Terminal.Gui.ConsoleDriver.UpdateOffScreen - fullName: Terminal.Gui.ConsoleDriver.UpdateOffScreen() - nameWithType: ConsoleDriver.UpdateOffScreen() -- uid: Terminal.Gui.ConsoleDriver.UpdateOffScreen* - name: UpdateOffScreen - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateOffScreen_ - commentId: Overload:Terminal.Gui.ConsoleDriver.UpdateOffScreen - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.UpdateOffScreen - nameWithType: ConsoleDriver.UpdateOffScreen -- uid: Terminal.Gui.ConsoleDriver.UpdateScreen - name: UpdateScreen() - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateScreen - commentId: M:Terminal.Gui.ConsoleDriver.UpdateScreen - fullName: Terminal.Gui.ConsoleDriver.UpdateScreen() - nameWithType: ConsoleDriver.UpdateScreen() -- uid: Terminal.Gui.ConsoleDriver.UpdateScreen* - name: UpdateScreen - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateScreen_ - commentId: Overload:Terminal.Gui.ConsoleDriver.UpdateScreen - isSpec: "True" - fullName: Terminal.Gui.ConsoleDriver.UpdateScreen - nameWithType: ConsoleDriver.UpdateScreen -- uid: Terminal.Gui.ConsoleDriver.URCorner - name: URCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_URCorner - commentId: F:Terminal.Gui.ConsoleDriver.URCorner - fullName: Terminal.Gui.ConsoleDriver.URCorner - nameWithType: ConsoleDriver.URCorner -- uid: Terminal.Gui.ConsoleDriver.URDCorner - name: URDCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_URDCorner - commentId: F:Terminal.Gui.ConsoleDriver.URDCorner - fullName: Terminal.Gui.ConsoleDriver.URDCorner - nameWithType: ConsoleDriver.URDCorner -- uid: Terminal.Gui.ConsoleDriver.URRCorner - name: URRCorner - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_URRCorner - commentId: F:Terminal.Gui.ConsoleDriver.URRCorner - fullName: Terminal.Gui.ConsoleDriver.URRCorner - nameWithType: ConsoleDriver.URRCorner -- uid: Terminal.Gui.ConsoleDriver.VDLine - name: VDLine - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_VDLine - commentId: F:Terminal.Gui.ConsoleDriver.VDLine - fullName: Terminal.Gui.ConsoleDriver.VDLine - nameWithType: ConsoleDriver.VDLine -- uid: Terminal.Gui.ConsoleDriver.VLine - name: VLine - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_VLine - commentId: F:Terminal.Gui.ConsoleDriver.VLine - fullName: Terminal.Gui.ConsoleDriver.VLine - nameWithType: ConsoleDriver.VLine -- uid: Terminal.Gui.ConsoleDriver.VRLine - name: VRLine - href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_VRLine - commentId: F:Terminal.Gui.ConsoleDriver.VRLine - fullName: Terminal.Gui.ConsoleDriver.VRLine - nameWithType: ConsoleDriver.VRLine -- uid: Terminal.Gui.ContextMenu - name: ContextMenu - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html - commentId: T:Terminal.Gui.ContextMenu - fullName: Terminal.Gui.ContextMenu - nameWithType: ContextMenu -- uid: Terminal.Gui.ContextMenu.#ctor - name: ContextMenu() - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu__ctor - commentId: M:Terminal.Gui.ContextMenu.#ctor - fullName: Terminal.Gui.ContextMenu.ContextMenu() - nameWithType: ContextMenu.ContextMenu() -- uid: Terminal.Gui.ContextMenu.#ctor(System.Int32,System.Int32,Terminal.Gui.MenuBarItem) - name: ContextMenu(Int32, Int32, MenuBarItem) - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu__ctor_System_Int32_System_Int32_Terminal_Gui_MenuBarItem_ - commentId: M:Terminal.Gui.ContextMenu.#ctor(System.Int32,System.Int32,Terminal.Gui.MenuBarItem) - fullName: Terminal.Gui.ContextMenu.ContextMenu(System.Int32, System.Int32, Terminal.Gui.MenuBarItem) - nameWithType: ContextMenu.ContextMenu(Int32, Int32, MenuBarItem) -- uid: Terminal.Gui.ContextMenu.#ctor(Terminal.Gui.View,Terminal.Gui.MenuBarItem) - name: ContextMenu(View, MenuBarItem) - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu__ctor_Terminal_Gui_View_Terminal_Gui_MenuBarItem_ - commentId: M:Terminal.Gui.ContextMenu.#ctor(Terminal.Gui.View,Terminal.Gui.MenuBarItem) - fullName: Terminal.Gui.ContextMenu.ContextMenu(Terminal.Gui.View, Terminal.Gui.MenuBarItem) - nameWithType: ContextMenu.ContextMenu(View, MenuBarItem) -- uid: Terminal.Gui.ContextMenu.#ctor* - name: ContextMenu - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu__ctor_ - commentId: Overload:Terminal.Gui.ContextMenu.#ctor - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.ContextMenu - nameWithType: ContextMenu.ContextMenu -- uid: Terminal.Gui.ContextMenu.Dispose - name: Dispose() - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Dispose - commentId: M:Terminal.Gui.ContextMenu.Dispose - fullName: Terminal.Gui.ContextMenu.Dispose() - nameWithType: ContextMenu.Dispose() -- uid: Terminal.Gui.ContextMenu.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Dispose_ - commentId: Overload:Terminal.Gui.ContextMenu.Dispose - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.Dispose - nameWithType: ContextMenu.Dispose -- uid: Terminal.Gui.ContextMenu.ForceMinimumPosToZero - name: ForceMinimumPosToZero - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_ForceMinimumPosToZero - commentId: P:Terminal.Gui.ContextMenu.ForceMinimumPosToZero - fullName: Terminal.Gui.ContextMenu.ForceMinimumPosToZero - nameWithType: ContextMenu.ForceMinimumPosToZero -- uid: Terminal.Gui.ContextMenu.ForceMinimumPosToZero* - name: ForceMinimumPosToZero - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_ForceMinimumPosToZero_ - commentId: Overload:Terminal.Gui.ContextMenu.ForceMinimumPosToZero - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.ForceMinimumPosToZero - nameWithType: ContextMenu.ForceMinimumPosToZero -- uid: Terminal.Gui.ContextMenu.Hide - name: Hide() - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Hide - commentId: M:Terminal.Gui.ContextMenu.Hide - fullName: Terminal.Gui.ContextMenu.Hide() - nameWithType: ContextMenu.Hide() -- uid: Terminal.Gui.ContextMenu.Hide* - name: Hide - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Hide_ - commentId: Overload:Terminal.Gui.ContextMenu.Hide - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.Hide - nameWithType: ContextMenu.Hide -- uid: Terminal.Gui.ContextMenu.Host - name: Host - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Host - commentId: P:Terminal.Gui.ContextMenu.Host - fullName: Terminal.Gui.ContextMenu.Host - nameWithType: ContextMenu.Host -- uid: Terminal.Gui.ContextMenu.Host* - name: Host - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Host_ - commentId: Overload:Terminal.Gui.ContextMenu.Host - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.Host - nameWithType: ContextMenu.Host -- uid: Terminal.Gui.ContextMenu.IsShow - name: IsShow - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_IsShow - commentId: P:Terminal.Gui.ContextMenu.IsShow - fullName: Terminal.Gui.ContextMenu.IsShow - nameWithType: ContextMenu.IsShow -- uid: Terminal.Gui.ContextMenu.IsShow* - name: IsShow - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_IsShow_ - commentId: Overload:Terminal.Gui.ContextMenu.IsShow - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.IsShow - nameWithType: ContextMenu.IsShow -- uid: Terminal.Gui.ContextMenu.Key - name: Key - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Key - commentId: P:Terminal.Gui.ContextMenu.Key - fullName: Terminal.Gui.ContextMenu.Key - nameWithType: ContextMenu.Key -- uid: Terminal.Gui.ContextMenu.Key* - name: Key - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Key_ - commentId: Overload:Terminal.Gui.ContextMenu.Key - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.Key - nameWithType: ContextMenu.Key -- uid: Terminal.Gui.ContextMenu.KeyChanged - name: KeyChanged - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_KeyChanged - commentId: E:Terminal.Gui.ContextMenu.KeyChanged - fullName: Terminal.Gui.ContextMenu.KeyChanged - nameWithType: ContextMenu.KeyChanged -- uid: Terminal.Gui.ContextMenu.MenuBar - name: MenuBar - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MenuBar - commentId: P:Terminal.Gui.ContextMenu.MenuBar - fullName: Terminal.Gui.ContextMenu.MenuBar - nameWithType: ContextMenu.MenuBar -- uid: Terminal.Gui.ContextMenu.MenuBar* - name: MenuBar - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MenuBar_ - commentId: Overload:Terminal.Gui.ContextMenu.MenuBar - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.MenuBar - nameWithType: ContextMenu.MenuBar -- uid: Terminal.Gui.ContextMenu.MenuItems - name: MenuItems - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MenuItems - commentId: P:Terminal.Gui.ContextMenu.MenuItems - fullName: Terminal.Gui.ContextMenu.MenuItems - nameWithType: ContextMenu.MenuItems -- uid: Terminal.Gui.ContextMenu.MenuItems* - name: MenuItems - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MenuItems_ - commentId: Overload:Terminal.Gui.ContextMenu.MenuItems - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.MenuItems - nameWithType: ContextMenu.MenuItems -- uid: Terminal.Gui.ContextMenu.MouseFlags - name: MouseFlags - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MouseFlags - commentId: P:Terminal.Gui.ContextMenu.MouseFlags - fullName: Terminal.Gui.ContextMenu.MouseFlags - nameWithType: ContextMenu.MouseFlags -- uid: Terminal.Gui.ContextMenu.MouseFlags* - name: MouseFlags - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MouseFlags_ - commentId: Overload:Terminal.Gui.ContextMenu.MouseFlags - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.MouseFlags - nameWithType: ContextMenu.MouseFlags -- uid: Terminal.Gui.ContextMenu.MouseFlagsChanged - name: MouseFlagsChanged - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_MouseFlagsChanged - commentId: E:Terminal.Gui.ContextMenu.MouseFlagsChanged - fullName: Terminal.Gui.ContextMenu.MouseFlagsChanged - nameWithType: ContextMenu.MouseFlagsChanged -- uid: Terminal.Gui.ContextMenu.Position - name: Position - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Position - commentId: P:Terminal.Gui.ContextMenu.Position - fullName: Terminal.Gui.ContextMenu.Position - nameWithType: ContextMenu.Position -- uid: Terminal.Gui.ContextMenu.Position* - name: Position - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Position_ - commentId: Overload:Terminal.Gui.ContextMenu.Position - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.Position - nameWithType: ContextMenu.Position -- uid: Terminal.Gui.ContextMenu.Show - name: Show() - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Show - commentId: M:Terminal.Gui.ContextMenu.Show - fullName: Terminal.Gui.ContextMenu.Show() - nameWithType: ContextMenu.Show() -- uid: Terminal.Gui.ContextMenu.Show* - name: Show - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_Show_ - commentId: Overload:Terminal.Gui.ContextMenu.Show - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.Show - nameWithType: ContextMenu.Show -- uid: Terminal.Gui.ContextMenu.UseSubMenusSingleFrame - name: UseSubMenusSingleFrame - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_UseSubMenusSingleFrame - commentId: P:Terminal.Gui.ContextMenu.UseSubMenusSingleFrame - fullName: Terminal.Gui.ContextMenu.UseSubMenusSingleFrame - nameWithType: ContextMenu.UseSubMenusSingleFrame -- uid: Terminal.Gui.ContextMenu.UseSubMenusSingleFrame* - name: UseSubMenusSingleFrame - href: api/Terminal.Gui/Terminal.Gui.ContextMenu.html#Terminal_Gui_ContextMenu_UseSubMenusSingleFrame_ - commentId: Overload:Terminal.Gui.ContextMenu.UseSubMenusSingleFrame - isSpec: "True" - fullName: Terminal.Gui.ContextMenu.UseSubMenusSingleFrame - nameWithType: ContextMenu.UseSubMenusSingleFrame -- uid: Terminal.Gui.CursorVisibility - name: CursorVisibility - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html - commentId: T:Terminal.Gui.CursorVisibility - fullName: Terminal.Gui.CursorVisibility - nameWithType: CursorVisibility -- uid: Terminal.Gui.CursorVisibility.Box - name: Box - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_Box - commentId: F:Terminal.Gui.CursorVisibility.Box - fullName: Terminal.Gui.CursorVisibility.Box - nameWithType: CursorVisibility.Box -- uid: Terminal.Gui.CursorVisibility.BoxFix - name: BoxFix - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_BoxFix - commentId: F:Terminal.Gui.CursorVisibility.BoxFix - fullName: Terminal.Gui.CursorVisibility.BoxFix - nameWithType: CursorVisibility.BoxFix -- uid: Terminal.Gui.CursorVisibility.Default - name: Default - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_Default - commentId: F:Terminal.Gui.CursorVisibility.Default - fullName: Terminal.Gui.CursorVisibility.Default - nameWithType: CursorVisibility.Default -- uid: Terminal.Gui.CursorVisibility.Invisible - name: Invisible - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_Invisible - commentId: F:Terminal.Gui.CursorVisibility.Invisible - fullName: Terminal.Gui.CursorVisibility.Invisible - nameWithType: CursorVisibility.Invisible -- uid: Terminal.Gui.CursorVisibility.Underline - name: Underline - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_Underline - commentId: F:Terminal.Gui.CursorVisibility.Underline - fullName: Terminal.Gui.CursorVisibility.Underline - nameWithType: CursorVisibility.Underline -- uid: Terminal.Gui.CursorVisibility.UnderlineFix - name: UnderlineFix - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_UnderlineFix - commentId: F:Terminal.Gui.CursorVisibility.UnderlineFix - fullName: Terminal.Gui.CursorVisibility.UnderlineFix - nameWithType: CursorVisibility.UnderlineFix -- uid: Terminal.Gui.CursorVisibility.Vertical - name: Vertical - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_Vertical - commentId: F:Terminal.Gui.CursorVisibility.Vertical - fullName: Terminal.Gui.CursorVisibility.Vertical - nameWithType: CursorVisibility.Vertical -- uid: Terminal.Gui.CursorVisibility.VerticalFix - name: VerticalFix - href: api/Terminal.Gui/Terminal.Gui.CursorVisibility.html#Terminal_Gui_CursorVisibility_VerticalFix - commentId: F:Terminal.Gui.CursorVisibility.VerticalFix - fullName: Terminal.Gui.CursorVisibility.VerticalFix - nameWithType: CursorVisibility.VerticalFix -- uid: Terminal.Gui.DateField - name: DateField - href: api/Terminal.Gui/Terminal.Gui.DateField.html - commentId: T:Terminal.Gui.DateField - fullName: Terminal.Gui.DateField - nameWithType: DateField -- uid: Terminal.Gui.DateField.#ctor - name: DateField() - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField__ctor - commentId: M:Terminal.Gui.DateField.#ctor - fullName: Terminal.Gui.DateField.DateField() - nameWithType: DateField.DateField() -- uid: Terminal.Gui.DateField.#ctor(System.DateTime) - name: DateField(DateTime) - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField__ctor_System_DateTime_ - commentId: M:Terminal.Gui.DateField.#ctor(System.DateTime) - fullName: Terminal.Gui.DateField.DateField(System.DateTime) - nameWithType: DateField.DateField(DateTime) -- uid: Terminal.Gui.DateField.#ctor(System.Int32,System.Int32,System.DateTime,System.Boolean) - name: DateField(Int32, Int32, DateTime, Boolean) - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField__ctor_System_Int32_System_Int32_System_DateTime_System_Boolean_ - commentId: M:Terminal.Gui.DateField.#ctor(System.Int32,System.Int32,System.DateTime,System.Boolean) - fullName: Terminal.Gui.DateField.DateField(System.Int32, System.Int32, System.DateTime, System.Boolean) - nameWithType: DateField.DateField(Int32, Int32, DateTime, Boolean) -- uid: Terminal.Gui.DateField.#ctor* - name: DateField - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField__ctor_ - commentId: Overload:Terminal.Gui.DateField.#ctor - isSpec: "True" - fullName: Terminal.Gui.DateField.DateField - nameWithType: DateField.DateField -- uid: Terminal.Gui.DateField.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_CursorPosition - commentId: P:Terminal.Gui.DateField.CursorPosition - fullName: Terminal.Gui.DateField.CursorPosition - nameWithType: DateField.CursorPosition -- uid: Terminal.Gui.DateField.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_CursorPosition_ - commentId: Overload:Terminal.Gui.DateField.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.DateField.CursorPosition - nameWithType: DateField.CursorPosition -- uid: Terminal.Gui.DateField.Date - name: Date - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_Date - commentId: P:Terminal.Gui.DateField.Date - fullName: Terminal.Gui.DateField.Date - nameWithType: DateField.Date -- uid: Terminal.Gui.DateField.Date* - name: Date - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_Date_ - commentId: Overload:Terminal.Gui.DateField.Date - isSpec: "True" - fullName: Terminal.Gui.DateField.Date - nameWithType: DateField.Date -- uid: Terminal.Gui.DateField.DateChanged - name: DateChanged - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_DateChanged - commentId: E:Terminal.Gui.DateField.DateChanged - fullName: Terminal.Gui.DateField.DateChanged - nameWithType: DateField.DateChanged -- uid: Terminal.Gui.DateField.DeleteCharLeft(System.Boolean) - name: DeleteCharLeft(Boolean) - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_DeleteCharLeft_System_Boolean_ - commentId: M:Terminal.Gui.DateField.DeleteCharLeft(System.Boolean) - fullName: Terminal.Gui.DateField.DeleteCharLeft(System.Boolean) - nameWithType: DateField.DeleteCharLeft(Boolean) -- uid: Terminal.Gui.DateField.DeleteCharLeft* - name: DeleteCharLeft - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_DeleteCharLeft_ - commentId: Overload:Terminal.Gui.DateField.DeleteCharLeft - isSpec: "True" - fullName: Terminal.Gui.DateField.DeleteCharLeft - nameWithType: DateField.DeleteCharLeft -- uid: Terminal.Gui.DateField.DeleteCharRight - name: DeleteCharRight() - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_DeleteCharRight - commentId: M:Terminal.Gui.DateField.DeleteCharRight - fullName: Terminal.Gui.DateField.DeleteCharRight() - nameWithType: DateField.DeleteCharRight() -- uid: Terminal.Gui.DateField.DeleteCharRight* - name: DeleteCharRight - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_DeleteCharRight_ - commentId: Overload:Terminal.Gui.DateField.DeleteCharRight - isSpec: "True" - fullName: Terminal.Gui.DateField.DeleteCharRight - nameWithType: DateField.DeleteCharRight -- uid: Terminal.Gui.DateField.IsShortFormat - name: IsShortFormat - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_IsShortFormat - commentId: P:Terminal.Gui.DateField.IsShortFormat - fullName: Terminal.Gui.DateField.IsShortFormat - nameWithType: DateField.IsShortFormat -- uid: Terminal.Gui.DateField.IsShortFormat* - name: IsShortFormat - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_IsShortFormat_ - commentId: Overload:Terminal.Gui.DateField.IsShortFormat - isSpec: "True" - fullName: Terminal.Gui.DateField.IsShortFormat - nameWithType: DateField.IsShortFormat -- uid: Terminal.Gui.DateField.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.DateField.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.DateField.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: DateField.MouseEvent(MouseEvent) -- uid: Terminal.Gui.DateField.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_MouseEvent_ - commentId: Overload:Terminal.Gui.DateField.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.DateField.MouseEvent - nameWithType: DateField.MouseEvent -- uid: Terminal.Gui.DateField.OnDateChanged(Terminal.Gui.DateTimeEventArgs{System.DateTime}) - name: OnDateChanged(DateTimeEventArgs) - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_OnDateChanged_Terminal_Gui_DateTimeEventArgs_System_DateTime__ - commentId: M:Terminal.Gui.DateField.OnDateChanged(Terminal.Gui.DateTimeEventArgs{System.DateTime}) - name.vb: OnDateChanged(DateTimeEventArgs(Of DateTime)) - fullName: Terminal.Gui.DateField.OnDateChanged(Terminal.Gui.DateTimeEventArgs) - fullName.vb: Terminal.Gui.DateField.OnDateChanged(Terminal.Gui.DateTimeEventArgs(Of System.DateTime)) - nameWithType: DateField.OnDateChanged(DateTimeEventArgs) - nameWithType.vb: DateField.OnDateChanged(DateTimeEventArgs(Of DateTime)) -- uid: Terminal.Gui.DateField.OnDateChanged* - name: OnDateChanged - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_OnDateChanged_ - commentId: Overload:Terminal.Gui.DateField.OnDateChanged - isSpec: "True" - fullName: Terminal.Gui.DateField.OnDateChanged - nameWithType: DateField.OnDateChanged -- uid: Terminal.Gui.DateField.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.DateField.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.DateField.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: DateField.ProcessKey(KeyEvent) -- uid: Terminal.Gui.DateField.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.DateField.html#Terminal_Gui_DateField_ProcessKey_ - commentId: Overload:Terminal.Gui.DateField.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.DateField.ProcessKey - nameWithType: DateField.ProcessKey -- uid: Terminal.Gui.DateTimeEventArgs`1 - name: DateTimeEventArgs - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html - commentId: T:Terminal.Gui.DateTimeEventArgs`1 - name.vb: DateTimeEventArgs(Of T) - fullName: Terminal.Gui.DateTimeEventArgs - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T) - nameWithType: DateTimeEventArgs - nameWithType.vb: DateTimeEventArgs(Of T) -- uid: Terminal.Gui.DateTimeEventArgs`1.#ctor(`0,`0,System.String) - name: DateTimeEventArgs(T, T, String) - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1__ctor__0__0_System_String_ - commentId: M:Terminal.Gui.DateTimeEventArgs`1.#ctor(`0,`0,System.String) - fullName: Terminal.Gui.DateTimeEventArgs.DateTimeEventArgs(T, T, System.String) - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).DateTimeEventArgs(T, T, System.String) - nameWithType: DateTimeEventArgs.DateTimeEventArgs(T, T, String) - nameWithType.vb: DateTimeEventArgs(Of T).DateTimeEventArgs(T, T, String) -- uid: Terminal.Gui.DateTimeEventArgs`1.#ctor* - name: DateTimeEventArgs - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1__ctor_ - commentId: Overload:Terminal.Gui.DateTimeEventArgs`1.#ctor - isSpec: "True" - fullName: Terminal.Gui.DateTimeEventArgs.DateTimeEventArgs - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).DateTimeEventArgs - nameWithType: DateTimeEventArgs.DateTimeEventArgs - nameWithType.vb: DateTimeEventArgs(Of T).DateTimeEventArgs -- uid: Terminal.Gui.DateTimeEventArgs`1.Format - name: Format - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1_Format - commentId: P:Terminal.Gui.DateTimeEventArgs`1.Format - fullName: Terminal.Gui.DateTimeEventArgs.Format - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).Format - nameWithType: DateTimeEventArgs.Format - nameWithType.vb: DateTimeEventArgs(Of T).Format -- uid: Terminal.Gui.DateTimeEventArgs`1.Format* - name: Format - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1_Format_ - commentId: Overload:Terminal.Gui.DateTimeEventArgs`1.Format - isSpec: "True" - fullName: Terminal.Gui.DateTimeEventArgs.Format - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).Format - nameWithType: DateTimeEventArgs.Format - nameWithType.vb: DateTimeEventArgs(Of T).Format -- uid: Terminal.Gui.DateTimeEventArgs`1.NewValue - name: NewValue - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1_NewValue - commentId: P:Terminal.Gui.DateTimeEventArgs`1.NewValue - fullName: Terminal.Gui.DateTimeEventArgs.NewValue - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).NewValue - nameWithType: DateTimeEventArgs.NewValue - nameWithType.vb: DateTimeEventArgs(Of T).NewValue -- uid: Terminal.Gui.DateTimeEventArgs`1.NewValue* - name: NewValue - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1_NewValue_ - commentId: Overload:Terminal.Gui.DateTimeEventArgs`1.NewValue - isSpec: "True" - fullName: Terminal.Gui.DateTimeEventArgs.NewValue - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).NewValue - nameWithType: DateTimeEventArgs.NewValue - nameWithType.vb: DateTimeEventArgs(Of T).NewValue -- uid: Terminal.Gui.DateTimeEventArgs`1.OldValue - name: OldValue - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1_OldValue - commentId: P:Terminal.Gui.DateTimeEventArgs`1.OldValue - fullName: Terminal.Gui.DateTimeEventArgs.OldValue - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).OldValue - nameWithType: DateTimeEventArgs.OldValue - nameWithType.vb: DateTimeEventArgs(Of T).OldValue -- uid: Terminal.Gui.DateTimeEventArgs`1.OldValue* - name: OldValue - href: api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html#Terminal_Gui_DateTimeEventArgs_1_OldValue_ - commentId: Overload:Terminal.Gui.DateTimeEventArgs`1.OldValue - isSpec: "True" - fullName: Terminal.Gui.DateTimeEventArgs.OldValue - fullName.vb: Terminal.Gui.DateTimeEventArgs(Of T).OldValue - nameWithType: DateTimeEventArgs.OldValue - nameWithType.vb: DateTimeEventArgs(Of T).OldValue -- uid: Terminal.Gui.Dialog - name: Dialog - href: api/Terminal.Gui/Terminal.Gui.Dialog.html - commentId: T:Terminal.Gui.Dialog - fullName: Terminal.Gui.Dialog - nameWithType: Dialog -- uid: Terminal.Gui.Dialog.#ctor - name: Dialog() - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog__ctor - commentId: M:Terminal.Gui.Dialog.#ctor - fullName: Terminal.Gui.Dialog.Dialog() - nameWithType: Dialog.Dialog() -- uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[]) - name: Dialog(ustring, Int32, Int32, Button[]) - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog__ctor_NStack_ustring_System_Int32_System_Int32_Terminal_Gui_Button___ - commentId: M:Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[]) - name.vb: Dialog(ustring, Int32, Int32, Button()) - fullName: Terminal.Gui.Dialog.Dialog(NStack.ustring, System.Int32, System.Int32, Terminal.Gui.Button[]) - fullName.vb: Terminal.Gui.Dialog.Dialog(NStack.ustring, System.Int32, System.Int32, Terminal.Gui.Button()) - nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[]) - nameWithType.vb: Dialog.Dialog(ustring, Int32, Int32, Button()) -- uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,Terminal.Gui.Button[]) - name: Dialog(ustring, Button[]) - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog__ctor_NStack_ustring_Terminal_Gui_Button___ - commentId: M:Terminal.Gui.Dialog.#ctor(NStack.ustring,Terminal.Gui.Button[]) - name.vb: Dialog(ustring, Button()) - fullName: Terminal.Gui.Dialog.Dialog(NStack.ustring, Terminal.Gui.Button[]) - fullName.vb: Terminal.Gui.Dialog.Dialog(NStack.ustring, Terminal.Gui.Button()) - nameWithType: Dialog.Dialog(ustring, Button[]) - nameWithType.vb: Dialog.Dialog(ustring, Button()) -- uid: Terminal.Gui.Dialog.#ctor* - name: Dialog - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog__ctor_ - commentId: Overload:Terminal.Gui.Dialog.#ctor - isSpec: "True" - fullName: Terminal.Gui.Dialog.Dialog - nameWithType: Dialog.Dialog -- uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button) - name: AddButton(Button) - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_AddButton_Terminal_Gui_Button_ - commentId: M:Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button) - fullName: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button) - nameWithType: Dialog.AddButton(Button) -- uid: Terminal.Gui.Dialog.AddButton* - name: AddButton - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_AddButton_ - commentId: Overload:Terminal.Gui.Dialog.AddButton - isSpec: "True" - fullName: Terminal.Gui.Dialog.AddButton - nameWithType: Dialog.AddButton -- uid: Terminal.Gui.Dialog.ButtonAlignment - name: ButtonAlignment - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_ButtonAlignment - commentId: P:Terminal.Gui.Dialog.ButtonAlignment - fullName: Terminal.Gui.Dialog.ButtonAlignment - nameWithType: Dialog.ButtonAlignment -- uid: Terminal.Gui.Dialog.ButtonAlignment* - name: ButtonAlignment - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_ButtonAlignment_ - commentId: Overload:Terminal.Gui.Dialog.ButtonAlignment - isSpec: "True" - fullName: Terminal.Gui.Dialog.ButtonAlignment - nameWithType: Dialog.ButtonAlignment -- uid: Terminal.Gui.Dialog.ButtonAlignments - name: Dialog.ButtonAlignments - href: api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html - commentId: T:Terminal.Gui.Dialog.ButtonAlignments - fullName: Terminal.Gui.Dialog.ButtonAlignments - nameWithType: Dialog.ButtonAlignments -- uid: Terminal.Gui.Dialog.ButtonAlignments.Center - name: Center - href: api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html#Terminal_Gui_Dialog_ButtonAlignments_Center - commentId: F:Terminal.Gui.Dialog.ButtonAlignments.Center - fullName: Terminal.Gui.Dialog.ButtonAlignments.Center - nameWithType: Dialog.ButtonAlignments.Center -- uid: Terminal.Gui.Dialog.ButtonAlignments.Justify - name: Justify - href: api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html#Terminal_Gui_Dialog_ButtonAlignments_Justify - commentId: F:Terminal.Gui.Dialog.ButtonAlignments.Justify - fullName: Terminal.Gui.Dialog.ButtonAlignments.Justify - nameWithType: Dialog.ButtonAlignments.Justify -- uid: Terminal.Gui.Dialog.ButtonAlignments.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html#Terminal_Gui_Dialog_ButtonAlignments_Left - commentId: F:Terminal.Gui.Dialog.ButtonAlignments.Left - fullName: Terminal.Gui.Dialog.ButtonAlignments.Left - nameWithType: Dialog.ButtonAlignments.Left -- uid: Terminal.Gui.Dialog.ButtonAlignments.Right - name: Right - href: api/Terminal.Gui/Terminal.Gui.Dialog.ButtonAlignments.html#Terminal_Gui_Dialog_ButtonAlignments_Right - commentId: F:Terminal.Gui.Dialog.ButtonAlignments.Right - fullName: Terminal.Gui.Dialog.ButtonAlignments.Right - nameWithType: Dialog.ButtonAlignments.Right -- uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: Dialog.ProcessKey(KeyEvent) -- uid: Terminal.Gui.Dialog.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_ProcessKey_ - commentId: Overload:Terminal.Gui.Dialog.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.Dialog.ProcessKey - nameWithType: Dialog.ProcessKey -- uid: Terminal.Gui.Dim - name: Dim - href: api/Terminal.Gui/Terminal.Gui.Dim.html - commentId: T:Terminal.Gui.Dim - fullName: Terminal.Gui.Dim - nameWithType: Dim -- uid: Terminal.Gui.Dim.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Equals_System_Object_ - commentId: M:Terminal.Gui.Dim.Equals(System.Object) - fullName: Terminal.Gui.Dim.Equals(System.Object) - nameWithType: Dim.Equals(Object) -- uid: Terminal.Gui.Dim.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Equals_ - commentId: Overload:Terminal.Gui.Dim.Equals - isSpec: "True" - fullName: Terminal.Gui.Dim.Equals - nameWithType: Dim.Equals -- uid: Terminal.Gui.Dim.Fill(System.Int32) - name: Fill(Int32) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Fill_System_Int32_ - commentId: M:Terminal.Gui.Dim.Fill(System.Int32) - fullName: Terminal.Gui.Dim.Fill(System.Int32) - nameWithType: Dim.Fill(Int32) -- uid: Terminal.Gui.Dim.Fill* - name: Fill - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Fill_ - commentId: Overload:Terminal.Gui.Dim.Fill - isSpec: "True" - fullName: Terminal.Gui.Dim.Fill - nameWithType: Dim.Fill -- uid: Terminal.Gui.Dim.Function(System.Func{System.Int32}) - name: Function(Func) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Function_System_Func_System_Int32__ - commentId: M:Terminal.Gui.Dim.Function(System.Func{System.Int32}) - name.vb: Function(Func(Of Int32)) - fullName: Terminal.Gui.Dim.Function(System.Func) - fullName.vb: Terminal.Gui.Dim.Function(System.Func(Of System.Int32)) - nameWithType: Dim.Function(Func) - nameWithType.vb: Dim.Function(Func(Of Int32)) -- uid: Terminal.Gui.Dim.Function* - name: Function - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Function_ - commentId: Overload:Terminal.Gui.Dim.Function - isSpec: "True" - fullName: Terminal.Gui.Dim.Function - nameWithType: Dim.Function -- uid: Terminal.Gui.Dim.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_GetHashCode - commentId: M:Terminal.Gui.Dim.GetHashCode - fullName: Terminal.Gui.Dim.GetHashCode() - nameWithType: Dim.GetHashCode() -- uid: Terminal.Gui.Dim.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_GetHashCode_ - commentId: Overload:Terminal.Gui.Dim.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.Dim.GetHashCode - nameWithType: Dim.GetHashCode -- uid: Terminal.Gui.Dim.Height(Terminal.Gui.View) - name: Height(View) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Height_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Dim.Height(Terminal.Gui.View) - fullName: Terminal.Gui.Dim.Height(Terminal.Gui.View) - nameWithType: Dim.Height(View) -- uid: Terminal.Gui.Dim.Height* - name: Height - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Height_ - commentId: Overload:Terminal.Gui.Dim.Height - isSpec: "True" - fullName: Terminal.Gui.Dim.Height - nameWithType: Dim.Height -- uid: Terminal.Gui.Dim.op_Addition(Terminal.Gui.Dim,Terminal.Gui.Dim) - name: Addition(Dim, Dim) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_op_Addition_Terminal_Gui_Dim_Terminal_Gui_Dim_ - commentId: M:Terminal.Gui.Dim.op_Addition(Terminal.Gui.Dim,Terminal.Gui.Dim) - fullName: Terminal.Gui.Dim.Addition(Terminal.Gui.Dim, Terminal.Gui.Dim) - nameWithType: Dim.Addition(Dim, Dim) -- uid: Terminal.Gui.Dim.op_Addition* - name: Addition - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_op_Addition_ - commentId: Overload:Terminal.Gui.Dim.op_Addition - isSpec: "True" - fullName: Terminal.Gui.Dim.Addition - nameWithType: Dim.Addition -- uid: Terminal.Gui.Dim.op_Implicit(System.Int32)~Terminal.Gui.Dim - name: Implicit(Int32 to Dim) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_op_Implicit_System_Int32__Terminal_Gui_Dim - commentId: M:Terminal.Gui.Dim.op_Implicit(System.Int32)~Terminal.Gui.Dim - name.vb: Widening(Int32 to Dim) - fullName: Terminal.Gui.Dim.Implicit(System.Int32 to Terminal.Gui.Dim) - fullName.vb: Terminal.Gui.Dim.Widening(System.Int32 to Terminal.Gui.Dim) - nameWithType: Dim.Implicit(Int32 to Dim) - nameWithType.vb: Dim.Widening(Int32 to Dim) -- uid: Terminal.Gui.Dim.op_Implicit* - name: Implicit - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_op_Implicit_ - commentId: Overload:Terminal.Gui.Dim.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: Terminal.Gui.Dim.Implicit - fullName.vb: Terminal.Gui.Dim.Widening - nameWithType: Dim.Implicit - nameWithType.vb: Dim.Widening -- uid: Terminal.Gui.Dim.op_Subtraction(Terminal.Gui.Dim,Terminal.Gui.Dim) - name: Subtraction(Dim, Dim) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_op_Subtraction_Terminal_Gui_Dim_Terminal_Gui_Dim_ - commentId: M:Terminal.Gui.Dim.op_Subtraction(Terminal.Gui.Dim,Terminal.Gui.Dim) - fullName: Terminal.Gui.Dim.Subtraction(Terminal.Gui.Dim, Terminal.Gui.Dim) - nameWithType: Dim.Subtraction(Dim, Dim) -- uid: Terminal.Gui.Dim.op_Subtraction* - name: Subtraction - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_op_Subtraction_ - commentId: Overload:Terminal.Gui.Dim.op_Subtraction - isSpec: "True" - fullName: Terminal.Gui.Dim.Subtraction - nameWithType: Dim.Subtraction -- uid: Terminal.Gui.Dim.Percent(System.Single,System.Boolean) - name: Percent(Single, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Percent_System_Single_System_Boolean_ - commentId: M:Terminal.Gui.Dim.Percent(System.Single,System.Boolean) - fullName: Terminal.Gui.Dim.Percent(System.Single, System.Boolean) - nameWithType: Dim.Percent(Single, Boolean) -- uid: Terminal.Gui.Dim.Percent* - name: Percent - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Percent_ - commentId: Overload:Terminal.Gui.Dim.Percent - isSpec: "True" - fullName: Terminal.Gui.Dim.Percent - nameWithType: Dim.Percent -- uid: Terminal.Gui.Dim.Sized(System.Int32) - name: Sized(Int32) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Sized_System_Int32_ - commentId: M:Terminal.Gui.Dim.Sized(System.Int32) - fullName: Terminal.Gui.Dim.Sized(System.Int32) - nameWithType: Dim.Sized(Int32) -- uid: Terminal.Gui.Dim.Sized* - name: Sized - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Sized_ - commentId: Overload:Terminal.Gui.Dim.Sized - isSpec: "True" - fullName: Terminal.Gui.Dim.Sized - nameWithType: Dim.Sized -- uid: Terminal.Gui.Dim.Width(Terminal.Gui.View) - name: Width(View) - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Width_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Dim.Width(Terminal.Gui.View) - fullName: Terminal.Gui.Dim.Width(Terminal.Gui.View) - nameWithType: Dim.Width(View) -- uid: Terminal.Gui.Dim.Width* - name: Width - href: api/Terminal.Gui/Terminal.Gui.Dim.html#Terminal_Gui_Dim_Width_ - commentId: Overload:Terminal.Gui.Dim.Width - isSpec: "True" - fullName: Terminal.Gui.Dim.Width - nameWithType: Dim.Width -- uid: Terminal.Gui.DisplayModeLayout - name: DisplayModeLayout - href: api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html - commentId: T:Terminal.Gui.DisplayModeLayout - fullName: Terminal.Gui.DisplayModeLayout - nameWithType: DisplayModeLayout -- uid: Terminal.Gui.DisplayModeLayout.Horizontal - name: Horizontal - href: api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html#Terminal_Gui_DisplayModeLayout_Horizontal - commentId: F:Terminal.Gui.DisplayModeLayout.Horizontal - fullName: Terminal.Gui.DisplayModeLayout.Horizontal - nameWithType: DisplayModeLayout.Horizontal -- uid: Terminal.Gui.DisplayModeLayout.Vertical - name: Vertical - href: api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html#Terminal_Gui_DisplayModeLayout_Vertical - commentId: F:Terminal.Gui.DisplayModeLayout.Vertical - fullName: Terminal.Gui.DisplayModeLayout.Vertical - nameWithType: DisplayModeLayout.Vertical -- uid: Terminal.Gui.FakeConsole - name: FakeConsole - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html - commentId: T:Terminal.Gui.FakeConsole - fullName: Terminal.Gui.FakeConsole - nameWithType: FakeConsole -- uid: Terminal.Gui.FakeConsole.BackgroundColor - name: BackgroundColor - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_BackgroundColor - commentId: P:Terminal.Gui.FakeConsole.BackgroundColor - fullName: Terminal.Gui.FakeConsole.BackgroundColor - nameWithType: FakeConsole.BackgroundColor -- uid: Terminal.Gui.FakeConsole.BackgroundColor* - name: BackgroundColor - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_BackgroundColor_ - commentId: Overload:Terminal.Gui.FakeConsole.BackgroundColor - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.BackgroundColor - nameWithType: FakeConsole.BackgroundColor -- uid: Terminal.Gui.FakeConsole.Beep - name: Beep() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Beep - commentId: M:Terminal.Gui.FakeConsole.Beep - fullName: Terminal.Gui.FakeConsole.Beep() - nameWithType: FakeConsole.Beep() -- uid: Terminal.Gui.FakeConsole.Beep(System.Int32,System.Int32) - name: Beep(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Beep_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.Beep(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeConsole.Beep(System.Int32, System.Int32) - nameWithType: FakeConsole.Beep(Int32, Int32) -- uid: Terminal.Gui.FakeConsole.Beep* - name: Beep - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Beep_ - commentId: Overload:Terminal.Gui.FakeConsole.Beep - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Beep - nameWithType: FakeConsole.Beep -- uid: Terminal.Gui.FakeConsole.BufferHeight - name: BufferHeight - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_BufferHeight - commentId: P:Terminal.Gui.FakeConsole.BufferHeight - fullName: Terminal.Gui.FakeConsole.BufferHeight - nameWithType: FakeConsole.BufferHeight -- uid: Terminal.Gui.FakeConsole.BufferHeight* - name: BufferHeight - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_BufferHeight_ - commentId: Overload:Terminal.Gui.FakeConsole.BufferHeight - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.BufferHeight - nameWithType: FakeConsole.BufferHeight -- uid: Terminal.Gui.FakeConsole.BufferWidth - name: BufferWidth - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_BufferWidth - commentId: P:Terminal.Gui.FakeConsole.BufferWidth - fullName: Terminal.Gui.FakeConsole.BufferWidth - nameWithType: FakeConsole.BufferWidth -- uid: Terminal.Gui.FakeConsole.BufferWidth* - name: BufferWidth - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_BufferWidth_ - commentId: Overload:Terminal.Gui.FakeConsole.BufferWidth - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.BufferWidth - nameWithType: FakeConsole.BufferWidth -- uid: Terminal.Gui.FakeConsole.CapsLock - name: CapsLock - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CapsLock - commentId: P:Terminal.Gui.FakeConsole.CapsLock - fullName: Terminal.Gui.FakeConsole.CapsLock - nameWithType: FakeConsole.CapsLock -- uid: Terminal.Gui.FakeConsole.CapsLock* - name: CapsLock - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CapsLock_ - commentId: Overload:Terminal.Gui.FakeConsole.CapsLock - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.CapsLock - nameWithType: FakeConsole.CapsLock -- uid: Terminal.Gui.FakeConsole.Clear - name: Clear() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Clear - commentId: M:Terminal.Gui.FakeConsole.Clear - fullName: Terminal.Gui.FakeConsole.Clear() - nameWithType: FakeConsole.Clear() -- uid: Terminal.Gui.FakeConsole.Clear* - name: Clear - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Clear_ - commentId: Overload:Terminal.Gui.FakeConsole.Clear - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Clear - nameWithType: FakeConsole.Clear -- uid: Terminal.Gui.FakeConsole.CursorLeft - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorLeft - commentId: P:Terminal.Gui.FakeConsole.CursorLeft - fullName: Terminal.Gui.FakeConsole.CursorLeft - nameWithType: FakeConsole.CursorLeft -- uid: Terminal.Gui.FakeConsole.CursorLeft* - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorLeft_ - commentId: Overload:Terminal.Gui.FakeConsole.CursorLeft - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.CursorLeft - nameWithType: FakeConsole.CursorLeft -- uid: Terminal.Gui.FakeConsole.CursorSize - name: CursorSize - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorSize - commentId: P:Terminal.Gui.FakeConsole.CursorSize - fullName: Terminal.Gui.FakeConsole.CursorSize - nameWithType: FakeConsole.CursorSize -- uid: Terminal.Gui.FakeConsole.CursorSize* - name: CursorSize - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorSize_ - commentId: Overload:Terminal.Gui.FakeConsole.CursorSize - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.CursorSize - nameWithType: FakeConsole.CursorSize -- uid: Terminal.Gui.FakeConsole.CursorTop - name: CursorTop - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorTop - commentId: P:Terminal.Gui.FakeConsole.CursorTop - fullName: Terminal.Gui.FakeConsole.CursorTop - nameWithType: FakeConsole.CursorTop -- uid: Terminal.Gui.FakeConsole.CursorTop* - name: CursorTop - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorTop_ - commentId: Overload:Terminal.Gui.FakeConsole.CursorTop - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.CursorTop - nameWithType: FakeConsole.CursorTop -- uid: Terminal.Gui.FakeConsole.CursorVisible - name: CursorVisible - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorVisible - commentId: P:Terminal.Gui.FakeConsole.CursorVisible - fullName: Terminal.Gui.FakeConsole.CursorVisible - nameWithType: FakeConsole.CursorVisible -- uid: Terminal.Gui.FakeConsole.CursorVisible* - name: CursorVisible - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_CursorVisible_ - commentId: Overload:Terminal.Gui.FakeConsole.CursorVisible - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.CursorVisible - nameWithType: FakeConsole.CursorVisible -- uid: Terminal.Gui.FakeConsole.Error - name: Error - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Error - commentId: P:Terminal.Gui.FakeConsole.Error - fullName: Terminal.Gui.FakeConsole.Error - nameWithType: FakeConsole.Error -- uid: Terminal.Gui.FakeConsole.Error* - name: Error - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Error_ - commentId: Overload:Terminal.Gui.FakeConsole.Error - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Error - nameWithType: FakeConsole.Error -- uid: Terminal.Gui.FakeConsole.ForegroundColor - name: ForegroundColor - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ForegroundColor - commentId: P:Terminal.Gui.FakeConsole.ForegroundColor - fullName: Terminal.Gui.FakeConsole.ForegroundColor - nameWithType: FakeConsole.ForegroundColor -- uid: Terminal.Gui.FakeConsole.ForegroundColor* - name: ForegroundColor - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ForegroundColor_ - commentId: Overload:Terminal.Gui.FakeConsole.ForegroundColor - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.ForegroundColor - nameWithType: FakeConsole.ForegroundColor -- uid: Terminal.Gui.FakeConsole.HEIGHT - name: HEIGHT - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_HEIGHT - commentId: F:Terminal.Gui.FakeConsole.HEIGHT - fullName: Terminal.Gui.FakeConsole.HEIGHT - nameWithType: FakeConsole.HEIGHT -- uid: Terminal.Gui.FakeConsole.In - name: In - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_In - commentId: P:Terminal.Gui.FakeConsole.In - fullName: Terminal.Gui.FakeConsole.In - nameWithType: FakeConsole.In -- uid: Terminal.Gui.FakeConsole.In* - name: In - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_In_ - commentId: Overload:Terminal.Gui.FakeConsole.In - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.In - nameWithType: FakeConsole.In -- uid: Terminal.Gui.FakeConsole.InputEncoding - name: InputEncoding - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_InputEncoding - commentId: P:Terminal.Gui.FakeConsole.InputEncoding - fullName: Terminal.Gui.FakeConsole.InputEncoding - nameWithType: FakeConsole.InputEncoding -- uid: Terminal.Gui.FakeConsole.InputEncoding* - name: InputEncoding - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_InputEncoding_ - commentId: Overload:Terminal.Gui.FakeConsole.InputEncoding - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.InputEncoding - nameWithType: FakeConsole.InputEncoding -- uid: Terminal.Gui.FakeConsole.IsErrorRedirected - name: IsErrorRedirected - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_IsErrorRedirected - commentId: P:Terminal.Gui.FakeConsole.IsErrorRedirected - fullName: Terminal.Gui.FakeConsole.IsErrorRedirected - nameWithType: FakeConsole.IsErrorRedirected -- uid: Terminal.Gui.FakeConsole.IsErrorRedirected* - name: IsErrorRedirected - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_IsErrorRedirected_ - commentId: Overload:Terminal.Gui.FakeConsole.IsErrorRedirected - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.IsErrorRedirected - nameWithType: FakeConsole.IsErrorRedirected -- uid: Terminal.Gui.FakeConsole.IsInputRedirected - name: IsInputRedirected - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_IsInputRedirected - commentId: P:Terminal.Gui.FakeConsole.IsInputRedirected - fullName: Terminal.Gui.FakeConsole.IsInputRedirected - nameWithType: FakeConsole.IsInputRedirected -- uid: Terminal.Gui.FakeConsole.IsInputRedirected* - name: IsInputRedirected - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_IsInputRedirected_ - commentId: Overload:Terminal.Gui.FakeConsole.IsInputRedirected - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.IsInputRedirected - nameWithType: FakeConsole.IsInputRedirected -- uid: Terminal.Gui.FakeConsole.IsOutputRedirected - name: IsOutputRedirected - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_IsOutputRedirected - commentId: P:Terminal.Gui.FakeConsole.IsOutputRedirected - fullName: Terminal.Gui.FakeConsole.IsOutputRedirected - nameWithType: FakeConsole.IsOutputRedirected -- uid: Terminal.Gui.FakeConsole.IsOutputRedirected* - name: IsOutputRedirected - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_IsOutputRedirected_ - commentId: Overload:Terminal.Gui.FakeConsole.IsOutputRedirected - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.IsOutputRedirected - nameWithType: FakeConsole.IsOutputRedirected -- uid: Terminal.Gui.FakeConsole.KeyAvailable - name: KeyAvailable - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_KeyAvailable - commentId: P:Terminal.Gui.FakeConsole.KeyAvailable - fullName: Terminal.Gui.FakeConsole.KeyAvailable - nameWithType: FakeConsole.KeyAvailable -- uid: Terminal.Gui.FakeConsole.KeyAvailable* - name: KeyAvailable - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_KeyAvailable_ - commentId: Overload:Terminal.Gui.FakeConsole.KeyAvailable - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.KeyAvailable - nameWithType: FakeConsole.KeyAvailable -- uid: Terminal.Gui.FakeConsole.LargestWindowHeight - name: LargestWindowHeight - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_LargestWindowHeight - commentId: P:Terminal.Gui.FakeConsole.LargestWindowHeight - fullName: Terminal.Gui.FakeConsole.LargestWindowHeight - nameWithType: FakeConsole.LargestWindowHeight -- uid: Terminal.Gui.FakeConsole.LargestWindowHeight* - name: LargestWindowHeight - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_LargestWindowHeight_ - commentId: Overload:Terminal.Gui.FakeConsole.LargestWindowHeight - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.LargestWindowHeight - nameWithType: FakeConsole.LargestWindowHeight -- uid: Terminal.Gui.FakeConsole.LargestWindowWidth - name: LargestWindowWidth - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_LargestWindowWidth - commentId: P:Terminal.Gui.FakeConsole.LargestWindowWidth - fullName: Terminal.Gui.FakeConsole.LargestWindowWidth - nameWithType: FakeConsole.LargestWindowWidth -- uid: Terminal.Gui.FakeConsole.LargestWindowWidth* - name: LargestWindowWidth - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_LargestWindowWidth_ - commentId: Overload:Terminal.Gui.FakeConsole.LargestWindowWidth - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.LargestWindowWidth - nameWithType: FakeConsole.LargestWindowWidth -- uid: Terminal.Gui.FakeConsole.MockKeyPresses - name: MockKeyPresses - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_MockKeyPresses - commentId: F:Terminal.Gui.FakeConsole.MockKeyPresses - fullName: Terminal.Gui.FakeConsole.MockKeyPresses - nameWithType: FakeConsole.MockKeyPresses -- uid: Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - name: MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: FakeConsole.MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Char,System.ConsoleColor,System.ConsoleColor) - name: MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32, Char, ConsoleColor, ConsoleColor) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Char_System_ConsoleColor_System_ConsoleColor_ - commentId: M:Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Char,System.ConsoleColor,System.ConsoleColor) - fullName: Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Char, System.ConsoleColor, System.ConsoleColor) - nameWithType: FakeConsole.MoveBufferArea(Int32, Int32, Int32, Int32, Int32, Int32, Char, ConsoleColor, ConsoleColor) -- uid: Terminal.Gui.FakeConsole.MoveBufferArea* - name: MoveBufferArea - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_MoveBufferArea_ - commentId: Overload:Terminal.Gui.FakeConsole.MoveBufferArea - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.MoveBufferArea - nameWithType: FakeConsole.MoveBufferArea -- uid: Terminal.Gui.FakeConsole.NumberLock - name: NumberLock - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_NumberLock - commentId: P:Terminal.Gui.FakeConsole.NumberLock - fullName: Terminal.Gui.FakeConsole.NumberLock - nameWithType: FakeConsole.NumberLock -- uid: Terminal.Gui.FakeConsole.NumberLock* - name: NumberLock - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_NumberLock_ - commentId: Overload:Terminal.Gui.FakeConsole.NumberLock - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.NumberLock - nameWithType: FakeConsole.NumberLock -- uid: Terminal.Gui.FakeConsole.OpenStandardError - name: OpenStandardError() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardError - commentId: M:Terminal.Gui.FakeConsole.OpenStandardError - fullName: Terminal.Gui.FakeConsole.OpenStandardError() - nameWithType: FakeConsole.OpenStandardError() -- uid: Terminal.Gui.FakeConsole.OpenStandardError(System.Int32) - name: OpenStandardError(Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardError_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.OpenStandardError(System.Int32) - fullName: Terminal.Gui.FakeConsole.OpenStandardError(System.Int32) - nameWithType: FakeConsole.OpenStandardError(Int32) -- uid: Terminal.Gui.FakeConsole.OpenStandardError* - name: OpenStandardError - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardError_ - commentId: Overload:Terminal.Gui.FakeConsole.OpenStandardError - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.OpenStandardError - nameWithType: FakeConsole.OpenStandardError -- uid: Terminal.Gui.FakeConsole.OpenStandardInput - name: OpenStandardInput() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardInput - commentId: M:Terminal.Gui.FakeConsole.OpenStandardInput - fullName: Terminal.Gui.FakeConsole.OpenStandardInput() - nameWithType: FakeConsole.OpenStandardInput() -- uid: Terminal.Gui.FakeConsole.OpenStandardInput(System.Int32) - name: OpenStandardInput(Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardInput_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.OpenStandardInput(System.Int32) - fullName: Terminal.Gui.FakeConsole.OpenStandardInput(System.Int32) - nameWithType: FakeConsole.OpenStandardInput(Int32) -- uid: Terminal.Gui.FakeConsole.OpenStandardInput* - name: OpenStandardInput - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardInput_ - commentId: Overload:Terminal.Gui.FakeConsole.OpenStandardInput - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.OpenStandardInput - nameWithType: FakeConsole.OpenStandardInput -- uid: Terminal.Gui.FakeConsole.OpenStandardOutput - name: OpenStandardOutput() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardOutput - commentId: M:Terminal.Gui.FakeConsole.OpenStandardOutput - fullName: Terminal.Gui.FakeConsole.OpenStandardOutput() - nameWithType: FakeConsole.OpenStandardOutput() -- uid: Terminal.Gui.FakeConsole.OpenStandardOutput(System.Int32) - name: OpenStandardOutput(Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardOutput_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.OpenStandardOutput(System.Int32) - fullName: Terminal.Gui.FakeConsole.OpenStandardOutput(System.Int32) - nameWithType: FakeConsole.OpenStandardOutput(Int32) -- uid: Terminal.Gui.FakeConsole.OpenStandardOutput* - name: OpenStandardOutput - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OpenStandardOutput_ - commentId: Overload:Terminal.Gui.FakeConsole.OpenStandardOutput - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.OpenStandardOutput - nameWithType: FakeConsole.OpenStandardOutput -- uid: Terminal.Gui.FakeConsole.Out - name: Out - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Out - commentId: P:Terminal.Gui.FakeConsole.Out - fullName: Terminal.Gui.FakeConsole.Out - nameWithType: FakeConsole.Out -- uid: Terminal.Gui.FakeConsole.Out* - name: Out - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Out_ - commentId: Overload:Terminal.Gui.FakeConsole.Out - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Out - nameWithType: FakeConsole.Out -- uid: Terminal.Gui.FakeConsole.OutputEncoding - name: OutputEncoding - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OutputEncoding - commentId: P:Terminal.Gui.FakeConsole.OutputEncoding - fullName: Terminal.Gui.FakeConsole.OutputEncoding - nameWithType: FakeConsole.OutputEncoding -- uid: Terminal.Gui.FakeConsole.OutputEncoding* - name: OutputEncoding - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_OutputEncoding_ - commentId: Overload:Terminal.Gui.FakeConsole.OutputEncoding - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.OutputEncoding - nameWithType: FakeConsole.OutputEncoding -- uid: Terminal.Gui.FakeConsole.Read - name: Read() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Read - commentId: M:Terminal.Gui.FakeConsole.Read - fullName: Terminal.Gui.FakeConsole.Read() - nameWithType: FakeConsole.Read() -- uid: Terminal.Gui.FakeConsole.Read* - name: Read - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Read_ - commentId: Overload:Terminal.Gui.FakeConsole.Read - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Read - nameWithType: FakeConsole.Read -- uid: Terminal.Gui.FakeConsole.ReadKey - name: ReadKey() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ReadKey - commentId: M:Terminal.Gui.FakeConsole.ReadKey - fullName: Terminal.Gui.FakeConsole.ReadKey() - nameWithType: FakeConsole.ReadKey() -- uid: Terminal.Gui.FakeConsole.ReadKey(System.Boolean) - name: ReadKey(Boolean) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ReadKey_System_Boolean_ - commentId: M:Terminal.Gui.FakeConsole.ReadKey(System.Boolean) - fullName: Terminal.Gui.FakeConsole.ReadKey(System.Boolean) - nameWithType: FakeConsole.ReadKey(Boolean) -- uid: Terminal.Gui.FakeConsole.ReadKey* - name: ReadKey - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ReadKey_ - commentId: Overload:Terminal.Gui.FakeConsole.ReadKey - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.ReadKey - nameWithType: FakeConsole.ReadKey -- uid: Terminal.Gui.FakeConsole.ReadLine - name: ReadLine() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ReadLine - commentId: M:Terminal.Gui.FakeConsole.ReadLine - fullName: Terminal.Gui.FakeConsole.ReadLine() - nameWithType: FakeConsole.ReadLine() -- uid: Terminal.Gui.FakeConsole.ReadLine* - name: ReadLine - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ReadLine_ - commentId: Overload:Terminal.Gui.FakeConsole.ReadLine - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.ReadLine - nameWithType: FakeConsole.ReadLine -- uid: Terminal.Gui.FakeConsole.ResetColor - name: ResetColor() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ResetColor - commentId: M:Terminal.Gui.FakeConsole.ResetColor - fullName: Terminal.Gui.FakeConsole.ResetColor() - nameWithType: FakeConsole.ResetColor() -- uid: Terminal.Gui.FakeConsole.ResetColor* - name: ResetColor - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_ResetColor_ - commentId: Overload:Terminal.Gui.FakeConsole.ResetColor - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.ResetColor - nameWithType: FakeConsole.ResetColor -- uid: Terminal.Gui.FakeConsole.SetBufferSize(System.Int32,System.Int32) - name: SetBufferSize(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetBufferSize_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.SetBufferSize(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeConsole.SetBufferSize(System.Int32, System.Int32) - nameWithType: FakeConsole.SetBufferSize(Int32, Int32) -- uid: Terminal.Gui.FakeConsole.SetBufferSize* - name: SetBufferSize - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetBufferSize_ - commentId: Overload:Terminal.Gui.FakeConsole.SetBufferSize - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetBufferSize - nameWithType: FakeConsole.SetBufferSize -- uid: Terminal.Gui.FakeConsole.SetCursorPosition(System.Int32,System.Int32) - name: SetCursorPosition(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetCursorPosition_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.SetCursorPosition(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeConsole.SetCursorPosition(System.Int32, System.Int32) - nameWithType: FakeConsole.SetCursorPosition(Int32, Int32) -- uid: Terminal.Gui.FakeConsole.SetCursorPosition* - name: SetCursorPosition - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetCursorPosition_ - commentId: Overload:Terminal.Gui.FakeConsole.SetCursorPosition - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetCursorPosition - nameWithType: FakeConsole.SetCursorPosition -- uid: Terminal.Gui.FakeConsole.SetError(System.IO.TextWriter) - name: SetError(TextWriter) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetError_System_IO_TextWriter_ - commentId: M:Terminal.Gui.FakeConsole.SetError(System.IO.TextWriter) - fullName: Terminal.Gui.FakeConsole.SetError(System.IO.TextWriter) - nameWithType: FakeConsole.SetError(TextWriter) -- uid: Terminal.Gui.FakeConsole.SetError* - name: SetError - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetError_ - commentId: Overload:Terminal.Gui.FakeConsole.SetError - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetError - nameWithType: FakeConsole.SetError -- uid: Terminal.Gui.FakeConsole.SetIn(System.IO.TextReader) - name: SetIn(TextReader) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetIn_System_IO_TextReader_ - commentId: M:Terminal.Gui.FakeConsole.SetIn(System.IO.TextReader) - fullName: Terminal.Gui.FakeConsole.SetIn(System.IO.TextReader) - nameWithType: FakeConsole.SetIn(TextReader) -- uid: Terminal.Gui.FakeConsole.SetIn* - name: SetIn - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetIn_ - commentId: Overload:Terminal.Gui.FakeConsole.SetIn - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetIn - nameWithType: FakeConsole.SetIn -- uid: Terminal.Gui.FakeConsole.SetOut(System.IO.TextWriter) - name: SetOut(TextWriter) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetOut_System_IO_TextWriter_ - commentId: M:Terminal.Gui.FakeConsole.SetOut(System.IO.TextWriter) - fullName: Terminal.Gui.FakeConsole.SetOut(System.IO.TextWriter) - nameWithType: FakeConsole.SetOut(TextWriter) -- uid: Terminal.Gui.FakeConsole.SetOut* - name: SetOut - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetOut_ - commentId: Overload:Terminal.Gui.FakeConsole.SetOut - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetOut - nameWithType: FakeConsole.SetOut -- uid: Terminal.Gui.FakeConsole.SetWindowPosition(System.Int32,System.Int32) - name: SetWindowPosition(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetWindowPosition_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.SetWindowPosition(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeConsole.SetWindowPosition(System.Int32, System.Int32) - nameWithType: FakeConsole.SetWindowPosition(Int32, Int32) -- uid: Terminal.Gui.FakeConsole.SetWindowPosition* - name: SetWindowPosition - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetWindowPosition_ - commentId: Overload:Terminal.Gui.FakeConsole.SetWindowPosition - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetWindowPosition - nameWithType: FakeConsole.SetWindowPosition -- uid: Terminal.Gui.FakeConsole.SetWindowSize(System.Int32,System.Int32) - name: SetWindowSize(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetWindowSize_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.SetWindowSize(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeConsole.SetWindowSize(System.Int32, System.Int32) - nameWithType: FakeConsole.SetWindowSize(Int32, Int32) -- uid: Terminal.Gui.FakeConsole.SetWindowSize* - name: SetWindowSize - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_SetWindowSize_ - commentId: Overload:Terminal.Gui.FakeConsole.SetWindowSize - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.SetWindowSize - nameWithType: FakeConsole.SetWindowSize -- uid: Terminal.Gui.FakeConsole.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Title - commentId: P:Terminal.Gui.FakeConsole.Title - fullName: Terminal.Gui.FakeConsole.Title - nameWithType: FakeConsole.Title -- uid: Terminal.Gui.FakeConsole.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Title_ - commentId: Overload:Terminal.Gui.FakeConsole.Title - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Title - nameWithType: FakeConsole.Title -- uid: Terminal.Gui.FakeConsole.TreatControlCAsInput - name: TreatControlCAsInput - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_TreatControlCAsInput - commentId: P:Terminal.Gui.FakeConsole.TreatControlCAsInput - fullName: Terminal.Gui.FakeConsole.TreatControlCAsInput - nameWithType: FakeConsole.TreatControlCAsInput -- uid: Terminal.Gui.FakeConsole.TreatControlCAsInput* - name: TreatControlCAsInput - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_TreatControlCAsInput_ - commentId: Overload:Terminal.Gui.FakeConsole.TreatControlCAsInput - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.TreatControlCAsInput - nameWithType: FakeConsole.TreatControlCAsInput -- uid: Terminal.Gui.FakeConsole.WIDTH - name: WIDTH - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WIDTH - commentId: F:Terminal.Gui.FakeConsole.WIDTH - fullName: Terminal.Gui.FakeConsole.WIDTH - nameWithType: FakeConsole.WIDTH -- uid: Terminal.Gui.FakeConsole.WindowHeight - name: WindowHeight - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowHeight - commentId: P:Terminal.Gui.FakeConsole.WindowHeight - fullName: Terminal.Gui.FakeConsole.WindowHeight - nameWithType: FakeConsole.WindowHeight -- uid: Terminal.Gui.FakeConsole.WindowHeight* - name: WindowHeight - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowHeight_ - commentId: Overload:Terminal.Gui.FakeConsole.WindowHeight - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.WindowHeight - nameWithType: FakeConsole.WindowHeight -- uid: Terminal.Gui.FakeConsole.WindowLeft - name: WindowLeft - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowLeft - commentId: P:Terminal.Gui.FakeConsole.WindowLeft - fullName: Terminal.Gui.FakeConsole.WindowLeft - nameWithType: FakeConsole.WindowLeft -- uid: Terminal.Gui.FakeConsole.WindowLeft* - name: WindowLeft - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowLeft_ - commentId: Overload:Terminal.Gui.FakeConsole.WindowLeft - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.WindowLeft - nameWithType: FakeConsole.WindowLeft -- uid: Terminal.Gui.FakeConsole.WindowTop - name: WindowTop - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowTop - commentId: P:Terminal.Gui.FakeConsole.WindowTop - fullName: Terminal.Gui.FakeConsole.WindowTop - nameWithType: FakeConsole.WindowTop -- uid: Terminal.Gui.FakeConsole.WindowTop* - name: WindowTop - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowTop_ - commentId: Overload:Terminal.Gui.FakeConsole.WindowTop - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.WindowTop - nameWithType: FakeConsole.WindowTop -- uid: Terminal.Gui.FakeConsole.WindowWidth - name: WindowWidth - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowWidth - commentId: P:Terminal.Gui.FakeConsole.WindowWidth - fullName: Terminal.Gui.FakeConsole.WindowWidth - nameWithType: FakeConsole.WindowWidth -- uid: Terminal.Gui.FakeConsole.WindowWidth* - name: WindowWidth - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WindowWidth_ - commentId: Overload:Terminal.Gui.FakeConsole.WindowWidth - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.WindowWidth - nameWithType: FakeConsole.WindowWidth -- uid: Terminal.Gui.FakeConsole.Write(System.Boolean) - name: Write(Boolean) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Boolean_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Boolean) - fullName: Terminal.Gui.FakeConsole.Write(System.Boolean) - nameWithType: FakeConsole.Write(Boolean) -- uid: Terminal.Gui.FakeConsole.Write(System.Char) - name: Write(Char) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Char_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Char) - fullName: Terminal.Gui.FakeConsole.Write(System.Char) - nameWithType: FakeConsole.Write(Char) -- uid: Terminal.Gui.FakeConsole.Write(System.Char[]) - name: Write(Char[]) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Char___ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Char[]) - name.vb: Write(Char()) - fullName: Terminal.Gui.FakeConsole.Write(System.Char[]) - fullName.vb: Terminal.Gui.FakeConsole.Write(System.Char()) - nameWithType: FakeConsole.Write(Char[]) - nameWithType.vb: FakeConsole.Write(Char()) -- uid: Terminal.Gui.FakeConsole.Write(System.Char[],System.Int32,System.Int32) - name: Write(Char[], Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Char___System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Char[],System.Int32,System.Int32) - name.vb: Write(Char(), Int32, Int32) - fullName: Terminal.Gui.FakeConsole.Write(System.Char[], System.Int32, System.Int32) - fullName.vb: Terminal.Gui.FakeConsole.Write(System.Char(), System.Int32, System.Int32) - nameWithType: FakeConsole.Write(Char[], Int32, Int32) - nameWithType.vb: FakeConsole.Write(Char(), Int32, Int32) -- uid: Terminal.Gui.FakeConsole.Write(System.Decimal) - name: Write(Decimal) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Decimal_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Decimal) - fullName: Terminal.Gui.FakeConsole.Write(System.Decimal) - nameWithType: FakeConsole.Write(Decimal) -- uid: Terminal.Gui.FakeConsole.Write(System.Double) - name: Write(Double) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Double_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Double) - fullName: Terminal.Gui.FakeConsole.Write(System.Double) - nameWithType: FakeConsole.Write(Double) -- uid: Terminal.Gui.FakeConsole.Write(System.Int32) - name: Write(Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Int32) - fullName: Terminal.Gui.FakeConsole.Write(System.Int32) - nameWithType: FakeConsole.Write(Int32) -- uid: Terminal.Gui.FakeConsole.Write(System.Int64) - name: Write(Int64) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Int64_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Int64) - fullName: Terminal.Gui.FakeConsole.Write(System.Int64) - nameWithType: FakeConsole.Write(Int64) -- uid: Terminal.Gui.FakeConsole.Write(System.Object) - name: Write(Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Object) - fullName: Terminal.Gui.FakeConsole.Write(System.Object) - nameWithType: FakeConsole.Write(Object) -- uid: Terminal.Gui.FakeConsole.Write(System.Single) - name: Write(Single) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_Single_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.Single) - fullName: Terminal.Gui.FakeConsole.Write(System.Single) - nameWithType: FakeConsole.Write(Single) -- uid: Terminal.Gui.FakeConsole.Write(System.String) - name: Write(String) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_String_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.String) - fullName: Terminal.Gui.FakeConsole.Write(System.String) - nameWithType: FakeConsole.Write(String) -- uid: Terminal.Gui.FakeConsole.Write(System.String,System.Object) - name: Write(String, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_String_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.String,System.Object) - fullName: Terminal.Gui.FakeConsole.Write(System.String, System.Object) - nameWithType: FakeConsole.Write(String, Object) -- uid: Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object) - name: Write(String, Object, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object) - fullName: Terminal.Gui.FakeConsole.Write(System.String, System.Object, System.Object) - nameWithType: FakeConsole.Write(String, Object, Object) -- uid: Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object) - name: Write(String, Object, Object, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object) - fullName: Terminal.Gui.FakeConsole.Write(System.String, System.Object, System.Object, System.Object) - nameWithType: FakeConsole.Write(String, Object, Object, Object) -- uid: Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object,System.Object) - name: Write(String, Object, Object, Object, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object,System.Object) - fullName: Terminal.Gui.FakeConsole.Write(System.String, System.Object, System.Object, System.Object, System.Object) - nameWithType: FakeConsole.Write(String, Object, Object, Object, Object) -- uid: Terminal.Gui.FakeConsole.Write(System.String,System.Object[]) - name: Write(String, Object[]) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_String_System_Object___ - commentId: M:Terminal.Gui.FakeConsole.Write(System.String,System.Object[]) - name.vb: Write(String, Object()) - fullName: Terminal.Gui.FakeConsole.Write(System.String, System.Object[]) - fullName.vb: Terminal.Gui.FakeConsole.Write(System.String, System.Object()) - nameWithType: FakeConsole.Write(String, Object[]) - nameWithType.vb: FakeConsole.Write(String, Object()) -- uid: Terminal.Gui.FakeConsole.Write(System.UInt32) - name: Write(UInt32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_UInt32_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.UInt32) - fullName: Terminal.Gui.FakeConsole.Write(System.UInt32) - nameWithType: FakeConsole.Write(UInt32) -- uid: Terminal.Gui.FakeConsole.Write(System.UInt64) - name: Write(UInt64) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_System_UInt64_ - commentId: M:Terminal.Gui.FakeConsole.Write(System.UInt64) - fullName: Terminal.Gui.FakeConsole.Write(System.UInt64) - nameWithType: FakeConsole.Write(UInt64) -- uid: Terminal.Gui.FakeConsole.Write* - name: Write - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_Write_ - commentId: Overload:Terminal.Gui.FakeConsole.Write - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.Write - nameWithType: FakeConsole.Write -- uid: Terminal.Gui.FakeConsole.WriteLine - name: WriteLine() - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine - commentId: M:Terminal.Gui.FakeConsole.WriteLine - fullName: Terminal.Gui.FakeConsole.WriteLine() - nameWithType: FakeConsole.WriteLine() -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Boolean) - name: WriteLine(Boolean) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Boolean_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Boolean) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Boolean) - nameWithType: FakeConsole.WriteLine(Boolean) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Char) - name: WriteLine(Char) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Char_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Char) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Char) - nameWithType: FakeConsole.WriteLine(Char) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Char[]) - name: WriteLine(Char[]) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Char___ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Char[]) - name.vb: WriteLine(Char()) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Char[]) - fullName.vb: Terminal.Gui.FakeConsole.WriteLine(System.Char()) - nameWithType: FakeConsole.WriteLine(Char[]) - nameWithType.vb: FakeConsole.WriteLine(Char()) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Char[],System.Int32,System.Int32) - name: WriteLine(Char[], Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Char___System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Char[],System.Int32,System.Int32) - name.vb: WriteLine(Char(), Int32, Int32) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Char[], System.Int32, System.Int32) - fullName.vb: Terminal.Gui.FakeConsole.WriteLine(System.Char(), System.Int32, System.Int32) - nameWithType: FakeConsole.WriteLine(Char[], Int32, Int32) - nameWithType.vb: FakeConsole.WriteLine(Char(), Int32, Int32) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Decimal) - name: WriteLine(Decimal) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Decimal_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Decimal) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Decimal) - nameWithType: FakeConsole.WriteLine(Decimal) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Double) - name: WriteLine(Double) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Double_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Double) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Double) - nameWithType: FakeConsole.WriteLine(Double) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Int32) - name: WriteLine(Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Int32_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Int32) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Int32) - nameWithType: FakeConsole.WriteLine(Int32) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Int64) - name: WriteLine(Int64) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Int64_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Int64) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Int64) - nameWithType: FakeConsole.WriteLine(Int64) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Object) - name: WriteLine(Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Object) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Object) - nameWithType: FakeConsole.WriteLine(Object) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.Single) - name: WriteLine(Single) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_Single_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.Single) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.Single) - nameWithType: FakeConsole.WriteLine(Single) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.String) - name: WriteLine(String) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_String_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.String) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.String) - nameWithType: FakeConsole.WriteLine(String) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object) - name: WriteLine(String, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.String, System.Object) - nameWithType: FakeConsole.WriteLine(String, Object) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object) - name: WriteLine(String, Object, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.String, System.Object, System.Object) - nameWithType: FakeConsole.WriteLine(String, Object, Object) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object) - name: WriteLine(String, Object, Object, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.String, System.Object, System.Object, System.Object) - nameWithType: FakeConsole.WriteLine(String, Object, Object, Object) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object,System.Object) - name: WriteLine(String, Object, Object, Object, Object) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_System_Object_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object,System.Object) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.String, System.Object, System.Object, System.Object, System.Object) - nameWithType: FakeConsole.WriteLine(String, Object, Object, Object, Object) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object[]) - name: WriteLine(String, Object[]) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object___ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object[]) - name.vb: WriteLine(String, Object()) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.String, System.Object[]) - fullName.vb: Terminal.Gui.FakeConsole.WriteLine(System.String, System.Object()) - nameWithType: FakeConsole.WriteLine(String, Object[]) - nameWithType.vb: FakeConsole.WriteLine(String, Object()) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.UInt32) - name: WriteLine(UInt32) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_UInt32_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.UInt32) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.UInt32) - nameWithType: FakeConsole.WriteLine(UInt32) -- uid: Terminal.Gui.FakeConsole.WriteLine(System.UInt64) - name: WriteLine(UInt64) - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_System_UInt64_ - commentId: M:Terminal.Gui.FakeConsole.WriteLine(System.UInt64) - fullName: Terminal.Gui.FakeConsole.WriteLine(System.UInt64) - nameWithType: FakeConsole.WriteLine(UInt64) -- uid: Terminal.Gui.FakeConsole.WriteLine* - name: WriteLine - href: api/Terminal.Gui/Terminal.Gui.FakeConsole.html#Terminal_Gui_FakeConsole_WriteLine_ - commentId: Overload:Terminal.Gui.FakeConsole.WriteLine - isSpec: "True" - fullName: Terminal.Gui.FakeConsole.WriteLine - nameWithType: FakeConsole.WriteLine -- uid: Terminal.Gui.FakeDriver - name: FakeDriver - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html - commentId: T:Terminal.Gui.FakeDriver - fullName: Terminal.Gui.FakeDriver - nameWithType: FakeDriver -- uid: Terminal.Gui.FakeDriver.#ctor - name: FakeDriver() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver__ctor - commentId: M:Terminal.Gui.FakeDriver.#ctor - fullName: Terminal.Gui.FakeDriver.FakeDriver() - nameWithType: FakeDriver.FakeDriver() -- uid: Terminal.Gui.FakeDriver.#ctor* - name: FakeDriver - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver__ctor_ - commentId: Overload:Terminal.Gui.FakeDriver.#ctor - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.FakeDriver - nameWithType: FakeDriver.FakeDriver -- uid: Terminal.Gui.FakeDriver.AddRune(System.Rune) - name: AddRune(Rune) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_AddRune_System_Rune_ - commentId: M:Terminal.Gui.FakeDriver.AddRune(System.Rune) - fullName: Terminal.Gui.FakeDriver.AddRune(System.Rune) - nameWithType: FakeDriver.AddRune(Rune) -- uid: Terminal.Gui.FakeDriver.AddRune* - name: AddRune - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_AddRune_ - commentId: Overload:Terminal.Gui.FakeDriver.AddRune - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.AddRune - nameWithType: FakeDriver.AddRune -- uid: Terminal.Gui.FakeDriver.AddStr(NStack.ustring) - name: AddStr(ustring) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_AddStr_NStack_ustring_ - commentId: M:Terminal.Gui.FakeDriver.AddStr(NStack.ustring) - fullName: Terminal.Gui.FakeDriver.AddStr(NStack.ustring) - nameWithType: FakeDriver.AddStr(ustring) -- uid: Terminal.Gui.FakeDriver.AddStr* - name: AddStr - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_AddStr_ - commentId: Overload:Terminal.Gui.FakeDriver.AddStr - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.AddStr - nameWithType: FakeDriver.AddStr -- uid: Terminal.Gui.FakeDriver.Clipboard - name: Clipboard - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Clipboard - commentId: P:Terminal.Gui.FakeDriver.Clipboard - fullName: Terminal.Gui.FakeDriver.Clipboard - nameWithType: FakeDriver.Clipboard -- uid: Terminal.Gui.FakeDriver.Clipboard* - name: Clipboard - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Clipboard_ - commentId: Overload:Terminal.Gui.FakeDriver.Clipboard - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Clipboard - nameWithType: FakeDriver.Clipboard -- uid: Terminal.Gui.FakeDriver.Cols - name: Cols - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Cols - commentId: P:Terminal.Gui.FakeDriver.Cols - fullName: Terminal.Gui.FakeDriver.Cols - nameWithType: FakeDriver.Cols -- uid: Terminal.Gui.FakeDriver.Cols* - name: Cols - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Cols_ - commentId: Overload:Terminal.Gui.FakeDriver.Cols - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Cols - nameWithType: FakeDriver.Cols -- uid: Terminal.Gui.FakeDriver.Contents - name: Contents - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Contents - commentId: P:Terminal.Gui.FakeDriver.Contents - fullName: Terminal.Gui.FakeDriver.Contents - nameWithType: FakeDriver.Contents -- uid: Terminal.Gui.FakeDriver.Contents* - name: Contents - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Contents_ - commentId: Overload:Terminal.Gui.FakeDriver.Contents - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Contents - nameWithType: FakeDriver.Contents -- uid: Terminal.Gui.FakeDriver.CookMouse - name: CookMouse() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_CookMouse - commentId: M:Terminal.Gui.FakeDriver.CookMouse - fullName: Terminal.Gui.FakeDriver.CookMouse() - nameWithType: FakeDriver.CookMouse() -- uid: Terminal.Gui.FakeDriver.CookMouse* - name: CookMouse - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_CookMouse_ - commentId: Overload:Terminal.Gui.FakeDriver.CookMouse - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.CookMouse - nameWithType: FakeDriver.CookMouse -- uid: Terminal.Gui.FakeDriver.End - name: End() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_End - commentId: M:Terminal.Gui.FakeDriver.End - fullName: Terminal.Gui.FakeDriver.End() - nameWithType: FakeDriver.End() -- uid: Terminal.Gui.FakeDriver.End* - name: End - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_End_ - commentId: Overload:Terminal.Gui.FakeDriver.End - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.End - nameWithType: FakeDriver.End -- uid: Terminal.Gui.FakeDriver.EnsureCursorVisibility - name: EnsureCursorVisibility() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_EnsureCursorVisibility - commentId: M:Terminal.Gui.FakeDriver.EnsureCursorVisibility - fullName: Terminal.Gui.FakeDriver.EnsureCursorVisibility() - nameWithType: FakeDriver.EnsureCursorVisibility() -- uid: Terminal.Gui.FakeDriver.EnsureCursorVisibility* - name: EnsureCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_EnsureCursorVisibility_ - commentId: Overload:Terminal.Gui.FakeDriver.EnsureCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.EnsureCursorVisibility - nameWithType: FakeDriver.EnsureCursorVisibility -- uid: Terminal.Gui.FakeDriver.GetAttribute - name: GetAttribute() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_GetAttribute - commentId: M:Terminal.Gui.FakeDriver.GetAttribute - fullName: Terminal.Gui.FakeDriver.GetAttribute() - nameWithType: FakeDriver.GetAttribute() -- uid: Terminal.Gui.FakeDriver.GetAttribute* - name: GetAttribute - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_GetAttribute_ - commentId: Overload:Terminal.Gui.FakeDriver.GetAttribute - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.GetAttribute - nameWithType: FakeDriver.GetAttribute -- uid: Terminal.Gui.FakeDriver.GetColors(System.Int32,Terminal.Gui.Color@,Terminal.Gui.Color@) - name: GetColors(Int32, out Color, out Color) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_GetColors_System_Int32_Terminal_Gui_Color__Terminal_Gui_Color__ - commentId: M:Terminal.Gui.FakeDriver.GetColors(System.Int32,Terminal.Gui.Color@,Terminal.Gui.Color@) - name.vb: GetColors(Int32, ByRef Color, ByRef Color) - fullName: Terminal.Gui.FakeDriver.GetColors(System.Int32, out Terminal.Gui.Color, out Terminal.Gui.Color) - fullName.vb: Terminal.Gui.FakeDriver.GetColors(System.Int32, ByRef Terminal.Gui.Color, ByRef Terminal.Gui.Color) - nameWithType: FakeDriver.GetColors(Int32, out Color, out Color) - nameWithType.vb: FakeDriver.GetColors(Int32, ByRef Color, ByRef Color) -- uid: Terminal.Gui.FakeDriver.GetColors* - name: GetColors - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_GetColors_ - commentId: Overload:Terminal.Gui.FakeDriver.GetColors - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.GetColors - nameWithType: FakeDriver.GetColors -- uid: Terminal.Gui.FakeDriver.GetCursorVisibility(Terminal.Gui.CursorVisibility@) - name: GetCursorVisibility(out CursorVisibility) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_GetCursorVisibility_Terminal_Gui_CursorVisibility__ - commentId: M:Terminal.Gui.FakeDriver.GetCursorVisibility(Terminal.Gui.CursorVisibility@) - name.vb: GetCursorVisibility(ByRef CursorVisibility) - fullName: Terminal.Gui.FakeDriver.GetCursorVisibility(out Terminal.Gui.CursorVisibility) - fullName.vb: Terminal.Gui.FakeDriver.GetCursorVisibility(ByRef Terminal.Gui.CursorVisibility) - nameWithType: FakeDriver.GetCursorVisibility(out CursorVisibility) - nameWithType.vb: FakeDriver.GetCursorVisibility(ByRef CursorVisibility) -- uid: Terminal.Gui.FakeDriver.GetCursorVisibility* - name: GetCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_GetCursorVisibility_ - commentId: Overload:Terminal.Gui.FakeDriver.GetCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.GetCursorVisibility - nameWithType: FakeDriver.GetCursorVisibility -- uid: Terminal.Gui.FakeDriver.HeightAsBuffer - name: HeightAsBuffer - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_HeightAsBuffer - commentId: P:Terminal.Gui.FakeDriver.HeightAsBuffer - fullName: Terminal.Gui.FakeDriver.HeightAsBuffer - nameWithType: FakeDriver.HeightAsBuffer -- uid: Terminal.Gui.FakeDriver.HeightAsBuffer* - name: HeightAsBuffer - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_HeightAsBuffer_ - commentId: Overload:Terminal.Gui.FakeDriver.HeightAsBuffer - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.HeightAsBuffer - nameWithType: FakeDriver.HeightAsBuffer -- uid: Terminal.Gui.FakeDriver.Init(System.Action) - name: Init(Action) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Init_System_Action_ - commentId: M:Terminal.Gui.FakeDriver.Init(System.Action) - fullName: Terminal.Gui.FakeDriver.Init(System.Action) - nameWithType: FakeDriver.Init(Action) -- uid: Terminal.Gui.FakeDriver.Init* - name: Init - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Init_ - commentId: Overload:Terminal.Gui.FakeDriver.Init - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Init - nameWithType: FakeDriver.Init -- uid: Terminal.Gui.FakeDriver.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Left - commentId: P:Terminal.Gui.FakeDriver.Left - fullName: Terminal.Gui.FakeDriver.Left - nameWithType: FakeDriver.Left -- uid: Terminal.Gui.FakeDriver.Left* - name: Left - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Left_ - commentId: Overload:Terminal.Gui.FakeDriver.Left - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Left - nameWithType: FakeDriver.Left -- uid: Terminal.Gui.FakeDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color) - name: MakeAttribute(Color, Color) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_MakeAttribute_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.FakeDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.FakeDriver.MakeAttribute(Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: FakeDriver.MakeAttribute(Color, Color) -- uid: Terminal.Gui.FakeDriver.MakeAttribute* - name: MakeAttribute - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_MakeAttribute_ - commentId: Overload:Terminal.Gui.FakeDriver.MakeAttribute - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.MakeAttribute - nameWithType: FakeDriver.MakeAttribute -- uid: Terminal.Gui.FakeDriver.MakeColor(Terminal.Gui.Color,Terminal.Gui.Color) - name: MakeColor(Color, Color) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_MakeColor_Terminal_Gui_Color_Terminal_Gui_Color_ - commentId: M:Terminal.Gui.FakeDriver.MakeColor(Terminal.Gui.Color,Terminal.Gui.Color) - fullName: Terminal.Gui.FakeDriver.MakeColor(Terminal.Gui.Color, Terminal.Gui.Color) - nameWithType: FakeDriver.MakeColor(Color, Color) -- uid: Terminal.Gui.FakeDriver.MakeColor* - name: MakeColor - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_MakeColor_ - commentId: Overload:Terminal.Gui.FakeDriver.MakeColor - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.MakeColor - nameWithType: FakeDriver.MakeColor -- uid: Terminal.Gui.FakeDriver.Move(System.Int32,System.Int32) - name: Move(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Move_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeDriver.Move(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeDriver.Move(System.Int32, System.Int32) - nameWithType: FakeDriver.Move(Int32, Int32) -- uid: Terminal.Gui.FakeDriver.Move* - name: Move - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Move_ - commentId: Overload:Terminal.Gui.FakeDriver.Move - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Move - nameWithType: FakeDriver.Move -- uid: Terminal.Gui.FakeDriver.PrepareToRun(Terminal.Gui.MainLoop,System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.MouseEvent}) - name: PrepareToRun(MainLoop, Action, Action, Action, Action) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_PrepareToRun_Terminal_Gui_MainLoop_System_Action_Terminal_Gui_KeyEvent__System_Action_Terminal_Gui_KeyEvent__System_Action_Terminal_Gui_KeyEvent__System_Action_Terminal_Gui_MouseEvent__ - commentId: M:Terminal.Gui.FakeDriver.PrepareToRun(Terminal.Gui.MainLoop,System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.MouseEvent}) - name.vb: PrepareToRun(MainLoop, Action(Of KeyEvent), Action(Of KeyEvent), Action(Of KeyEvent), Action(Of MouseEvent)) - fullName: Terminal.Gui.FakeDriver.PrepareToRun(Terminal.Gui.MainLoop, System.Action, System.Action, System.Action, System.Action) - fullName.vb: Terminal.Gui.FakeDriver.PrepareToRun(Terminal.Gui.MainLoop, System.Action(Of Terminal.Gui.KeyEvent), System.Action(Of Terminal.Gui.KeyEvent), System.Action(Of Terminal.Gui.KeyEvent), System.Action(Of Terminal.Gui.MouseEvent)) - nameWithType: FakeDriver.PrepareToRun(MainLoop, Action, Action, Action, Action) - nameWithType.vb: FakeDriver.PrepareToRun(MainLoop, Action(Of KeyEvent), Action(Of KeyEvent), Action(Of KeyEvent), Action(Of MouseEvent)) -- uid: Terminal.Gui.FakeDriver.PrepareToRun* - name: PrepareToRun - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_PrepareToRun_ - commentId: Overload:Terminal.Gui.FakeDriver.PrepareToRun - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.PrepareToRun - nameWithType: FakeDriver.PrepareToRun -- uid: Terminal.Gui.FakeDriver.Refresh - name: Refresh() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Refresh - commentId: M:Terminal.Gui.FakeDriver.Refresh - fullName: Terminal.Gui.FakeDriver.Refresh() - nameWithType: FakeDriver.Refresh() -- uid: Terminal.Gui.FakeDriver.Refresh* - name: Refresh - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Refresh_ - commentId: Overload:Terminal.Gui.FakeDriver.Refresh - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Refresh - nameWithType: FakeDriver.Refresh -- uid: Terminal.Gui.FakeDriver.ResizeScreen - name: ResizeScreen() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_ResizeScreen - commentId: M:Terminal.Gui.FakeDriver.ResizeScreen - fullName: Terminal.Gui.FakeDriver.ResizeScreen() - nameWithType: FakeDriver.ResizeScreen() -- uid: Terminal.Gui.FakeDriver.ResizeScreen* - name: ResizeScreen - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_ResizeScreen_ - commentId: Overload:Terminal.Gui.FakeDriver.ResizeScreen - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.ResizeScreen - nameWithType: FakeDriver.ResizeScreen -- uid: Terminal.Gui.FakeDriver.Rows - name: Rows - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Rows - commentId: P:Terminal.Gui.FakeDriver.Rows - fullName: Terminal.Gui.FakeDriver.Rows - nameWithType: FakeDriver.Rows -- uid: Terminal.Gui.FakeDriver.Rows* - name: Rows - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Rows_ - commentId: Overload:Terminal.Gui.FakeDriver.Rows - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Rows - nameWithType: FakeDriver.Rows -- uid: Terminal.Gui.FakeDriver.SendKeys(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean) - name: SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SendKeys_System_Char_System_ConsoleKey_System_Boolean_System_Boolean_System_Boolean_ - commentId: M:Terminal.Gui.FakeDriver.SendKeys(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean) - fullName: Terminal.Gui.FakeDriver.SendKeys(System.Char, System.ConsoleKey, System.Boolean, System.Boolean, System.Boolean) - nameWithType: FakeDriver.SendKeys(Char, ConsoleKey, Boolean, Boolean, Boolean) -- uid: Terminal.Gui.FakeDriver.SendKeys* - name: SendKeys - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SendKeys_ - commentId: Overload:Terminal.Gui.FakeDriver.SendKeys - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SendKeys - nameWithType: FakeDriver.SendKeys -- uid: Terminal.Gui.FakeDriver.SetAttribute(Terminal.Gui.Attribute) - name: SetAttribute(Attribute) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetAttribute_Terminal_Gui_Attribute_ - commentId: M:Terminal.Gui.FakeDriver.SetAttribute(Terminal.Gui.Attribute) - fullName: Terminal.Gui.FakeDriver.SetAttribute(Terminal.Gui.Attribute) - nameWithType: FakeDriver.SetAttribute(Attribute) -- uid: Terminal.Gui.FakeDriver.SetAttribute* - name: SetAttribute - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetAttribute_ - commentId: Overload:Terminal.Gui.FakeDriver.SetAttribute - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SetAttribute - nameWithType: FakeDriver.SetAttribute -- uid: Terminal.Gui.FakeDriver.SetBufferSize(System.Int32,System.Int32) - name: SetBufferSize(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetBufferSize_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeDriver.SetBufferSize(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeDriver.SetBufferSize(System.Int32, System.Int32) - nameWithType: FakeDriver.SetBufferSize(Int32, Int32) -- uid: Terminal.Gui.FakeDriver.SetBufferSize* - name: SetBufferSize - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetBufferSize_ - commentId: Overload:Terminal.Gui.FakeDriver.SetBufferSize - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SetBufferSize - nameWithType: FakeDriver.SetBufferSize -- uid: Terminal.Gui.FakeDriver.SetColors(System.ConsoleColor,System.ConsoleColor) - name: SetColors(ConsoleColor, ConsoleColor) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetColors_System_ConsoleColor_System_ConsoleColor_ - commentId: M:Terminal.Gui.FakeDriver.SetColors(System.ConsoleColor,System.ConsoleColor) - fullName: Terminal.Gui.FakeDriver.SetColors(System.ConsoleColor, System.ConsoleColor) - nameWithType: FakeDriver.SetColors(ConsoleColor, ConsoleColor) -- uid: Terminal.Gui.FakeDriver.SetColors(System.Int16,System.Int16) - name: SetColors(Int16, Int16) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetColors_System_Int16_System_Int16_ - commentId: M:Terminal.Gui.FakeDriver.SetColors(System.Int16,System.Int16) - fullName: Terminal.Gui.FakeDriver.SetColors(System.Int16, System.Int16) - nameWithType: FakeDriver.SetColors(Int16, Int16) -- uid: Terminal.Gui.FakeDriver.SetColors* - name: SetColors - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetColors_ - commentId: Overload:Terminal.Gui.FakeDriver.SetColors - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SetColors - nameWithType: FakeDriver.SetColors -- uid: Terminal.Gui.FakeDriver.SetCursorVisibility(Terminal.Gui.CursorVisibility) - name: SetCursorVisibility(CursorVisibility) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetCursorVisibility_Terminal_Gui_CursorVisibility_ - commentId: M:Terminal.Gui.FakeDriver.SetCursorVisibility(Terminal.Gui.CursorVisibility) - fullName: Terminal.Gui.FakeDriver.SetCursorVisibility(Terminal.Gui.CursorVisibility) - nameWithType: FakeDriver.SetCursorVisibility(CursorVisibility) -- uid: Terminal.Gui.FakeDriver.SetCursorVisibility* - name: SetCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetCursorVisibility_ - commentId: Overload:Terminal.Gui.FakeDriver.SetCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SetCursorVisibility - nameWithType: FakeDriver.SetCursorVisibility -- uid: Terminal.Gui.FakeDriver.SetWindowPosition(System.Int32,System.Int32) - name: SetWindowPosition(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetWindowPosition_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeDriver.SetWindowPosition(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeDriver.SetWindowPosition(System.Int32, System.Int32) - nameWithType: FakeDriver.SetWindowPosition(Int32, Int32) -- uid: Terminal.Gui.FakeDriver.SetWindowPosition* - name: SetWindowPosition - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetWindowPosition_ - commentId: Overload:Terminal.Gui.FakeDriver.SetWindowPosition - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SetWindowPosition - nameWithType: FakeDriver.SetWindowPosition -- uid: Terminal.Gui.FakeDriver.SetWindowSize(System.Int32,System.Int32) - name: SetWindowSize(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetWindowSize_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.FakeDriver.SetWindowSize(System.Int32,System.Int32) - fullName: Terminal.Gui.FakeDriver.SetWindowSize(System.Int32, System.Int32) - nameWithType: FakeDriver.SetWindowSize(Int32, Int32) -- uid: Terminal.Gui.FakeDriver.SetWindowSize* - name: SetWindowSize - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_SetWindowSize_ - commentId: Overload:Terminal.Gui.FakeDriver.SetWindowSize - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.SetWindowSize - nameWithType: FakeDriver.SetWindowSize -- uid: Terminal.Gui.FakeDriver.StartReportingMouseMoves - name: StartReportingMouseMoves() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_StartReportingMouseMoves - commentId: M:Terminal.Gui.FakeDriver.StartReportingMouseMoves - fullName: Terminal.Gui.FakeDriver.StartReportingMouseMoves() - nameWithType: FakeDriver.StartReportingMouseMoves() -- uid: Terminal.Gui.FakeDriver.StartReportingMouseMoves* - name: StartReportingMouseMoves - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_StartReportingMouseMoves_ - commentId: Overload:Terminal.Gui.FakeDriver.StartReportingMouseMoves - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.StartReportingMouseMoves - nameWithType: FakeDriver.StartReportingMouseMoves -- uid: Terminal.Gui.FakeDriver.StopReportingMouseMoves - name: StopReportingMouseMoves() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_StopReportingMouseMoves - commentId: M:Terminal.Gui.FakeDriver.StopReportingMouseMoves - fullName: Terminal.Gui.FakeDriver.StopReportingMouseMoves() - nameWithType: FakeDriver.StopReportingMouseMoves() -- uid: Terminal.Gui.FakeDriver.StopReportingMouseMoves* - name: StopReportingMouseMoves - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_StopReportingMouseMoves_ - commentId: Overload:Terminal.Gui.FakeDriver.StopReportingMouseMoves - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.StopReportingMouseMoves - nameWithType: FakeDriver.StopReportingMouseMoves -- uid: Terminal.Gui.FakeDriver.Suspend - name: Suspend() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Suspend - commentId: M:Terminal.Gui.FakeDriver.Suspend - fullName: Terminal.Gui.FakeDriver.Suspend() - nameWithType: FakeDriver.Suspend() -- uid: Terminal.Gui.FakeDriver.Suspend* - name: Suspend - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Suspend_ - commentId: Overload:Terminal.Gui.FakeDriver.Suspend - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Suspend - nameWithType: FakeDriver.Suspend -- uid: Terminal.Gui.FakeDriver.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Top - commentId: P:Terminal.Gui.FakeDriver.Top - fullName: Terminal.Gui.FakeDriver.Top - nameWithType: FakeDriver.Top -- uid: Terminal.Gui.FakeDriver.Top* - name: Top - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_Top_ - commentId: Overload:Terminal.Gui.FakeDriver.Top - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.Top - nameWithType: FakeDriver.Top -- uid: Terminal.Gui.FakeDriver.UncookMouse - name: UncookMouse() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UncookMouse - commentId: M:Terminal.Gui.FakeDriver.UncookMouse - fullName: Terminal.Gui.FakeDriver.UncookMouse() - nameWithType: FakeDriver.UncookMouse() -- uid: Terminal.Gui.FakeDriver.UncookMouse* - name: UncookMouse - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UncookMouse_ - commentId: Overload:Terminal.Gui.FakeDriver.UncookMouse - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.UncookMouse - nameWithType: FakeDriver.UncookMouse -- uid: Terminal.Gui.FakeDriver.UpdateCursor - name: UpdateCursor() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UpdateCursor - commentId: M:Terminal.Gui.FakeDriver.UpdateCursor - fullName: Terminal.Gui.FakeDriver.UpdateCursor() - nameWithType: FakeDriver.UpdateCursor() -- uid: Terminal.Gui.FakeDriver.UpdateCursor* - name: UpdateCursor - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UpdateCursor_ - commentId: Overload:Terminal.Gui.FakeDriver.UpdateCursor - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.UpdateCursor - nameWithType: FakeDriver.UpdateCursor -- uid: Terminal.Gui.FakeDriver.UpdateOffScreen - name: UpdateOffScreen() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UpdateOffScreen - commentId: M:Terminal.Gui.FakeDriver.UpdateOffScreen - fullName: Terminal.Gui.FakeDriver.UpdateOffScreen() - nameWithType: FakeDriver.UpdateOffScreen() -- uid: Terminal.Gui.FakeDriver.UpdateOffScreen* - name: UpdateOffScreen - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UpdateOffScreen_ - commentId: Overload:Terminal.Gui.FakeDriver.UpdateOffScreen - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.UpdateOffScreen - nameWithType: FakeDriver.UpdateOffScreen -- uid: Terminal.Gui.FakeDriver.UpdateScreen - name: UpdateScreen() - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UpdateScreen - commentId: M:Terminal.Gui.FakeDriver.UpdateScreen - fullName: Terminal.Gui.FakeDriver.UpdateScreen() - nameWithType: FakeDriver.UpdateScreen() -- uid: Terminal.Gui.FakeDriver.UpdateScreen* - name: UpdateScreen - href: api/Terminal.Gui/Terminal.Gui.FakeDriver.html#Terminal_Gui_FakeDriver_UpdateScreen_ - commentId: Overload:Terminal.Gui.FakeDriver.UpdateScreen - isSpec: "True" - fullName: Terminal.Gui.FakeDriver.UpdateScreen - nameWithType: FakeDriver.UpdateScreen -- uid: Terminal.Gui.FakeMainLoop - name: FakeMainLoop - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html - commentId: T:Terminal.Gui.FakeMainLoop - fullName: Terminal.Gui.FakeMainLoop - nameWithType: FakeMainLoop -- uid: Terminal.Gui.FakeMainLoop.#ctor(System.Func{System.ConsoleKeyInfo}) - name: FakeMainLoop(Func) - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop__ctor_System_Func_System_ConsoleKeyInfo__ - commentId: M:Terminal.Gui.FakeMainLoop.#ctor(System.Func{System.ConsoleKeyInfo}) - name.vb: FakeMainLoop(Func(Of ConsoleKeyInfo)) - fullName: Terminal.Gui.FakeMainLoop.FakeMainLoop(System.Func) - fullName.vb: Terminal.Gui.FakeMainLoop.FakeMainLoop(System.Func(Of System.ConsoleKeyInfo)) - nameWithType: FakeMainLoop.FakeMainLoop(Func) - nameWithType.vb: FakeMainLoop.FakeMainLoop(Func(Of ConsoleKeyInfo)) -- uid: Terminal.Gui.FakeMainLoop.#ctor* - name: FakeMainLoop - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop__ctor_ - commentId: Overload:Terminal.Gui.FakeMainLoop.#ctor - isSpec: "True" - fullName: Terminal.Gui.FakeMainLoop.FakeMainLoop - nameWithType: FakeMainLoop.FakeMainLoop -- uid: Terminal.Gui.FakeMainLoop.KeyPressed - name: KeyPressed - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_KeyPressed - commentId: F:Terminal.Gui.FakeMainLoop.KeyPressed - fullName: Terminal.Gui.FakeMainLoop.KeyPressed - nameWithType: FakeMainLoop.KeyPressed -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#EventsPending(System.Boolean) - name: IMainLoopDriver.EventsPending(Boolean) - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_EventsPending_System_Boolean_ - commentId: M:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#EventsPending(System.Boolean) - name.vb: Terminal.Gui.IMainLoopDriver.EventsPending(Boolean) - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.EventsPending(System.Boolean) - nameWithType: FakeMainLoop.IMainLoopDriver.EventsPending(Boolean) - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.EventsPending(Boolean) -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#EventsPending* - name: IMainLoopDriver.EventsPending - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_EventsPending_ - commentId: Overload:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#EventsPending - isSpec: "True" - name.vb: Terminal.Gui.IMainLoopDriver.EventsPending - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.EventsPending - nameWithType: FakeMainLoop.IMainLoopDriver.EventsPending - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.EventsPending -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#MainIteration - name: IMainLoopDriver.MainIteration() - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_MainIteration - commentId: M:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#MainIteration - name.vb: Terminal.Gui.IMainLoopDriver.MainIteration() - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.MainIteration() - nameWithType: FakeMainLoop.IMainLoopDriver.MainIteration() - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.MainIteration() -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#MainIteration* - name: IMainLoopDriver.MainIteration - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_MainIteration_ - commentId: Overload:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#MainIteration - isSpec: "True" - name.vb: Terminal.Gui.IMainLoopDriver.MainIteration - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.MainIteration - nameWithType: FakeMainLoop.IMainLoopDriver.MainIteration - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.MainIteration -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Setup(Terminal.Gui.MainLoop) - name: IMainLoopDriver.Setup(MainLoop) - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_Setup_Terminal_Gui_MainLoop_ - commentId: M:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Setup(Terminal.Gui.MainLoop) - name.vb: Terminal.Gui.IMainLoopDriver.Setup(MainLoop) - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.Setup(Terminal.Gui.MainLoop) - nameWithType: FakeMainLoop.IMainLoopDriver.Setup(MainLoop) - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.Setup(MainLoop) -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Setup* - name: IMainLoopDriver.Setup - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_Setup_ - commentId: Overload:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Setup - isSpec: "True" - name.vb: Terminal.Gui.IMainLoopDriver.Setup - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.Setup - nameWithType: FakeMainLoop.IMainLoopDriver.Setup - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.Setup -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Wakeup - name: IMainLoopDriver.Wakeup() - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_Wakeup - commentId: M:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Wakeup - name.vb: Terminal.Gui.IMainLoopDriver.Wakeup() - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.Wakeup() - nameWithType: FakeMainLoop.IMainLoopDriver.Wakeup() - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.Wakeup() -- uid: Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Wakeup* - name: IMainLoopDriver.Wakeup - href: api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html#Terminal_Gui_FakeMainLoop_Terminal_Gui_IMainLoopDriver_Wakeup_ - commentId: Overload:Terminal.Gui.FakeMainLoop.Terminal#Gui#IMainLoopDriver#Wakeup - isSpec: "True" - name.vb: Terminal.Gui.IMainLoopDriver.Wakeup - fullName: Terminal.Gui.FakeMainLoop.Terminal.Gui.IMainLoopDriver.Wakeup - nameWithType: FakeMainLoop.IMainLoopDriver.Wakeup - nameWithType.vb: FakeMainLoop.Terminal.Gui.IMainLoopDriver.Wakeup -- uid: Terminal.Gui.FileDialog - name: FileDialog - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html - commentId: T:Terminal.Gui.FileDialog - fullName: Terminal.Gui.FileDialog - nameWithType: FileDialog -- uid: Terminal.Gui.FileDialog.#ctor - name: FileDialog() - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor - commentId: M:Terminal.Gui.FileDialog.#ctor - fullName: Terminal.Gui.FileDialog.FileDialog() - nameWithType: FileDialog.FileDialog() -- uid: Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name: FileDialog(ustring, ustring, ustring, ustring, ustring, List) - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor_NStack_ustring_NStack_ustring_NStack_ustring_NStack_ustring_NStack_ustring_System_Collections_Generic_List_System_String__ - commentId: M:Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name.vb: FileDialog(ustring, ustring, ustring, ustring, ustring, List(Of String)) - fullName: Terminal.Gui.FileDialog.FileDialog(NStack.ustring, NStack.ustring, NStack.ustring, NStack.ustring, NStack.ustring, System.Collections.Generic.List) - fullName.vb: Terminal.Gui.FileDialog.FileDialog(NStack.ustring, NStack.ustring, NStack.ustring, NStack.ustring, NStack.ustring, System.Collections.Generic.List(Of System.String)) - nameWithType: FileDialog.FileDialog(ustring, ustring, ustring, ustring, ustring, List) - nameWithType.vb: FileDialog.FileDialog(ustring, ustring, ustring, ustring, ustring, List(Of String)) -- uid: Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name: FileDialog(ustring, ustring, ustring, ustring, List) - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor_NStack_ustring_NStack_ustring_NStack_ustring_NStack_ustring_System_Collections_Generic_List_System_String__ - commentId: M:Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name.vb: FileDialog(ustring, ustring, ustring, ustring, List(Of String)) - fullName: Terminal.Gui.FileDialog.FileDialog(NStack.ustring, NStack.ustring, NStack.ustring, NStack.ustring, System.Collections.Generic.List) - fullName.vb: Terminal.Gui.FileDialog.FileDialog(NStack.ustring, NStack.ustring, NStack.ustring, NStack.ustring, System.Collections.Generic.List(Of System.String)) - nameWithType: FileDialog.FileDialog(ustring, ustring, ustring, ustring, List) - nameWithType.vb: FileDialog.FileDialog(ustring, ustring, ustring, ustring, List(Of String)) -- uid: Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name: FileDialog(ustring, ustring, ustring, List) - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor_NStack_ustring_NStack_ustring_NStack_ustring_System_Collections_Generic_List_System_String__ - commentId: M:Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name.vb: FileDialog(ustring, ustring, ustring, List(Of String)) - fullName: Terminal.Gui.FileDialog.FileDialog(NStack.ustring, NStack.ustring, NStack.ustring, System.Collections.Generic.List) - fullName.vb: Terminal.Gui.FileDialog.FileDialog(NStack.ustring, NStack.ustring, NStack.ustring, System.Collections.Generic.List(Of System.String)) - nameWithType: FileDialog.FileDialog(ustring, ustring, ustring, List) - nameWithType.vb: FileDialog.FileDialog(ustring, ustring, ustring, List(Of String)) -- uid: Terminal.Gui.FileDialog.#ctor* - name: FileDialog - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor_ - commentId: Overload:Terminal.Gui.FileDialog.#ctor - isSpec: "True" - fullName: Terminal.Gui.FileDialog.FileDialog - nameWithType: FileDialog.FileDialog -- uid: Terminal.Gui.FileDialog.AllowedFileTypes - name: AllowedFileTypes - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowedFileTypes - commentId: P:Terminal.Gui.FileDialog.AllowedFileTypes - fullName: Terminal.Gui.FileDialog.AllowedFileTypes - nameWithType: FileDialog.AllowedFileTypes -- uid: Terminal.Gui.FileDialog.AllowedFileTypes* - name: AllowedFileTypes - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowedFileTypes_ - commentId: Overload:Terminal.Gui.FileDialog.AllowedFileTypes - isSpec: "True" - fullName: Terminal.Gui.FileDialog.AllowedFileTypes - nameWithType: FileDialog.AllowedFileTypes -- uid: Terminal.Gui.FileDialog.AllowsOtherFileTypes - name: AllowsOtherFileTypes - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowsOtherFileTypes - commentId: P:Terminal.Gui.FileDialog.AllowsOtherFileTypes - fullName: Terminal.Gui.FileDialog.AllowsOtherFileTypes - nameWithType: FileDialog.AllowsOtherFileTypes -- uid: Terminal.Gui.FileDialog.AllowsOtherFileTypes* - name: AllowsOtherFileTypes - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowsOtherFileTypes_ - commentId: Overload:Terminal.Gui.FileDialog.AllowsOtherFileTypes - isSpec: "True" - fullName: Terminal.Gui.FileDialog.AllowsOtherFileTypes - nameWithType: FileDialog.AllowsOtherFileTypes -- uid: Terminal.Gui.FileDialog.Canceled - name: Canceled - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Canceled - commentId: P:Terminal.Gui.FileDialog.Canceled - fullName: Terminal.Gui.FileDialog.Canceled - nameWithType: FileDialog.Canceled -- uid: Terminal.Gui.FileDialog.Canceled* - name: Canceled - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Canceled_ - commentId: Overload:Terminal.Gui.FileDialog.Canceled - isSpec: "True" - fullName: Terminal.Gui.FileDialog.Canceled - nameWithType: FileDialog.Canceled -- uid: Terminal.Gui.FileDialog.CanCreateDirectories - name: CanCreateDirectories - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_CanCreateDirectories - commentId: P:Terminal.Gui.FileDialog.CanCreateDirectories - fullName: Terminal.Gui.FileDialog.CanCreateDirectories - nameWithType: FileDialog.CanCreateDirectories -- uid: Terminal.Gui.FileDialog.CanCreateDirectories* - name: CanCreateDirectories - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_CanCreateDirectories_ - commentId: Overload:Terminal.Gui.FileDialog.CanCreateDirectories - isSpec: "True" - fullName: Terminal.Gui.FileDialog.CanCreateDirectories - nameWithType: FileDialog.CanCreateDirectories -- uid: Terminal.Gui.FileDialog.DirectoryPath - name: DirectoryPath - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_DirectoryPath - commentId: P:Terminal.Gui.FileDialog.DirectoryPath - fullName: Terminal.Gui.FileDialog.DirectoryPath - nameWithType: FileDialog.DirectoryPath -- uid: Terminal.Gui.FileDialog.DirectoryPath* - name: DirectoryPath - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_DirectoryPath_ - commentId: Overload:Terminal.Gui.FileDialog.DirectoryPath - isSpec: "True" - fullName: Terminal.Gui.FileDialog.DirectoryPath - nameWithType: FileDialog.DirectoryPath -- uid: Terminal.Gui.FileDialog.FilePath - name: FilePath - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_FilePath - commentId: P:Terminal.Gui.FileDialog.FilePath - fullName: Terminal.Gui.FileDialog.FilePath - nameWithType: FileDialog.FilePath -- uid: Terminal.Gui.FileDialog.FilePath* - name: FilePath - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_FilePath_ - commentId: Overload:Terminal.Gui.FileDialog.FilePath - isSpec: "True" - fullName: Terminal.Gui.FileDialog.FilePath - nameWithType: FileDialog.FilePath -- uid: Terminal.Gui.FileDialog.IsExtensionHidden - name: IsExtensionHidden - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_IsExtensionHidden - commentId: P:Terminal.Gui.FileDialog.IsExtensionHidden - fullName: Terminal.Gui.FileDialog.IsExtensionHidden - nameWithType: FileDialog.IsExtensionHidden -- uid: Terminal.Gui.FileDialog.IsExtensionHidden* - name: IsExtensionHidden - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_IsExtensionHidden_ - commentId: Overload:Terminal.Gui.FileDialog.IsExtensionHidden - isSpec: "True" - fullName: Terminal.Gui.FileDialog.IsExtensionHidden - nameWithType: FileDialog.IsExtensionHidden -- uid: Terminal.Gui.FileDialog.Message - name: Message - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Message - commentId: P:Terminal.Gui.FileDialog.Message - fullName: Terminal.Gui.FileDialog.Message - nameWithType: FileDialog.Message -- uid: Terminal.Gui.FileDialog.Message* - name: Message - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Message_ - commentId: Overload:Terminal.Gui.FileDialog.Message - isSpec: "True" - fullName: Terminal.Gui.FileDialog.Message - nameWithType: FileDialog.Message -- uid: Terminal.Gui.FileDialog.NameDirLabel - name: NameDirLabel - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_NameDirLabel - commentId: P:Terminal.Gui.FileDialog.NameDirLabel - fullName: Terminal.Gui.FileDialog.NameDirLabel - nameWithType: FileDialog.NameDirLabel -- uid: Terminal.Gui.FileDialog.NameDirLabel* - name: NameDirLabel - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_NameDirLabel_ - commentId: Overload:Terminal.Gui.FileDialog.NameDirLabel - isSpec: "True" - fullName: Terminal.Gui.FileDialog.NameDirLabel - nameWithType: FileDialog.NameDirLabel -- uid: Terminal.Gui.FileDialog.NameFieldLabel - name: NameFieldLabel - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_NameFieldLabel - commentId: P:Terminal.Gui.FileDialog.NameFieldLabel - fullName: Terminal.Gui.FileDialog.NameFieldLabel - nameWithType: FileDialog.NameFieldLabel -- uid: Terminal.Gui.FileDialog.NameFieldLabel* - name: NameFieldLabel - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_NameFieldLabel_ - commentId: Overload:Terminal.Gui.FileDialog.NameFieldLabel - isSpec: "True" - fullName: Terminal.Gui.FileDialog.NameFieldLabel - nameWithType: FileDialog.NameFieldLabel -- uid: Terminal.Gui.FileDialog.Prompt - name: Prompt - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Prompt - commentId: P:Terminal.Gui.FileDialog.Prompt - fullName: Terminal.Gui.FileDialog.Prompt - nameWithType: FileDialog.Prompt -- uid: Terminal.Gui.FileDialog.Prompt* - name: Prompt - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Prompt_ - commentId: Overload:Terminal.Gui.FileDialog.Prompt - isSpec: "True" - fullName: Terminal.Gui.FileDialog.Prompt - nameWithType: FileDialog.Prompt -- uid: Terminal.Gui.FileDialog.WillPresent - name: WillPresent() - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_WillPresent - commentId: M:Terminal.Gui.FileDialog.WillPresent - fullName: Terminal.Gui.FileDialog.WillPresent() - nameWithType: FileDialog.WillPresent() -- uid: Terminal.Gui.FileDialog.WillPresent* - name: WillPresent - href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_WillPresent_ - commentId: Overload:Terminal.Gui.FileDialog.WillPresent - isSpec: "True" - fullName: Terminal.Gui.FileDialog.WillPresent - nameWithType: FileDialog.WillPresent -- uid: Terminal.Gui.FrameView - name: FrameView - href: api/Terminal.Gui/Terminal.Gui.FrameView.html - commentId: T:Terminal.Gui.FrameView - fullName: Terminal.Gui.FrameView - nameWithType: FrameView -- uid: Terminal.Gui.FrameView.#ctor - name: FrameView() - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView__ctor - commentId: M:Terminal.Gui.FrameView.#ctor - fullName: Terminal.Gui.FrameView.FrameView() - nameWithType: FrameView.FrameView() -- uid: Terminal.Gui.FrameView.#ctor(NStack.ustring,Terminal.Gui.Border) - name: FrameView(ustring, Border) - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView__ctor_NStack_ustring_Terminal_Gui_Border_ - commentId: M:Terminal.Gui.FrameView.#ctor(NStack.ustring,Terminal.Gui.Border) - fullName: Terminal.Gui.FrameView.FrameView(NStack.ustring, Terminal.Gui.Border) - nameWithType: FrameView.FrameView(ustring, Border) -- uid: Terminal.Gui.FrameView.#ctor(Terminal.Gui.Rect,NStack.ustring,Terminal.Gui.View[],Terminal.Gui.Border) - name: FrameView(Rect, ustring, View[], Border) - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView__ctor_Terminal_Gui_Rect_NStack_ustring_Terminal_Gui_View___Terminal_Gui_Border_ - commentId: M:Terminal.Gui.FrameView.#ctor(Terminal.Gui.Rect,NStack.ustring,Terminal.Gui.View[],Terminal.Gui.Border) - name.vb: FrameView(Rect, ustring, View(), Border) - fullName: Terminal.Gui.FrameView.FrameView(Terminal.Gui.Rect, NStack.ustring, Terminal.Gui.View[], Terminal.Gui.Border) - fullName.vb: Terminal.Gui.FrameView.FrameView(Terminal.Gui.Rect, NStack.ustring, Terminal.Gui.View(), Terminal.Gui.Border) - nameWithType: FrameView.FrameView(Rect, ustring, View[], Border) - nameWithType.vb: FrameView.FrameView(Rect, ustring, View(), Border) -- uid: Terminal.Gui.FrameView.#ctor* - name: FrameView - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView__ctor_ - commentId: Overload:Terminal.Gui.FrameView.#ctor - isSpec: "True" - fullName: Terminal.Gui.FrameView.FrameView - nameWithType: FrameView.FrameView -- uid: Terminal.Gui.FrameView.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.FrameView.Add(Terminal.Gui.View) - fullName: Terminal.Gui.FrameView.Add(Terminal.Gui.View) - nameWithType: FrameView.Add(View) -- uid: Terminal.Gui.FrameView.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Add_ - commentId: Overload:Terminal.Gui.FrameView.Add - isSpec: "True" - fullName: Terminal.Gui.FrameView.Add - nameWithType: FrameView.Add -- uid: Terminal.Gui.FrameView.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Border - commentId: P:Terminal.Gui.FrameView.Border - fullName: Terminal.Gui.FrameView.Border - nameWithType: FrameView.Border -- uid: Terminal.Gui.FrameView.Border* - name: Border - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Border_ - commentId: Overload:Terminal.Gui.FrameView.Border - isSpec: "True" - fullName: Terminal.Gui.FrameView.Border - nameWithType: FrameView.Border -- uid: Terminal.Gui.FrameView.OnCanFocusChanged - name: OnCanFocusChanged() - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_OnCanFocusChanged - commentId: M:Terminal.Gui.FrameView.OnCanFocusChanged - fullName: Terminal.Gui.FrameView.OnCanFocusChanged() - nameWithType: FrameView.OnCanFocusChanged() -- uid: Terminal.Gui.FrameView.OnCanFocusChanged* - name: OnCanFocusChanged - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_OnCanFocusChanged_ - commentId: Overload:Terminal.Gui.FrameView.OnCanFocusChanged - isSpec: "True" - fullName: Terminal.Gui.FrameView.OnCanFocusChanged - nameWithType: FrameView.OnCanFocusChanged -- uid: Terminal.Gui.FrameView.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.FrameView.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.FrameView.OnEnter(Terminal.Gui.View) - nameWithType: FrameView.OnEnter(View) -- uid: Terminal.Gui.FrameView.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_OnEnter_ - commentId: Overload:Terminal.Gui.FrameView.OnEnter - isSpec: "True" - fullName: Terminal.Gui.FrameView.OnEnter - nameWithType: FrameView.OnEnter -- uid: Terminal.Gui.FrameView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.FrameView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.FrameView.Redraw(Terminal.Gui.Rect) - nameWithType: FrameView.Redraw(Rect) -- uid: Terminal.Gui.FrameView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Redraw_ - commentId: Overload:Terminal.Gui.FrameView.Redraw - isSpec: "True" - fullName: Terminal.Gui.FrameView.Redraw - nameWithType: FrameView.Redraw -- uid: Terminal.Gui.FrameView.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.FrameView.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.FrameView.Remove(Terminal.Gui.View) - nameWithType: FrameView.Remove(View) -- uid: Terminal.Gui.FrameView.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Remove_ - commentId: Overload:Terminal.Gui.FrameView.Remove - isSpec: "True" - fullName: Terminal.Gui.FrameView.Remove - nameWithType: FrameView.Remove -- uid: Terminal.Gui.FrameView.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_RemoveAll - commentId: M:Terminal.Gui.FrameView.RemoveAll - fullName: Terminal.Gui.FrameView.RemoveAll() - nameWithType: FrameView.RemoveAll() -- uid: Terminal.Gui.FrameView.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_RemoveAll_ - commentId: Overload:Terminal.Gui.FrameView.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.FrameView.RemoveAll - nameWithType: FrameView.RemoveAll -- uid: Terminal.Gui.FrameView.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Text - commentId: P:Terminal.Gui.FrameView.Text - fullName: Terminal.Gui.FrameView.Text - nameWithType: FrameView.Text -- uid: Terminal.Gui.FrameView.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Text_ - commentId: Overload:Terminal.Gui.FrameView.Text - isSpec: "True" - fullName: Terminal.Gui.FrameView.Text - nameWithType: FrameView.Text -- uid: Terminal.Gui.FrameView.TextAlignment - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_TextAlignment - commentId: P:Terminal.Gui.FrameView.TextAlignment - fullName: Terminal.Gui.FrameView.TextAlignment - nameWithType: FrameView.TextAlignment -- uid: Terminal.Gui.FrameView.TextAlignment* - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_TextAlignment_ - commentId: Overload:Terminal.Gui.FrameView.TextAlignment - isSpec: "True" - fullName: Terminal.Gui.FrameView.TextAlignment - nameWithType: FrameView.TextAlignment -- uid: Terminal.Gui.FrameView.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Title - commentId: P:Terminal.Gui.FrameView.Title - fullName: Terminal.Gui.FrameView.Title - nameWithType: FrameView.Title -- uid: Terminal.Gui.FrameView.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.FrameView.html#Terminal_Gui_FrameView_Title_ - commentId: Overload:Terminal.Gui.FrameView.Title - isSpec: "True" - fullName: Terminal.Gui.FrameView.Title - nameWithType: FrameView.Title -- uid: Terminal.Gui.Graphs - name: Terminal.Gui.Graphs - href: api/Terminal.Gui/Terminal.Gui.Graphs.html - commentId: N:Terminal.Gui.Graphs - fullName: Terminal.Gui.Graphs - nameWithType: Terminal.Gui.Graphs -- uid: Terminal.Gui.Graphs.Axis - name: Axis - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html - commentId: T:Terminal.Gui.Graphs.Axis - fullName: Terminal.Gui.Graphs.Axis - nameWithType: Axis -- uid: Terminal.Gui.Graphs.Axis.#ctor(Terminal.Gui.Graphs.Orientation) - name: Axis(Orientation) - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis__ctor_Terminal_Gui_Graphs_Orientation_ - commentId: M:Terminal.Gui.Graphs.Axis.#ctor(Terminal.Gui.Graphs.Orientation) - fullName: Terminal.Gui.Graphs.Axis.Axis(Terminal.Gui.Graphs.Orientation) - nameWithType: Axis.Axis(Orientation) -- uid: Terminal.Gui.Graphs.Axis.#ctor* - name: Axis - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis__ctor_ - commentId: Overload:Terminal.Gui.Graphs.Axis.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Axis - nameWithType: Axis.Axis -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLabel(Terminal.Gui.GraphView,System.Int32,System.String) - name: DrawAxisLabel(GraphView, Int32, String) - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLabel_Terminal_Gui_GraphView_System_Int32_System_String_ - commentId: M:Terminal.Gui.Graphs.Axis.DrawAxisLabel(Terminal.Gui.GraphView,System.Int32,System.String) - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLabel(Terminal.Gui.GraphView, System.Int32, System.String) - nameWithType: Axis.DrawAxisLabel(GraphView, Int32, String) -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLabel* - name: DrawAxisLabel - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLabel_ - commentId: Overload:Terminal.Gui.Graphs.Axis.DrawAxisLabel - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLabel - nameWithType: Axis.DrawAxisLabel -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLabels(Terminal.Gui.GraphView) - name: DrawAxisLabels(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLabels_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.Axis.DrawAxisLabels(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLabels(Terminal.Gui.GraphView) - nameWithType: Axis.DrawAxisLabels(GraphView) -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLabels* - name: DrawAxisLabels - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLabels_ - commentId: Overload:Terminal.Gui.Graphs.Axis.DrawAxisLabels - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLabels - nameWithType: Axis.DrawAxisLabels -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLine(Terminal.Gui.GraphView) - name: DrawAxisLine(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLine_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.Axis.DrawAxisLine(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLine(Terminal.Gui.GraphView) - nameWithType: Axis.DrawAxisLine(GraphView) -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLine(Terminal.Gui.GraphView,System.Int32,System.Int32) - name: DrawAxisLine(GraphView, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLine_Terminal_Gui_GraphView_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Graphs.Axis.DrawAxisLine(Terminal.Gui.GraphView,System.Int32,System.Int32) - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLine(Terminal.Gui.GraphView, System.Int32, System.Int32) - nameWithType: Axis.DrawAxisLine(GraphView, Int32, Int32) -- uid: Terminal.Gui.Graphs.Axis.DrawAxisLine* - name: DrawAxisLine - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_DrawAxisLine_ - commentId: Overload:Terminal.Gui.Graphs.Axis.DrawAxisLine - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.DrawAxisLine - nameWithType: Axis.DrawAxisLine -- uid: Terminal.Gui.Graphs.Axis.Increment - name: Increment - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Increment - commentId: P:Terminal.Gui.Graphs.Axis.Increment - fullName: Terminal.Gui.Graphs.Axis.Increment - nameWithType: Axis.Increment -- uid: Terminal.Gui.Graphs.Axis.Increment* - name: Increment - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Increment_ - commentId: Overload:Terminal.Gui.Graphs.Axis.Increment - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Increment - nameWithType: Axis.Increment -- uid: Terminal.Gui.Graphs.Axis.LabelGetter - name: LabelGetter - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_LabelGetter - commentId: F:Terminal.Gui.Graphs.Axis.LabelGetter - fullName: Terminal.Gui.Graphs.Axis.LabelGetter - nameWithType: Axis.LabelGetter -- uid: Terminal.Gui.Graphs.Axis.Minimum - name: Minimum - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Minimum - commentId: P:Terminal.Gui.Graphs.Axis.Minimum - fullName: Terminal.Gui.Graphs.Axis.Minimum - nameWithType: Axis.Minimum -- uid: Terminal.Gui.Graphs.Axis.Minimum* - name: Minimum - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Minimum_ - commentId: Overload:Terminal.Gui.Graphs.Axis.Minimum - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Minimum - nameWithType: Axis.Minimum -- uid: Terminal.Gui.Graphs.Axis.Orientation - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Orientation - commentId: P:Terminal.Gui.Graphs.Axis.Orientation - fullName: Terminal.Gui.Graphs.Axis.Orientation - nameWithType: Axis.Orientation -- uid: Terminal.Gui.Graphs.Axis.Orientation* - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Orientation_ - commentId: Overload:Terminal.Gui.Graphs.Axis.Orientation - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Orientation - nameWithType: Axis.Orientation -- uid: Terminal.Gui.Graphs.Axis.Reset - name: Reset() - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Reset - commentId: M:Terminal.Gui.Graphs.Axis.Reset - fullName: Terminal.Gui.Graphs.Axis.Reset() - nameWithType: Axis.Reset() -- uid: Terminal.Gui.Graphs.Axis.Reset* - name: Reset - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Reset_ - commentId: Overload:Terminal.Gui.Graphs.Axis.Reset - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Reset - nameWithType: Axis.Reset -- uid: Terminal.Gui.Graphs.Axis.ShowLabelsEvery - name: ShowLabelsEvery - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_ShowLabelsEvery - commentId: P:Terminal.Gui.Graphs.Axis.ShowLabelsEvery - fullName: Terminal.Gui.Graphs.Axis.ShowLabelsEvery - nameWithType: Axis.ShowLabelsEvery -- uid: Terminal.Gui.Graphs.Axis.ShowLabelsEvery* - name: ShowLabelsEvery - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_ShowLabelsEvery_ - commentId: Overload:Terminal.Gui.Graphs.Axis.ShowLabelsEvery - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.ShowLabelsEvery - nameWithType: Axis.ShowLabelsEvery -- uid: Terminal.Gui.Graphs.Axis.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Text - commentId: P:Terminal.Gui.Graphs.Axis.Text - fullName: Terminal.Gui.Graphs.Axis.Text - nameWithType: Axis.Text -- uid: Terminal.Gui.Graphs.Axis.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Text_ - commentId: Overload:Terminal.Gui.Graphs.Axis.Text - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Text - nameWithType: Axis.Text -- uid: Terminal.Gui.Graphs.Axis.Visible - name: Visible - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Visible - commentId: P:Terminal.Gui.Graphs.Axis.Visible - fullName: Terminal.Gui.Graphs.Axis.Visible - nameWithType: Axis.Visible -- uid: Terminal.Gui.Graphs.Axis.Visible* - name: Visible - href: api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html#Terminal_Gui_Graphs_Axis_Visible_ - commentId: Overload:Terminal.Gui.Graphs.Axis.Visible - isSpec: "True" - fullName: Terminal.Gui.Graphs.Axis.Visible - nameWithType: Axis.Visible -- uid: Terminal.Gui.Graphs.AxisIncrementToRender - name: AxisIncrementToRender - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html - commentId: T:Terminal.Gui.Graphs.AxisIncrementToRender - fullName: Terminal.Gui.Graphs.AxisIncrementToRender - nameWithType: AxisIncrementToRender -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.#ctor(Terminal.Gui.Graphs.Orientation,System.Int32,System.Single) - name: AxisIncrementToRender(Orientation, Int32, Single) - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender__ctor_Terminal_Gui_Graphs_Orientation_System_Int32_System_Single_ - commentId: M:Terminal.Gui.Graphs.AxisIncrementToRender.#ctor(Terminal.Gui.Graphs.Orientation,System.Int32,System.Single) - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.AxisIncrementToRender(Terminal.Gui.Graphs.Orientation, System.Int32, System.Single) - nameWithType: AxisIncrementToRender.AxisIncrementToRender(Orientation, Int32, Single) -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.#ctor* - name: AxisIncrementToRender - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender__ctor_ - commentId: Overload:Terminal.Gui.Graphs.AxisIncrementToRender.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.AxisIncrementToRender - nameWithType: AxisIncrementToRender.AxisIncrementToRender -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.Orientation - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender_Orientation - commentId: P:Terminal.Gui.Graphs.AxisIncrementToRender.Orientation - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.Orientation - nameWithType: AxisIncrementToRender.Orientation -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.Orientation* - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender_Orientation_ - commentId: Overload:Terminal.Gui.Graphs.AxisIncrementToRender.Orientation - isSpec: "True" - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.Orientation - nameWithType: AxisIncrementToRender.Orientation -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.ScreenLocation - name: ScreenLocation - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender_ScreenLocation - commentId: P:Terminal.Gui.Graphs.AxisIncrementToRender.ScreenLocation - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.ScreenLocation - nameWithType: AxisIncrementToRender.ScreenLocation -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.ScreenLocation* - name: ScreenLocation - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender_ScreenLocation_ - commentId: Overload:Terminal.Gui.Graphs.AxisIncrementToRender.ScreenLocation - isSpec: "True" - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.ScreenLocation - nameWithType: AxisIncrementToRender.ScreenLocation -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.Value - name: Value - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender_Value - commentId: P:Terminal.Gui.Graphs.AxisIncrementToRender.Value - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.Value - nameWithType: AxisIncrementToRender.Value -- uid: Terminal.Gui.Graphs.AxisIncrementToRender.Value* - name: Value - href: api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html#Terminal_Gui_Graphs_AxisIncrementToRender_Value_ - commentId: Overload:Terminal.Gui.Graphs.AxisIncrementToRender.Value - isSpec: "True" - fullName: Terminal.Gui.Graphs.AxisIncrementToRender.Value - nameWithType: AxisIncrementToRender.Value -- uid: Terminal.Gui.Graphs.BarSeries - name: BarSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html - commentId: T:Terminal.Gui.Graphs.BarSeries - fullName: Terminal.Gui.Graphs.BarSeries - nameWithType: BarSeries -- uid: Terminal.Gui.Graphs.BarSeries.AdjustColor(Terminal.Gui.Graphs.GraphCellToRender) - name: AdjustColor(GraphCellToRender) - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_AdjustColor_Terminal_Gui_Graphs_GraphCellToRender_ - commentId: M:Terminal.Gui.Graphs.BarSeries.AdjustColor(Terminal.Gui.Graphs.GraphCellToRender) - fullName: Terminal.Gui.Graphs.BarSeries.AdjustColor(Terminal.Gui.Graphs.GraphCellToRender) - nameWithType: BarSeries.AdjustColor(GraphCellToRender) -- uid: Terminal.Gui.Graphs.BarSeries.AdjustColor* - name: AdjustColor - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_AdjustColor_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.AdjustColor - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.AdjustColor - nameWithType: BarSeries.AdjustColor -- uid: Terminal.Gui.Graphs.BarSeries.Bar - name: BarSeries.Bar - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html - commentId: T:Terminal.Gui.Graphs.BarSeries.Bar - fullName: Terminal.Gui.Graphs.BarSeries.Bar - nameWithType: BarSeries.Bar -- uid: Terminal.Gui.Graphs.BarSeries.Bar.#ctor(System.String,Terminal.Gui.Graphs.GraphCellToRender,System.Single) - name: Bar(String, GraphCellToRender, Single) - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar__ctor_System_String_Terminal_Gui_Graphs_GraphCellToRender_System_Single_ - commentId: M:Terminal.Gui.Graphs.BarSeries.Bar.#ctor(System.String,Terminal.Gui.Graphs.GraphCellToRender,System.Single) - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Bar(System.String, Terminal.Gui.Graphs.GraphCellToRender, System.Single) - nameWithType: BarSeries.Bar.Bar(String, GraphCellToRender, Single) -- uid: Terminal.Gui.Graphs.BarSeries.Bar.#ctor* - name: Bar - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar__ctor_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Bar.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Bar - nameWithType: BarSeries.Bar.Bar -- uid: Terminal.Gui.Graphs.BarSeries.Bar.Fill - name: Fill - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar_Fill - commentId: P:Terminal.Gui.Graphs.BarSeries.Bar.Fill - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Fill - nameWithType: BarSeries.Bar.Fill -- uid: Terminal.Gui.Graphs.BarSeries.Bar.Fill* - name: Fill - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar_Fill_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Bar.Fill - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Fill - nameWithType: BarSeries.Bar.Fill -- uid: Terminal.Gui.Graphs.BarSeries.Bar.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar_Text - commentId: P:Terminal.Gui.Graphs.BarSeries.Bar.Text - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Text - nameWithType: BarSeries.Bar.Text -- uid: Terminal.Gui.Graphs.BarSeries.Bar.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar_Text_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Bar.Text - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Text - nameWithType: BarSeries.Bar.Text -- uid: Terminal.Gui.Graphs.BarSeries.Bar.Value - name: Value - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar_Value - commentId: P:Terminal.Gui.Graphs.BarSeries.Bar.Value - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Value - nameWithType: BarSeries.Bar.Value -- uid: Terminal.Gui.Graphs.BarSeries.Bar.Value* - name: Value - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html#Terminal_Gui_Graphs_BarSeries_Bar_Value_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Bar.Value - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Bar.Value - nameWithType: BarSeries.Bar.Value -- uid: Terminal.Gui.Graphs.BarSeries.BarEvery - name: BarEvery - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_BarEvery - commentId: P:Terminal.Gui.Graphs.BarSeries.BarEvery - fullName: Terminal.Gui.Graphs.BarSeries.BarEvery - nameWithType: BarSeries.BarEvery -- uid: Terminal.Gui.Graphs.BarSeries.BarEvery* - name: BarEvery - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_BarEvery_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.BarEvery - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.BarEvery - nameWithType: BarSeries.BarEvery -- uid: Terminal.Gui.Graphs.BarSeries.Bars - name: Bars - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_Bars - commentId: P:Terminal.Gui.Graphs.BarSeries.Bars - fullName: Terminal.Gui.Graphs.BarSeries.Bars - nameWithType: BarSeries.Bars -- uid: Terminal.Gui.Graphs.BarSeries.Bars* - name: Bars - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_Bars_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Bars - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Bars - nameWithType: BarSeries.Bars -- uid: Terminal.Gui.Graphs.BarSeries.DrawBarLine(Terminal.Gui.GraphView,Terminal.Gui.Point,Terminal.Gui.Point,Terminal.Gui.Graphs.BarSeries.Bar) - name: DrawBarLine(GraphView, Point, Point, BarSeries.Bar) - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_DrawBarLine_Terminal_Gui_GraphView_Terminal_Gui_Point_Terminal_Gui_Point_Terminal_Gui_Graphs_BarSeries_Bar_ - commentId: M:Terminal.Gui.Graphs.BarSeries.DrawBarLine(Terminal.Gui.GraphView,Terminal.Gui.Point,Terminal.Gui.Point,Terminal.Gui.Graphs.BarSeries.Bar) - fullName: Terminal.Gui.Graphs.BarSeries.DrawBarLine(Terminal.Gui.GraphView, Terminal.Gui.Point, Terminal.Gui.Point, Terminal.Gui.Graphs.BarSeries.Bar) - nameWithType: BarSeries.DrawBarLine(GraphView, Point, Point, BarSeries.Bar) -- uid: Terminal.Gui.Graphs.BarSeries.DrawBarLine* - name: DrawBarLine - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_DrawBarLine_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.DrawBarLine - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.DrawBarLine - nameWithType: BarSeries.DrawBarLine -- uid: Terminal.Gui.Graphs.BarSeries.DrawLabels - name: DrawLabels - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_DrawLabels - commentId: P:Terminal.Gui.Graphs.BarSeries.DrawLabels - fullName: Terminal.Gui.Graphs.BarSeries.DrawLabels - nameWithType: BarSeries.DrawLabels -- uid: Terminal.Gui.Graphs.BarSeries.DrawLabels* - name: DrawLabels - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_DrawLabels_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.DrawLabels - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.DrawLabels - nameWithType: BarSeries.DrawLabels -- uid: Terminal.Gui.Graphs.BarSeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - name: DrawSeries(GraphView, Rect, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_DrawSeries_Terminal_Gui_GraphView_Terminal_Gui_Rect_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.Graphs.BarSeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.Graphs.BarSeries.DrawSeries(Terminal.Gui.GraphView, Terminal.Gui.Rect, Terminal.Gui.RectangleF) - nameWithType: BarSeries.DrawSeries(GraphView, Rect, RectangleF) -- uid: Terminal.Gui.Graphs.BarSeries.DrawSeries* - name: DrawSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_DrawSeries_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.DrawSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.DrawSeries - nameWithType: BarSeries.DrawSeries -- uid: Terminal.Gui.Graphs.BarSeries.Offset - name: Offset - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_Offset - commentId: P:Terminal.Gui.Graphs.BarSeries.Offset - fullName: Terminal.Gui.Graphs.BarSeries.Offset - nameWithType: BarSeries.Offset -- uid: Terminal.Gui.Graphs.BarSeries.Offset* - name: Offset - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_Offset_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Offset - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Offset - nameWithType: BarSeries.Offset -- uid: Terminal.Gui.Graphs.BarSeries.Orientation - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_Orientation - commentId: P:Terminal.Gui.Graphs.BarSeries.Orientation - fullName: Terminal.Gui.Graphs.BarSeries.Orientation - nameWithType: BarSeries.Orientation -- uid: Terminal.Gui.Graphs.BarSeries.Orientation* - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_Orientation_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.Orientation - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.Orientation - nameWithType: BarSeries.Orientation -- uid: Terminal.Gui.Graphs.BarSeries.OverrideBarColor - name: OverrideBarColor - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_OverrideBarColor - commentId: P:Terminal.Gui.Graphs.BarSeries.OverrideBarColor - fullName: Terminal.Gui.Graphs.BarSeries.OverrideBarColor - nameWithType: BarSeries.OverrideBarColor -- uid: Terminal.Gui.Graphs.BarSeries.OverrideBarColor* - name: OverrideBarColor - href: api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html#Terminal_Gui_Graphs_BarSeries_OverrideBarColor_ - commentId: Overload:Terminal.Gui.Graphs.BarSeries.OverrideBarColor - isSpec: "True" - fullName: Terminal.Gui.Graphs.BarSeries.OverrideBarColor - nameWithType: BarSeries.OverrideBarColor -- uid: Terminal.Gui.Graphs.GraphCellToRender - name: GraphCellToRender - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html - commentId: T:Terminal.Gui.Graphs.GraphCellToRender - fullName: Terminal.Gui.Graphs.GraphCellToRender - nameWithType: GraphCellToRender -- uid: Terminal.Gui.Graphs.GraphCellToRender.#ctor(System.Rune) - name: GraphCellToRender(Rune) - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender__ctor_System_Rune_ - commentId: M:Terminal.Gui.Graphs.GraphCellToRender.#ctor(System.Rune) - fullName: Terminal.Gui.Graphs.GraphCellToRender.GraphCellToRender(System.Rune) - nameWithType: GraphCellToRender.GraphCellToRender(Rune) -- uid: Terminal.Gui.Graphs.GraphCellToRender.#ctor(System.Rune,System.Nullable{Terminal.Gui.Attribute}) - name: GraphCellToRender(Rune, Nullable) - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender__ctor_System_Rune_System_Nullable_Terminal_Gui_Attribute__ - commentId: M:Terminal.Gui.Graphs.GraphCellToRender.#ctor(System.Rune,System.Nullable{Terminal.Gui.Attribute}) - name.vb: GraphCellToRender(Rune, Nullable(Of Attribute)) - fullName: Terminal.Gui.Graphs.GraphCellToRender.GraphCellToRender(System.Rune, System.Nullable) - fullName.vb: Terminal.Gui.Graphs.GraphCellToRender.GraphCellToRender(System.Rune, System.Nullable(Of Terminal.Gui.Attribute)) - nameWithType: GraphCellToRender.GraphCellToRender(Rune, Nullable) - nameWithType.vb: GraphCellToRender.GraphCellToRender(Rune, Nullable(Of Attribute)) -- uid: Terminal.Gui.Graphs.GraphCellToRender.#ctor(System.Rune,Terminal.Gui.Attribute) - name: GraphCellToRender(Rune, Attribute) - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender__ctor_System_Rune_Terminal_Gui_Attribute_ - commentId: M:Terminal.Gui.Graphs.GraphCellToRender.#ctor(System.Rune,Terminal.Gui.Attribute) - fullName: Terminal.Gui.Graphs.GraphCellToRender.GraphCellToRender(System.Rune, Terminal.Gui.Attribute) - nameWithType: GraphCellToRender.GraphCellToRender(Rune, Attribute) -- uid: Terminal.Gui.Graphs.GraphCellToRender.#ctor* - name: GraphCellToRender - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender__ctor_ - commentId: Overload:Terminal.Gui.Graphs.GraphCellToRender.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.GraphCellToRender.GraphCellToRender - nameWithType: GraphCellToRender.GraphCellToRender -- uid: Terminal.Gui.Graphs.GraphCellToRender.Color - name: Color - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender_Color - commentId: P:Terminal.Gui.Graphs.GraphCellToRender.Color - fullName: Terminal.Gui.Graphs.GraphCellToRender.Color - nameWithType: GraphCellToRender.Color -- uid: Terminal.Gui.Graphs.GraphCellToRender.Color* - name: Color - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender_Color_ - commentId: Overload:Terminal.Gui.Graphs.GraphCellToRender.Color - isSpec: "True" - fullName: Terminal.Gui.Graphs.GraphCellToRender.Color - nameWithType: GraphCellToRender.Color -- uid: Terminal.Gui.Graphs.GraphCellToRender.Rune - name: Rune - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender_Rune - commentId: P:Terminal.Gui.Graphs.GraphCellToRender.Rune - fullName: Terminal.Gui.Graphs.GraphCellToRender.Rune - nameWithType: GraphCellToRender.Rune -- uid: Terminal.Gui.Graphs.GraphCellToRender.Rune* - name: Rune - href: api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html#Terminal_Gui_Graphs_GraphCellToRender_Rune_ - commentId: Overload:Terminal.Gui.Graphs.GraphCellToRender.Rune - isSpec: "True" - fullName: Terminal.Gui.Graphs.GraphCellToRender.Rune - nameWithType: GraphCellToRender.Rune -- uid: Terminal.Gui.Graphs.HorizontalAxis - name: HorizontalAxis - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html - commentId: T:Terminal.Gui.Graphs.HorizontalAxis - fullName: Terminal.Gui.Graphs.HorizontalAxis - nameWithType: HorizontalAxis -- uid: Terminal.Gui.Graphs.HorizontalAxis.#ctor - name: HorizontalAxis() - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis__ctor - commentId: M:Terminal.Gui.Graphs.HorizontalAxis.#ctor - fullName: Terminal.Gui.Graphs.HorizontalAxis.HorizontalAxis() - nameWithType: HorizontalAxis.HorizontalAxis() -- uid: Terminal.Gui.Graphs.HorizontalAxis.#ctor* - name: HorizontalAxis - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis__ctor_ - commentId: Overload:Terminal.Gui.Graphs.HorizontalAxis.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.HorizontalAxis.HorizontalAxis - nameWithType: HorizontalAxis.HorizontalAxis -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabel(Terminal.Gui.GraphView,System.Int32,System.String) - name: DrawAxisLabel(GraphView, Int32, String) - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLabel_Terminal_Gui_GraphView_System_Int32_System_String_ - commentId: M:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabel(Terminal.Gui.GraphView,System.Int32,System.String) - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabel(Terminal.Gui.GraphView, System.Int32, System.String) - nameWithType: HorizontalAxis.DrawAxisLabel(GraphView, Int32, String) -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabel* - name: DrawAxisLabel - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLabel_ - commentId: Overload:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabel - isSpec: "True" - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabel - nameWithType: HorizontalAxis.DrawAxisLabel -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabels(Terminal.Gui.GraphView) - name: DrawAxisLabels(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLabels_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabels(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabels(Terminal.Gui.GraphView) - nameWithType: HorizontalAxis.DrawAxisLabels(GraphView) -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabels* - name: DrawAxisLabels - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLabels_ - commentId: Overload:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabels - isSpec: "True" - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLabels - nameWithType: HorizontalAxis.DrawAxisLabels -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine(Terminal.Gui.GraphView) - name: DrawAxisLine(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLine_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine(Terminal.Gui.GraphView) - nameWithType: HorizontalAxis.DrawAxisLine(GraphView) -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine(Terminal.Gui.GraphView,System.Int32,System.Int32) - name: DrawAxisLine(GraphView, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLine_Terminal_Gui_GraphView_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine(Terminal.Gui.GraphView,System.Int32,System.Int32) - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine(Terminal.Gui.GraphView, System.Int32, System.Int32) - nameWithType: HorizontalAxis.DrawAxisLine(GraphView, Int32, Int32) -- uid: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine* - name: DrawAxisLine - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_DrawAxisLine_ - commentId: Overload:Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine - isSpec: "True" - fullName: Terminal.Gui.Graphs.HorizontalAxis.DrawAxisLine - nameWithType: HorizontalAxis.DrawAxisLine -- uid: Terminal.Gui.Graphs.HorizontalAxis.GetAxisYPosition(Terminal.Gui.GraphView) - name: GetAxisYPosition(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_GetAxisYPosition_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.HorizontalAxis.GetAxisYPosition(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.HorizontalAxis.GetAxisYPosition(Terminal.Gui.GraphView) - nameWithType: HorizontalAxis.GetAxisYPosition(GraphView) -- uid: Terminal.Gui.Graphs.HorizontalAxis.GetAxisYPosition* - name: GetAxisYPosition - href: api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html#Terminal_Gui_Graphs_HorizontalAxis_GetAxisYPosition_ - commentId: Overload:Terminal.Gui.Graphs.HorizontalAxis.GetAxisYPosition - isSpec: "True" - fullName: Terminal.Gui.Graphs.HorizontalAxis.GetAxisYPosition - nameWithType: HorizontalAxis.GetAxisYPosition -- uid: Terminal.Gui.Graphs.IAnnotation - name: IAnnotation - href: api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html - commentId: T:Terminal.Gui.Graphs.IAnnotation - fullName: Terminal.Gui.Graphs.IAnnotation - nameWithType: IAnnotation -- uid: Terminal.Gui.Graphs.IAnnotation.BeforeSeries - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html#Terminal_Gui_Graphs_IAnnotation_BeforeSeries - commentId: P:Terminal.Gui.Graphs.IAnnotation.BeforeSeries - fullName: Terminal.Gui.Graphs.IAnnotation.BeforeSeries - nameWithType: IAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.IAnnotation.BeforeSeries* - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html#Terminal_Gui_Graphs_IAnnotation_BeforeSeries_ - commentId: Overload:Terminal.Gui.Graphs.IAnnotation.BeforeSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.IAnnotation.BeforeSeries - nameWithType: IAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.IAnnotation.Render(Terminal.Gui.GraphView) - name: Render(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html#Terminal_Gui_Graphs_IAnnotation_Render_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.IAnnotation.Render(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.IAnnotation.Render(Terminal.Gui.GraphView) - nameWithType: IAnnotation.Render(GraphView) -- uid: Terminal.Gui.Graphs.IAnnotation.Render* - name: Render - href: api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html#Terminal_Gui_Graphs_IAnnotation_Render_ - commentId: Overload:Terminal.Gui.Graphs.IAnnotation.Render - isSpec: "True" - fullName: Terminal.Gui.Graphs.IAnnotation.Render - nameWithType: IAnnotation.Render -- uid: Terminal.Gui.Graphs.ISeries - name: ISeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html - commentId: T:Terminal.Gui.Graphs.ISeries - fullName: Terminal.Gui.Graphs.ISeries - nameWithType: ISeries -- uid: Terminal.Gui.Graphs.ISeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - name: DrawSeries(GraphView, Rect, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html#Terminal_Gui_Graphs_ISeries_DrawSeries_Terminal_Gui_GraphView_Terminal_Gui_Rect_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.Graphs.ISeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.Graphs.ISeries.DrawSeries(Terminal.Gui.GraphView, Terminal.Gui.Rect, Terminal.Gui.RectangleF) - nameWithType: ISeries.DrawSeries(GraphView, Rect, RectangleF) -- uid: Terminal.Gui.Graphs.ISeries.DrawSeries* - name: DrawSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html#Terminal_Gui_Graphs_ISeries_DrawSeries_ - commentId: Overload:Terminal.Gui.Graphs.ISeries.DrawSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.ISeries.DrawSeries - nameWithType: ISeries.DrawSeries -- uid: Terminal.Gui.Graphs.LabelGetterDelegate - name: LabelGetterDelegate - href: api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html - commentId: T:Terminal.Gui.Graphs.LabelGetterDelegate - fullName: Terminal.Gui.Graphs.LabelGetterDelegate - nameWithType: LabelGetterDelegate -- uid: Terminal.Gui.Graphs.LegendAnnotation - name: LegendAnnotation - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html - commentId: T:Terminal.Gui.Graphs.LegendAnnotation - fullName: Terminal.Gui.Graphs.LegendAnnotation - nameWithType: LegendAnnotation -- uid: Terminal.Gui.Graphs.LegendAnnotation.#ctor(Terminal.Gui.Rect) - name: LegendAnnotation(Rect) - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Graphs.LegendAnnotation.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.Graphs.LegendAnnotation.LegendAnnotation(Terminal.Gui.Rect) - nameWithType: LegendAnnotation.LegendAnnotation(Rect) -- uid: Terminal.Gui.Graphs.LegendAnnotation.#ctor* - name: LegendAnnotation - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation__ctor_ - commentId: Overload:Terminal.Gui.Graphs.LegendAnnotation.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.LegendAnnotation.LegendAnnotation - nameWithType: LegendAnnotation.LegendAnnotation -- uid: Terminal.Gui.Graphs.LegendAnnotation.AddEntry(Terminal.Gui.Graphs.GraphCellToRender,System.String) - name: AddEntry(GraphCellToRender, String) - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_AddEntry_Terminal_Gui_Graphs_GraphCellToRender_System_String_ - commentId: M:Terminal.Gui.Graphs.LegendAnnotation.AddEntry(Terminal.Gui.Graphs.GraphCellToRender,System.String) - fullName: Terminal.Gui.Graphs.LegendAnnotation.AddEntry(Terminal.Gui.Graphs.GraphCellToRender, System.String) - nameWithType: LegendAnnotation.AddEntry(GraphCellToRender, String) -- uid: Terminal.Gui.Graphs.LegendAnnotation.AddEntry* - name: AddEntry - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_AddEntry_ - commentId: Overload:Terminal.Gui.Graphs.LegendAnnotation.AddEntry - isSpec: "True" - fullName: Terminal.Gui.Graphs.LegendAnnotation.AddEntry - nameWithType: LegendAnnotation.AddEntry -- uid: Terminal.Gui.Graphs.LegendAnnotation.BeforeSeries - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_BeforeSeries - commentId: P:Terminal.Gui.Graphs.LegendAnnotation.BeforeSeries - fullName: Terminal.Gui.Graphs.LegendAnnotation.BeforeSeries - nameWithType: LegendAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.LegendAnnotation.BeforeSeries* - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_BeforeSeries_ - commentId: Overload:Terminal.Gui.Graphs.LegendAnnotation.BeforeSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.LegendAnnotation.BeforeSeries - nameWithType: LegendAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.LegendAnnotation.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_Border - commentId: P:Terminal.Gui.Graphs.LegendAnnotation.Border - fullName: Terminal.Gui.Graphs.LegendAnnotation.Border - nameWithType: LegendAnnotation.Border -- uid: Terminal.Gui.Graphs.LegendAnnotation.Border* - name: Border - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_Border_ - commentId: Overload:Terminal.Gui.Graphs.LegendAnnotation.Border - isSpec: "True" - fullName: Terminal.Gui.Graphs.LegendAnnotation.Border - nameWithType: LegendAnnotation.Border -- uid: Terminal.Gui.Graphs.LegendAnnotation.Bounds - name: Bounds - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_Bounds - commentId: P:Terminal.Gui.Graphs.LegendAnnotation.Bounds - fullName: Terminal.Gui.Graphs.LegendAnnotation.Bounds - nameWithType: LegendAnnotation.Bounds -- uid: Terminal.Gui.Graphs.LegendAnnotation.Bounds* - name: Bounds - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_Bounds_ - commentId: Overload:Terminal.Gui.Graphs.LegendAnnotation.Bounds - isSpec: "True" - fullName: Terminal.Gui.Graphs.LegendAnnotation.Bounds - nameWithType: LegendAnnotation.Bounds -- uid: Terminal.Gui.Graphs.LegendAnnotation.Render(Terminal.Gui.GraphView) - name: Render(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_Render_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.LegendAnnotation.Render(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.LegendAnnotation.Render(Terminal.Gui.GraphView) - nameWithType: LegendAnnotation.Render(GraphView) -- uid: Terminal.Gui.Graphs.LegendAnnotation.Render* - name: Render - href: api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html#Terminal_Gui_Graphs_LegendAnnotation_Render_ - commentId: Overload:Terminal.Gui.Graphs.LegendAnnotation.Render - isSpec: "True" - fullName: Terminal.Gui.Graphs.LegendAnnotation.Render - nameWithType: LegendAnnotation.Render -- uid: Terminal.Gui.Graphs.MultiBarSeries - name: MultiBarSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html - commentId: T:Terminal.Gui.Graphs.MultiBarSeries - fullName: Terminal.Gui.Graphs.MultiBarSeries - nameWithType: MultiBarSeries -- uid: Terminal.Gui.Graphs.MultiBarSeries.#ctor(System.Int32,System.Single,System.Single,Terminal.Gui.Attribute[]) - name: MultiBarSeries(Int32, Single, Single, Attribute[]) - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries__ctor_System_Int32_System_Single_System_Single_Terminal_Gui_Attribute___ - commentId: M:Terminal.Gui.Graphs.MultiBarSeries.#ctor(System.Int32,System.Single,System.Single,Terminal.Gui.Attribute[]) - name.vb: MultiBarSeries(Int32, Single, Single, Attribute()) - fullName: Terminal.Gui.Graphs.MultiBarSeries.MultiBarSeries(System.Int32, System.Single, System.Single, Terminal.Gui.Attribute[]) - fullName.vb: Terminal.Gui.Graphs.MultiBarSeries.MultiBarSeries(System.Int32, System.Single, System.Single, Terminal.Gui.Attribute()) - nameWithType: MultiBarSeries.MultiBarSeries(Int32, Single, Single, Attribute[]) - nameWithType.vb: MultiBarSeries.MultiBarSeries(Int32, Single, Single, Attribute()) -- uid: Terminal.Gui.Graphs.MultiBarSeries.#ctor* - name: MultiBarSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries__ctor_ - commentId: Overload:Terminal.Gui.Graphs.MultiBarSeries.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.MultiBarSeries.MultiBarSeries - nameWithType: MultiBarSeries.MultiBarSeries -- uid: Terminal.Gui.Graphs.MultiBarSeries.AddBars(System.String,System.Rune,System.Single[]) - name: AddBars(String, Rune, Single[]) - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_AddBars_System_String_System_Rune_System_Single___ - commentId: M:Terminal.Gui.Graphs.MultiBarSeries.AddBars(System.String,System.Rune,System.Single[]) - name.vb: AddBars(String, Rune, Single()) - fullName: Terminal.Gui.Graphs.MultiBarSeries.AddBars(System.String, System.Rune, System.Single[]) - fullName.vb: Terminal.Gui.Graphs.MultiBarSeries.AddBars(System.String, System.Rune, System.Single()) - nameWithType: MultiBarSeries.AddBars(String, Rune, Single[]) - nameWithType.vb: MultiBarSeries.AddBars(String, Rune, Single()) -- uid: Terminal.Gui.Graphs.MultiBarSeries.AddBars* - name: AddBars - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_AddBars_ - commentId: Overload:Terminal.Gui.Graphs.MultiBarSeries.AddBars - isSpec: "True" - fullName: Terminal.Gui.Graphs.MultiBarSeries.AddBars - nameWithType: MultiBarSeries.AddBars -- uid: Terminal.Gui.Graphs.MultiBarSeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - name: DrawSeries(GraphView, Rect, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_DrawSeries_Terminal_Gui_GraphView_Terminal_Gui_Rect_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.Graphs.MultiBarSeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.Graphs.MultiBarSeries.DrawSeries(Terminal.Gui.GraphView, Terminal.Gui.Rect, Terminal.Gui.RectangleF) - nameWithType: MultiBarSeries.DrawSeries(GraphView, Rect, RectangleF) -- uid: Terminal.Gui.Graphs.MultiBarSeries.DrawSeries* - name: DrawSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_DrawSeries_ - commentId: Overload:Terminal.Gui.Graphs.MultiBarSeries.DrawSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.MultiBarSeries.DrawSeries - nameWithType: MultiBarSeries.DrawSeries -- uid: Terminal.Gui.Graphs.MultiBarSeries.Spacing - name: Spacing - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_Spacing - commentId: P:Terminal.Gui.Graphs.MultiBarSeries.Spacing - fullName: Terminal.Gui.Graphs.MultiBarSeries.Spacing - nameWithType: MultiBarSeries.Spacing -- uid: Terminal.Gui.Graphs.MultiBarSeries.Spacing* - name: Spacing - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_Spacing_ - commentId: Overload:Terminal.Gui.Graphs.MultiBarSeries.Spacing - isSpec: "True" - fullName: Terminal.Gui.Graphs.MultiBarSeries.Spacing - nameWithType: MultiBarSeries.Spacing -- uid: Terminal.Gui.Graphs.MultiBarSeries.SubSeries - name: SubSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_SubSeries - commentId: P:Terminal.Gui.Graphs.MultiBarSeries.SubSeries - fullName: Terminal.Gui.Graphs.MultiBarSeries.SubSeries - nameWithType: MultiBarSeries.SubSeries -- uid: Terminal.Gui.Graphs.MultiBarSeries.SubSeries* - name: SubSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html#Terminal_Gui_Graphs_MultiBarSeries_SubSeries_ - commentId: Overload:Terminal.Gui.Graphs.MultiBarSeries.SubSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.MultiBarSeries.SubSeries - nameWithType: MultiBarSeries.SubSeries -- uid: Terminal.Gui.Graphs.Orientation - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html - commentId: T:Terminal.Gui.Graphs.Orientation - fullName: Terminal.Gui.Graphs.Orientation - nameWithType: Orientation -- uid: Terminal.Gui.Graphs.Orientation.Horizontal - name: Horizontal - href: api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html#Terminal_Gui_Graphs_Orientation_Horizontal - commentId: F:Terminal.Gui.Graphs.Orientation.Horizontal - fullName: Terminal.Gui.Graphs.Orientation.Horizontal - nameWithType: Orientation.Horizontal -- uid: Terminal.Gui.Graphs.Orientation.Vertical - name: Vertical - href: api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html#Terminal_Gui_Graphs_Orientation_Vertical - commentId: F:Terminal.Gui.Graphs.Orientation.Vertical - fullName: Terminal.Gui.Graphs.Orientation.Vertical - nameWithType: Orientation.Vertical -- uid: Terminal.Gui.Graphs.PathAnnotation - name: PathAnnotation - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html - commentId: T:Terminal.Gui.Graphs.PathAnnotation - fullName: Terminal.Gui.Graphs.PathAnnotation - nameWithType: PathAnnotation -- uid: Terminal.Gui.Graphs.PathAnnotation.BeforeSeries - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_BeforeSeries - commentId: P:Terminal.Gui.Graphs.PathAnnotation.BeforeSeries - fullName: Terminal.Gui.Graphs.PathAnnotation.BeforeSeries - nameWithType: PathAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.PathAnnotation.BeforeSeries* - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_BeforeSeries_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.BeforeSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.BeforeSeries - nameWithType: PathAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.PathAnnotation.LineColor - name: LineColor - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_LineColor - commentId: P:Terminal.Gui.Graphs.PathAnnotation.LineColor - fullName: Terminal.Gui.Graphs.PathAnnotation.LineColor - nameWithType: PathAnnotation.LineColor -- uid: Terminal.Gui.Graphs.PathAnnotation.LineColor* - name: LineColor - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_LineColor_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.LineColor - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.LineColor - nameWithType: PathAnnotation.LineColor -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF - name: PathAnnotation.LineF - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html - commentId: T:Terminal.Gui.Graphs.PathAnnotation.LineF - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF - nameWithType: PathAnnotation.LineF -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF.#ctor(Terminal.Gui.PointF,Terminal.Gui.PointF) - name: LineF(PointF, PointF) - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html#Terminal_Gui_Graphs_PathAnnotation_LineF__ctor_Terminal_Gui_PointF_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.Graphs.PathAnnotation.LineF.#ctor(Terminal.Gui.PointF,Terminal.Gui.PointF) - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF.LineF(Terminal.Gui.PointF, Terminal.Gui.PointF) - nameWithType: PathAnnotation.LineF.LineF(PointF, PointF) -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF.#ctor* - name: LineF - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html#Terminal_Gui_Graphs_PathAnnotation_LineF__ctor_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.LineF.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF.LineF - nameWithType: PathAnnotation.LineF.LineF -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF.End - name: End - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html#Terminal_Gui_Graphs_PathAnnotation_LineF_End - commentId: P:Terminal.Gui.Graphs.PathAnnotation.LineF.End - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF.End - nameWithType: PathAnnotation.LineF.End -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF.End* - name: End - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html#Terminal_Gui_Graphs_PathAnnotation_LineF_End_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.LineF.End - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF.End - nameWithType: PathAnnotation.LineF.End -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF.Start - name: Start - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html#Terminal_Gui_Graphs_PathAnnotation_LineF_Start - commentId: P:Terminal.Gui.Graphs.PathAnnotation.LineF.Start - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF.Start - nameWithType: PathAnnotation.LineF.Start -- uid: Terminal.Gui.Graphs.PathAnnotation.LineF.Start* - name: Start - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html#Terminal_Gui_Graphs_PathAnnotation_LineF_Start_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.LineF.Start - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.LineF.Start - nameWithType: PathAnnotation.LineF.Start -- uid: Terminal.Gui.Graphs.PathAnnotation.LineRune - name: LineRune - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_LineRune - commentId: P:Terminal.Gui.Graphs.PathAnnotation.LineRune - fullName: Terminal.Gui.Graphs.PathAnnotation.LineRune - nameWithType: PathAnnotation.LineRune -- uid: Terminal.Gui.Graphs.PathAnnotation.LineRune* - name: LineRune - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_LineRune_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.LineRune - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.LineRune - nameWithType: PathAnnotation.LineRune -- uid: Terminal.Gui.Graphs.PathAnnotation.Points - name: Points - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_Points - commentId: P:Terminal.Gui.Graphs.PathAnnotation.Points - fullName: Terminal.Gui.Graphs.PathAnnotation.Points - nameWithType: PathAnnotation.Points -- uid: Terminal.Gui.Graphs.PathAnnotation.Points* - name: Points - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_Points_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.Points - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.Points - nameWithType: PathAnnotation.Points -- uid: Terminal.Gui.Graphs.PathAnnotation.Render(Terminal.Gui.GraphView) - name: Render(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_Render_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.PathAnnotation.Render(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.PathAnnotation.Render(Terminal.Gui.GraphView) - nameWithType: PathAnnotation.Render(GraphView) -- uid: Terminal.Gui.Graphs.PathAnnotation.Render* - name: Render - href: api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html#Terminal_Gui_Graphs_PathAnnotation_Render_ - commentId: Overload:Terminal.Gui.Graphs.PathAnnotation.Render - isSpec: "True" - fullName: Terminal.Gui.Graphs.PathAnnotation.Render - nameWithType: PathAnnotation.Render -- uid: Terminal.Gui.Graphs.ScatterSeries - name: ScatterSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html - commentId: T:Terminal.Gui.Graphs.ScatterSeries - fullName: Terminal.Gui.Graphs.ScatterSeries - nameWithType: ScatterSeries -- uid: Terminal.Gui.Graphs.ScatterSeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - name: DrawSeries(GraphView, Rect, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html#Terminal_Gui_Graphs_ScatterSeries_DrawSeries_Terminal_Gui_GraphView_Terminal_Gui_Rect_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.Graphs.ScatterSeries.DrawSeries(Terminal.Gui.GraphView,Terminal.Gui.Rect,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.Graphs.ScatterSeries.DrawSeries(Terminal.Gui.GraphView, Terminal.Gui.Rect, Terminal.Gui.RectangleF) - nameWithType: ScatterSeries.DrawSeries(GraphView, Rect, RectangleF) -- uid: Terminal.Gui.Graphs.ScatterSeries.DrawSeries* - name: DrawSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html#Terminal_Gui_Graphs_ScatterSeries_DrawSeries_ - commentId: Overload:Terminal.Gui.Graphs.ScatterSeries.DrawSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.ScatterSeries.DrawSeries - nameWithType: ScatterSeries.DrawSeries -- uid: Terminal.Gui.Graphs.ScatterSeries.Fill - name: Fill - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html#Terminal_Gui_Graphs_ScatterSeries_Fill - commentId: P:Terminal.Gui.Graphs.ScatterSeries.Fill - fullName: Terminal.Gui.Graphs.ScatterSeries.Fill - nameWithType: ScatterSeries.Fill -- uid: Terminal.Gui.Graphs.ScatterSeries.Fill* - name: Fill - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html#Terminal_Gui_Graphs_ScatterSeries_Fill_ - commentId: Overload:Terminal.Gui.Graphs.ScatterSeries.Fill - isSpec: "True" - fullName: Terminal.Gui.Graphs.ScatterSeries.Fill - nameWithType: ScatterSeries.Fill -- uid: Terminal.Gui.Graphs.ScatterSeries.Points - name: Points - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html#Terminal_Gui_Graphs_ScatterSeries_Points - commentId: P:Terminal.Gui.Graphs.ScatterSeries.Points - fullName: Terminal.Gui.Graphs.ScatterSeries.Points - nameWithType: ScatterSeries.Points -- uid: Terminal.Gui.Graphs.ScatterSeries.Points* - name: Points - href: api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html#Terminal_Gui_Graphs_ScatterSeries_Points_ - commentId: Overload:Terminal.Gui.Graphs.ScatterSeries.Points - isSpec: "True" - fullName: Terminal.Gui.Graphs.ScatterSeries.Points - nameWithType: ScatterSeries.Points -- uid: Terminal.Gui.Graphs.TextAnnotation - name: TextAnnotation - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html - commentId: T:Terminal.Gui.Graphs.TextAnnotation - fullName: Terminal.Gui.Graphs.TextAnnotation - nameWithType: TextAnnotation -- uid: Terminal.Gui.Graphs.TextAnnotation.BeforeSeries - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_BeforeSeries - commentId: P:Terminal.Gui.Graphs.TextAnnotation.BeforeSeries - fullName: Terminal.Gui.Graphs.TextAnnotation.BeforeSeries - nameWithType: TextAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.TextAnnotation.BeforeSeries* - name: BeforeSeries - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_BeforeSeries_ - commentId: Overload:Terminal.Gui.Graphs.TextAnnotation.BeforeSeries - isSpec: "True" - fullName: Terminal.Gui.Graphs.TextAnnotation.BeforeSeries - nameWithType: TextAnnotation.BeforeSeries -- uid: Terminal.Gui.Graphs.TextAnnotation.DrawText(Terminal.Gui.GraphView,System.Int32,System.Int32) - name: DrawText(GraphView, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_DrawText_Terminal_Gui_GraphView_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Graphs.TextAnnotation.DrawText(Terminal.Gui.GraphView,System.Int32,System.Int32) - fullName: Terminal.Gui.Graphs.TextAnnotation.DrawText(Terminal.Gui.GraphView, System.Int32, System.Int32) - nameWithType: TextAnnotation.DrawText(GraphView, Int32, Int32) -- uid: Terminal.Gui.Graphs.TextAnnotation.DrawText* - name: DrawText - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_DrawText_ - commentId: Overload:Terminal.Gui.Graphs.TextAnnotation.DrawText - isSpec: "True" - fullName: Terminal.Gui.Graphs.TextAnnotation.DrawText - nameWithType: TextAnnotation.DrawText -- uid: Terminal.Gui.Graphs.TextAnnotation.GraphPosition - name: GraphPosition - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_GraphPosition - commentId: P:Terminal.Gui.Graphs.TextAnnotation.GraphPosition - fullName: Terminal.Gui.Graphs.TextAnnotation.GraphPosition - nameWithType: TextAnnotation.GraphPosition -- uid: Terminal.Gui.Graphs.TextAnnotation.GraphPosition* - name: GraphPosition - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_GraphPosition_ - commentId: Overload:Terminal.Gui.Graphs.TextAnnotation.GraphPosition - isSpec: "True" - fullName: Terminal.Gui.Graphs.TextAnnotation.GraphPosition - nameWithType: TextAnnotation.GraphPosition -- uid: Terminal.Gui.Graphs.TextAnnotation.Render(Terminal.Gui.GraphView) - name: Render(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_Render_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.TextAnnotation.Render(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.TextAnnotation.Render(Terminal.Gui.GraphView) - nameWithType: TextAnnotation.Render(GraphView) -- uid: Terminal.Gui.Graphs.TextAnnotation.Render* - name: Render - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_Render_ - commentId: Overload:Terminal.Gui.Graphs.TextAnnotation.Render - isSpec: "True" - fullName: Terminal.Gui.Graphs.TextAnnotation.Render - nameWithType: TextAnnotation.Render -- uid: Terminal.Gui.Graphs.TextAnnotation.ScreenPosition - name: ScreenPosition - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_ScreenPosition - commentId: P:Terminal.Gui.Graphs.TextAnnotation.ScreenPosition - fullName: Terminal.Gui.Graphs.TextAnnotation.ScreenPosition - nameWithType: TextAnnotation.ScreenPosition -- uid: Terminal.Gui.Graphs.TextAnnotation.ScreenPosition* - name: ScreenPosition - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_ScreenPosition_ - commentId: Overload:Terminal.Gui.Graphs.TextAnnotation.ScreenPosition - isSpec: "True" - fullName: Terminal.Gui.Graphs.TextAnnotation.ScreenPosition - nameWithType: TextAnnotation.ScreenPosition -- uid: Terminal.Gui.Graphs.TextAnnotation.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_Text - commentId: P:Terminal.Gui.Graphs.TextAnnotation.Text - fullName: Terminal.Gui.Graphs.TextAnnotation.Text - nameWithType: TextAnnotation.Text -- uid: Terminal.Gui.Graphs.TextAnnotation.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html#Terminal_Gui_Graphs_TextAnnotation_Text_ - commentId: Overload:Terminal.Gui.Graphs.TextAnnotation.Text - isSpec: "True" - fullName: Terminal.Gui.Graphs.TextAnnotation.Text - nameWithType: TextAnnotation.Text -- uid: Terminal.Gui.Graphs.VerticalAxis - name: VerticalAxis - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html - commentId: T:Terminal.Gui.Graphs.VerticalAxis - fullName: Terminal.Gui.Graphs.VerticalAxis - nameWithType: VerticalAxis -- uid: Terminal.Gui.Graphs.VerticalAxis.#ctor - name: VerticalAxis() - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis__ctor - commentId: M:Terminal.Gui.Graphs.VerticalAxis.#ctor - fullName: Terminal.Gui.Graphs.VerticalAxis.VerticalAxis() - nameWithType: VerticalAxis.VerticalAxis() -- uid: Terminal.Gui.Graphs.VerticalAxis.#ctor* - name: VerticalAxis - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis__ctor_ - commentId: Overload:Terminal.Gui.Graphs.VerticalAxis.#ctor - isSpec: "True" - fullName: Terminal.Gui.Graphs.VerticalAxis.VerticalAxis - nameWithType: VerticalAxis.VerticalAxis -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabel(Terminal.Gui.GraphView,System.Int32,System.String) - name: DrawAxisLabel(GraphView, Int32, String) - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLabel_Terminal_Gui_GraphView_System_Int32_System_String_ - commentId: M:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabel(Terminal.Gui.GraphView,System.Int32,System.String) - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabel(Terminal.Gui.GraphView, System.Int32, System.String) - nameWithType: VerticalAxis.DrawAxisLabel(GraphView, Int32, String) -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabel* - name: DrawAxisLabel - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLabel_ - commentId: Overload:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabel - isSpec: "True" - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabel - nameWithType: VerticalAxis.DrawAxisLabel -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabels(Terminal.Gui.GraphView) - name: DrawAxisLabels(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLabels_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabels(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabels(Terminal.Gui.GraphView) - nameWithType: VerticalAxis.DrawAxisLabels(GraphView) -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabels* - name: DrawAxisLabels - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLabels_ - commentId: Overload:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabels - isSpec: "True" - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLabels - nameWithType: VerticalAxis.DrawAxisLabels -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine(Terminal.Gui.GraphView) - name: DrawAxisLine(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLine_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine(Terminal.Gui.GraphView) - nameWithType: VerticalAxis.DrawAxisLine(GraphView) -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine(Terminal.Gui.GraphView,System.Int32,System.Int32) - name: DrawAxisLine(GraphView, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLine_Terminal_Gui_GraphView_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine(Terminal.Gui.GraphView,System.Int32,System.Int32) - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine(Terminal.Gui.GraphView, System.Int32, System.Int32) - nameWithType: VerticalAxis.DrawAxisLine(GraphView, Int32, Int32) -- uid: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine* - name: DrawAxisLine - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_DrawAxisLine_ - commentId: Overload:Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine - isSpec: "True" - fullName: Terminal.Gui.Graphs.VerticalAxis.DrawAxisLine - nameWithType: VerticalAxis.DrawAxisLine -- uid: Terminal.Gui.Graphs.VerticalAxis.GetAxisXPosition(Terminal.Gui.GraphView) - name: GetAxisXPosition(GraphView) - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_GetAxisXPosition_Terminal_Gui_GraphView_ - commentId: M:Terminal.Gui.Graphs.VerticalAxis.GetAxisXPosition(Terminal.Gui.GraphView) - fullName: Terminal.Gui.Graphs.VerticalAxis.GetAxisXPosition(Terminal.Gui.GraphView) - nameWithType: VerticalAxis.GetAxisXPosition(GraphView) -- uid: Terminal.Gui.Graphs.VerticalAxis.GetAxisXPosition* - name: GetAxisXPosition - href: api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html#Terminal_Gui_Graphs_VerticalAxis_GetAxisXPosition_ - commentId: Overload:Terminal.Gui.Graphs.VerticalAxis.GetAxisXPosition - isSpec: "True" - fullName: Terminal.Gui.Graphs.VerticalAxis.GetAxisXPosition - nameWithType: VerticalAxis.GetAxisXPosition -- uid: Terminal.Gui.GraphView - name: GraphView - href: api/Terminal.Gui/Terminal.Gui.GraphView.html - commentId: T:Terminal.Gui.GraphView - fullName: Terminal.Gui.GraphView - nameWithType: GraphView -- uid: Terminal.Gui.GraphView.#ctor - name: GraphView() - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView__ctor - commentId: M:Terminal.Gui.GraphView.#ctor - fullName: Terminal.Gui.GraphView.GraphView() - nameWithType: GraphView.GraphView() -- uid: Terminal.Gui.GraphView.#ctor* - name: GraphView - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView__ctor_ - commentId: Overload:Terminal.Gui.GraphView.#ctor - isSpec: "True" - fullName: Terminal.Gui.GraphView.GraphView - nameWithType: GraphView.GraphView -- uid: Terminal.Gui.GraphView.Annotations - name: Annotations - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Annotations - commentId: P:Terminal.Gui.GraphView.Annotations - fullName: Terminal.Gui.GraphView.Annotations - nameWithType: GraphView.Annotations -- uid: Terminal.Gui.GraphView.Annotations* - name: Annotations - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Annotations_ - commentId: Overload:Terminal.Gui.GraphView.Annotations - isSpec: "True" - fullName: Terminal.Gui.GraphView.Annotations - nameWithType: GraphView.Annotations -- uid: Terminal.Gui.GraphView.AxisX - name: AxisX - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_AxisX - commentId: P:Terminal.Gui.GraphView.AxisX - fullName: Terminal.Gui.GraphView.AxisX - nameWithType: GraphView.AxisX -- uid: Terminal.Gui.GraphView.AxisX* - name: AxisX - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_AxisX_ - commentId: Overload:Terminal.Gui.GraphView.AxisX - isSpec: "True" - fullName: Terminal.Gui.GraphView.AxisX - nameWithType: GraphView.AxisX -- uid: Terminal.Gui.GraphView.AxisY - name: AxisY - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_AxisY - commentId: P:Terminal.Gui.GraphView.AxisY - fullName: Terminal.Gui.GraphView.AxisY - nameWithType: GraphView.AxisY -- uid: Terminal.Gui.GraphView.AxisY* - name: AxisY - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_AxisY_ - commentId: Overload:Terminal.Gui.GraphView.AxisY - isSpec: "True" - fullName: Terminal.Gui.GraphView.AxisY - nameWithType: GraphView.AxisY -- uid: Terminal.Gui.GraphView.CellSize - name: CellSize - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_CellSize - commentId: P:Terminal.Gui.GraphView.CellSize - fullName: Terminal.Gui.GraphView.CellSize - nameWithType: GraphView.CellSize -- uid: Terminal.Gui.GraphView.CellSize* - name: CellSize - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_CellSize_ - commentId: Overload:Terminal.Gui.GraphView.CellSize - isSpec: "True" - fullName: Terminal.Gui.GraphView.CellSize - nameWithType: GraphView.CellSize -- uid: Terminal.Gui.GraphView.DrawLine(Terminal.Gui.Point,Terminal.Gui.Point,System.Rune) - name: DrawLine(Point, Point, Rune) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_DrawLine_Terminal_Gui_Point_Terminal_Gui_Point_System_Rune_ - commentId: M:Terminal.Gui.GraphView.DrawLine(Terminal.Gui.Point,Terminal.Gui.Point,System.Rune) - fullName: Terminal.Gui.GraphView.DrawLine(Terminal.Gui.Point, Terminal.Gui.Point, System.Rune) - nameWithType: GraphView.DrawLine(Point, Point, Rune) -- uid: Terminal.Gui.GraphView.DrawLine* - name: DrawLine - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_DrawLine_ - commentId: Overload:Terminal.Gui.GraphView.DrawLine - isSpec: "True" - fullName: Terminal.Gui.GraphView.DrawLine - nameWithType: GraphView.DrawLine -- uid: Terminal.Gui.GraphView.GraphColor - name: GraphColor - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_GraphColor - commentId: P:Terminal.Gui.GraphView.GraphColor - fullName: Terminal.Gui.GraphView.GraphColor - nameWithType: GraphView.GraphColor -- uid: Terminal.Gui.GraphView.GraphColor* - name: GraphColor - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_GraphColor_ - commentId: Overload:Terminal.Gui.GraphView.GraphColor - isSpec: "True" - fullName: Terminal.Gui.GraphView.GraphColor - nameWithType: GraphView.GraphColor -- uid: Terminal.Gui.GraphView.GraphSpaceToScreen(Terminal.Gui.PointF) - name: GraphSpaceToScreen(PointF) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_GraphSpaceToScreen_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.GraphView.GraphSpaceToScreen(Terminal.Gui.PointF) - fullName: Terminal.Gui.GraphView.GraphSpaceToScreen(Terminal.Gui.PointF) - nameWithType: GraphView.GraphSpaceToScreen(PointF) -- uid: Terminal.Gui.GraphView.GraphSpaceToScreen* - name: GraphSpaceToScreen - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_GraphSpaceToScreen_ - commentId: Overload:Terminal.Gui.GraphView.GraphSpaceToScreen - isSpec: "True" - fullName: Terminal.Gui.GraphView.GraphSpaceToScreen - nameWithType: GraphView.GraphSpaceToScreen -- uid: Terminal.Gui.GraphView.MarginBottom - name: MarginBottom - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_MarginBottom - commentId: P:Terminal.Gui.GraphView.MarginBottom - fullName: Terminal.Gui.GraphView.MarginBottom - nameWithType: GraphView.MarginBottom -- uid: Terminal.Gui.GraphView.MarginBottom* - name: MarginBottom - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_MarginBottom_ - commentId: Overload:Terminal.Gui.GraphView.MarginBottom - isSpec: "True" - fullName: Terminal.Gui.GraphView.MarginBottom - nameWithType: GraphView.MarginBottom -- uid: Terminal.Gui.GraphView.MarginLeft - name: MarginLeft - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_MarginLeft - commentId: P:Terminal.Gui.GraphView.MarginLeft - fullName: Terminal.Gui.GraphView.MarginLeft - nameWithType: GraphView.MarginLeft -- uid: Terminal.Gui.GraphView.MarginLeft* - name: MarginLeft - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_MarginLeft_ - commentId: Overload:Terminal.Gui.GraphView.MarginLeft - isSpec: "True" - fullName: Terminal.Gui.GraphView.MarginLeft - nameWithType: GraphView.MarginLeft -- uid: Terminal.Gui.GraphView.PageDown - name: PageDown() - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_PageDown - commentId: M:Terminal.Gui.GraphView.PageDown - fullName: Terminal.Gui.GraphView.PageDown() - nameWithType: GraphView.PageDown() -- uid: Terminal.Gui.GraphView.PageDown* - name: PageDown - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_PageDown_ - commentId: Overload:Terminal.Gui.GraphView.PageDown - isSpec: "True" - fullName: Terminal.Gui.GraphView.PageDown - nameWithType: GraphView.PageDown -- uid: Terminal.Gui.GraphView.PageUp - name: PageUp() - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_PageUp - commentId: M:Terminal.Gui.GraphView.PageUp - fullName: Terminal.Gui.GraphView.PageUp() - nameWithType: GraphView.PageUp() -- uid: Terminal.Gui.GraphView.PageUp* - name: PageUp - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_PageUp_ - commentId: Overload:Terminal.Gui.GraphView.PageUp - isSpec: "True" - fullName: Terminal.Gui.GraphView.PageUp - nameWithType: GraphView.PageUp -- uid: Terminal.Gui.GraphView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.GraphView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.GraphView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: GraphView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.GraphView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ProcessKey_ - commentId: Overload:Terminal.Gui.GraphView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.GraphView.ProcessKey - nameWithType: GraphView.ProcessKey -- uid: Terminal.Gui.GraphView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.GraphView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.GraphView.Redraw(Terminal.Gui.Rect) - nameWithType: GraphView.Redraw(Rect) -- uid: Terminal.Gui.GraphView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Redraw_ - commentId: Overload:Terminal.Gui.GraphView.Redraw - isSpec: "True" - fullName: Terminal.Gui.GraphView.Redraw - nameWithType: GraphView.Redraw -- uid: Terminal.Gui.GraphView.Reset - name: Reset() - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Reset - commentId: M:Terminal.Gui.GraphView.Reset - fullName: Terminal.Gui.GraphView.Reset() - nameWithType: GraphView.Reset() -- uid: Terminal.Gui.GraphView.Reset* - name: Reset - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Reset_ - commentId: Overload:Terminal.Gui.GraphView.Reset - isSpec: "True" - fullName: Terminal.Gui.GraphView.Reset - nameWithType: GraphView.Reset -- uid: Terminal.Gui.GraphView.ScreenToGraphSpace(System.Int32,System.Int32) - name: ScreenToGraphSpace(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ScreenToGraphSpace_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.GraphView.ScreenToGraphSpace(System.Int32,System.Int32) - fullName: Terminal.Gui.GraphView.ScreenToGraphSpace(System.Int32, System.Int32) - nameWithType: GraphView.ScreenToGraphSpace(Int32, Int32) -- uid: Terminal.Gui.GraphView.ScreenToGraphSpace(Terminal.Gui.Rect) - name: ScreenToGraphSpace(Rect) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ScreenToGraphSpace_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.GraphView.ScreenToGraphSpace(Terminal.Gui.Rect) - fullName: Terminal.Gui.GraphView.ScreenToGraphSpace(Terminal.Gui.Rect) - nameWithType: GraphView.ScreenToGraphSpace(Rect) -- uid: Terminal.Gui.GraphView.ScreenToGraphSpace* - name: ScreenToGraphSpace - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ScreenToGraphSpace_ - commentId: Overload:Terminal.Gui.GraphView.ScreenToGraphSpace - isSpec: "True" - fullName: Terminal.Gui.GraphView.ScreenToGraphSpace - nameWithType: GraphView.ScreenToGraphSpace -- uid: Terminal.Gui.GraphView.Scroll(System.Single,System.Single) - name: Scroll(Single, Single) - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Scroll_System_Single_System_Single_ - commentId: M:Terminal.Gui.GraphView.Scroll(System.Single,System.Single) - fullName: Terminal.Gui.GraphView.Scroll(System.Single, System.Single) - nameWithType: GraphView.Scroll(Single, Single) -- uid: Terminal.Gui.GraphView.Scroll* - name: Scroll - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Scroll_ - commentId: Overload:Terminal.Gui.GraphView.Scroll - isSpec: "True" - fullName: Terminal.Gui.GraphView.Scroll - nameWithType: GraphView.Scroll -- uid: Terminal.Gui.GraphView.ScrollOffset - name: ScrollOffset - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ScrollOffset - commentId: P:Terminal.Gui.GraphView.ScrollOffset - fullName: Terminal.Gui.GraphView.ScrollOffset - nameWithType: GraphView.ScrollOffset -- uid: Terminal.Gui.GraphView.ScrollOffset* - name: ScrollOffset - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_ScrollOffset_ - commentId: Overload:Terminal.Gui.GraphView.ScrollOffset - isSpec: "True" - fullName: Terminal.Gui.GraphView.ScrollOffset - nameWithType: GraphView.ScrollOffset -- uid: Terminal.Gui.GraphView.Series - name: Series - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Series - commentId: P:Terminal.Gui.GraphView.Series - fullName: Terminal.Gui.GraphView.Series - nameWithType: GraphView.Series -- uid: Terminal.Gui.GraphView.Series* - name: Series - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_Series_ - commentId: Overload:Terminal.Gui.GraphView.Series - isSpec: "True" - fullName: Terminal.Gui.GraphView.Series - nameWithType: GraphView.Series -- uid: Terminal.Gui.GraphView.SetDriverColorToGraphColor - name: SetDriverColorToGraphColor() - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_SetDriverColorToGraphColor - commentId: M:Terminal.Gui.GraphView.SetDriverColorToGraphColor - fullName: Terminal.Gui.GraphView.SetDriverColorToGraphColor() - nameWithType: GraphView.SetDriverColorToGraphColor() -- uid: Terminal.Gui.GraphView.SetDriverColorToGraphColor* - name: SetDriverColorToGraphColor - href: api/Terminal.Gui/Terminal.Gui.GraphView.html#Terminal_Gui_GraphView_SetDriverColorToGraphColor_ - commentId: Overload:Terminal.Gui.GraphView.SetDriverColorToGraphColor - isSpec: "True" - fullName: Terminal.Gui.GraphView.SetDriverColorToGraphColor - nameWithType: GraphView.SetDriverColorToGraphColor -- uid: Terminal.Gui.HexView - name: HexView - href: api/Terminal.Gui/Terminal.Gui.HexView.html - commentId: T:Terminal.Gui.HexView - fullName: Terminal.Gui.HexView - nameWithType: HexView -- uid: Terminal.Gui.HexView.#ctor - name: HexView() - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView__ctor - commentId: M:Terminal.Gui.HexView.#ctor - fullName: Terminal.Gui.HexView.HexView() - nameWithType: HexView.HexView() -- uid: Terminal.Gui.HexView.#ctor(System.IO.Stream) - name: HexView(Stream) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView__ctor_System_IO_Stream_ - commentId: M:Terminal.Gui.HexView.#ctor(System.IO.Stream) - fullName: Terminal.Gui.HexView.HexView(System.IO.Stream) - nameWithType: HexView.HexView(Stream) -- uid: Terminal.Gui.HexView.#ctor* - name: HexView - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView__ctor_ - commentId: Overload:Terminal.Gui.HexView.#ctor - isSpec: "True" - fullName: Terminal.Gui.HexView.HexView - nameWithType: HexView.HexView -- uid: Terminal.Gui.HexView.AllowEdits - name: AllowEdits - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_AllowEdits - commentId: P:Terminal.Gui.HexView.AllowEdits - fullName: Terminal.Gui.HexView.AllowEdits - nameWithType: HexView.AllowEdits -- uid: Terminal.Gui.HexView.AllowEdits* - name: AllowEdits - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_AllowEdits_ - commentId: Overload:Terminal.Gui.HexView.AllowEdits - isSpec: "True" - fullName: Terminal.Gui.HexView.AllowEdits - nameWithType: HexView.AllowEdits -- uid: Terminal.Gui.HexView.ApplyEdits(System.IO.Stream) - name: ApplyEdits(Stream) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_ApplyEdits_System_IO_Stream_ - commentId: M:Terminal.Gui.HexView.ApplyEdits(System.IO.Stream) - fullName: Terminal.Gui.HexView.ApplyEdits(System.IO.Stream) - nameWithType: HexView.ApplyEdits(Stream) -- uid: Terminal.Gui.HexView.ApplyEdits* - name: ApplyEdits - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_ApplyEdits_ - commentId: Overload:Terminal.Gui.HexView.ApplyEdits - isSpec: "True" - fullName: Terminal.Gui.HexView.ApplyEdits - nameWithType: HexView.ApplyEdits -- uid: Terminal.Gui.HexView.BytesPerLine - name: BytesPerLine - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_BytesPerLine - commentId: P:Terminal.Gui.HexView.BytesPerLine - fullName: Terminal.Gui.HexView.BytesPerLine - nameWithType: HexView.BytesPerLine -- uid: Terminal.Gui.HexView.BytesPerLine* - name: BytesPerLine - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_BytesPerLine_ - commentId: Overload:Terminal.Gui.HexView.BytesPerLine - isSpec: "True" - fullName: Terminal.Gui.HexView.BytesPerLine - nameWithType: HexView.BytesPerLine -- uid: Terminal.Gui.HexView.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_CursorPosition - commentId: P:Terminal.Gui.HexView.CursorPosition - fullName: Terminal.Gui.HexView.CursorPosition - nameWithType: HexView.CursorPosition -- uid: Terminal.Gui.HexView.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_CursorPosition_ - commentId: Overload:Terminal.Gui.HexView.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.HexView.CursorPosition - nameWithType: HexView.CursorPosition -- uid: Terminal.Gui.HexView.DesiredCursorVisibility - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_DesiredCursorVisibility - commentId: P:Terminal.Gui.HexView.DesiredCursorVisibility - fullName: Terminal.Gui.HexView.DesiredCursorVisibility - nameWithType: HexView.DesiredCursorVisibility -- uid: Terminal.Gui.HexView.DesiredCursorVisibility* - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_DesiredCursorVisibility_ - commentId: Overload:Terminal.Gui.HexView.DesiredCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.HexView.DesiredCursorVisibility - nameWithType: HexView.DesiredCursorVisibility -- uid: Terminal.Gui.HexView.DiscardEdits - name: DiscardEdits() - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_DiscardEdits - commentId: M:Terminal.Gui.HexView.DiscardEdits - fullName: Terminal.Gui.HexView.DiscardEdits() - nameWithType: HexView.DiscardEdits() -- uid: Terminal.Gui.HexView.DiscardEdits* - name: DiscardEdits - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_DiscardEdits_ - commentId: Overload:Terminal.Gui.HexView.DiscardEdits - isSpec: "True" - fullName: Terminal.Gui.HexView.DiscardEdits - nameWithType: HexView.DiscardEdits -- uid: Terminal.Gui.HexView.DisplayStart - name: DisplayStart - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_DisplayStart - commentId: P:Terminal.Gui.HexView.DisplayStart - fullName: Terminal.Gui.HexView.DisplayStart - nameWithType: HexView.DisplayStart -- uid: Terminal.Gui.HexView.DisplayStart* - name: DisplayStart - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_DisplayStart_ - commentId: Overload:Terminal.Gui.HexView.DisplayStart - isSpec: "True" - fullName: Terminal.Gui.HexView.DisplayStart - nameWithType: HexView.DisplayStart -- uid: Terminal.Gui.HexView.Edited - name: Edited - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Edited - commentId: E:Terminal.Gui.HexView.Edited - fullName: Terminal.Gui.HexView.Edited - nameWithType: HexView.Edited -- uid: Terminal.Gui.HexView.Edits - name: Edits - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Edits - commentId: P:Terminal.Gui.HexView.Edits - fullName: Terminal.Gui.HexView.Edits - nameWithType: HexView.Edits -- uid: Terminal.Gui.HexView.Edits* - name: Edits - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Edits_ - commentId: Overload:Terminal.Gui.HexView.Edits - isSpec: "True" - fullName: Terminal.Gui.HexView.Edits - nameWithType: HexView.Edits -- uid: Terminal.Gui.HexView.Frame - name: Frame - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Frame - commentId: P:Terminal.Gui.HexView.Frame - fullName: Terminal.Gui.HexView.Frame - nameWithType: HexView.Frame -- uid: Terminal.Gui.HexView.Frame* - name: Frame - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Frame_ - commentId: Overload:Terminal.Gui.HexView.Frame - isSpec: "True" - fullName: Terminal.Gui.HexView.Frame - nameWithType: HexView.Frame -- uid: Terminal.Gui.HexView.HexViewEventArgs - name: HexView.HexViewEventArgs - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html - commentId: T:Terminal.Gui.HexView.HexViewEventArgs - fullName: Terminal.Gui.HexView.HexViewEventArgs - nameWithType: HexView.HexViewEventArgs -- uid: Terminal.Gui.HexView.HexViewEventArgs.#ctor(System.Int64,Terminal.Gui.Point,System.Int32) - name: HexViewEventArgs(Int64, Point, Int32) - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs__ctor_System_Int64_Terminal_Gui_Point_System_Int32_ - commentId: M:Terminal.Gui.HexView.HexViewEventArgs.#ctor(System.Int64,Terminal.Gui.Point,System.Int32) - fullName: Terminal.Gui.HexView.HexViewEventArgs.HexViewEventArgs(System.Int64, Terminal.Gui.Point, System.Int32) - nameWithType: HexView.HexViewEventArgs.HexViewEventArgs(Int64, Point, Int32) -- uid: Terminal.Gui.HexView.HexViewEventArgs.#ctor* - name: HexViewEventArgs - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs__ctor_ - commentId: Overload:Terminal.Gui.HexView.HexViewEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.HexView.HexViewEventArgs.HexViewEventArgs - nameWithType: HexView.HexViewEventArgs.HexViewEventArgs -- uid: Terminal.Gui.HexView.HexViewEventArgs.BytesPerLine - name: BytesPerLine - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs_BytesPerLine - commentId: P:Terminal.Gui.HexView.HexViewEventArgs.BytesPerLine - fullName: Terminal.Gui.HexView.HexViewEventArgs.BytesPerLine - nameWithType: HexView.HexViewEventArgs.BytesPerLine -- uid: Terminal.Gui.HexView.HexViewEventArgs.BytesPerLine* - name: BytesPerLine - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs_BytesPerLine_ - commentId: Overload:Terminal.Gui.HexView.HexViewEventArgs.BytesPerLine - isSpec: "True" - fullName: Terminal.Gui.HexView.HexViewEventArgs.BytesPerLine - nameWithType: HexView.HexViewEventArgs.BytesPerLine -- uid: Terminal.Gui.HexView.HexViewEventArgs.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs_CursorPosition - commentId: P:Terminal.Gui.HexView.HexViewEventArgs.CursorPosition - fullName: Terminal.Gui.HexView.HexViewEventArgs.CursorPosition - nameWithType: HexView.HexViewEventArgs.CursorPosition -- uid: Terminal.Gui.HexView.HexViewEventArgs.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs_CursorPosition_ - commentId: Overload:Terminal.Gui.HexView.HexViewEventArgs.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.HexView.HexViewEventArgs.CursorPosition - nameWithType: HexView.HexViewEventArgs.CursorPosition -- uid: Terminal.Gui.HexView.HexViewEventArgs.Position - name: Position - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs_Position - commentId: P:Terminal.Gui.HexView.HexViewEventArgs.Position - fullName: Terminal.Gui.HexView.HexViewEventArgs.Position - nameWithType: HexView.HexViewEventArgs.Position -- uid: Terminal.Gui.HexView.HexViewEventArgs.Position* - name: Position - href: api/Terminal.Gui/Terminal.Gui.HexView.HexViewEventArgs.html#Terminal_Gui_HexView_HexViewEventArgs_Position_ - commentId: Overload:Terminal.Gui.HexView.HexViewEventArgs.Position - isSpec: "True" - fullName: Terminal.Gui.HexView.HexViewEventArgs.Position - nameWithType: HexView.HexViewEventArgs.Position -- uid: Terminal.Gui.HexView.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.HexView.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.HexView.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: HexView.MouseEvent(MouseEvent) -- uid: Terminal.Gui.HexView.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_MouseEvent_ - commentId: Overload:Terminal.Gui.HexView.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.HexView.MouseEvent - nameWithType: HexView.MouseEvent -- uid: Terminal.Gui.HexView.OnEdited(System.Collections.Generic.KeyValuePair{System.Int64,System.Byte}) - name: OnEdited(KeyValuePair) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_OnEdited_System_Collections_Generic_KeyValuePair_System_Int64_System_Byte__ - commentId: M:Terminal.Gui.HexView.OnEdited(System.Collections.Generic.KeyValuePair{System.Int64,System.Byte}) - name.vb: OnEdited(KeyValuePair(Of Int64, Byte)) - fullName: Terminal.Gui.HexView.OnEdited(System.Collections.Generic.KeyValuePair) - fullName.vb: Terminal.Gui.HexView.OnEdited(System.Collections.Generic.KeyValuePair(Of System.Int64, System.Byte)) - nameWithType: HexView.OnEdited(KeyValuePair) - nameWithType.vb: HexView.OnEdited(KeyValuePair(Of Int64, Byte)) -- uid: Terminal.Gui.HexView.OnEdited* - name: OnEdited - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_OnEdited_ - commentId: Overload:Terminal.Gui.HexView.OnEdited - isSpec: "True" - fullName: Terminal.Gui.HexView.OnEdited - nameWithType: HexView.OnEdited -- uid: Terminal.Gui.HexView.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.HexView.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.HexView.OnEnter(Terminal.Gui.View) - nameWithType: HexView.OnEnter(View) -- uid: Terminal.Gui.HexView.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_OnEnter_ - commentId: Overload:Terminal.Gui.HexView.OnEnter - isSpec: "True" - fullName: Terminal.Gui.HexView.OnEnter - nameWithType: HexView.OnEnter -- uid: Terminal.Gui.HexView.OnPositionChanged - name: OnPositionChanged() - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_OnPositionChanged - commentId: M:Terminal.Gui.HexView.OnPositionChanged - fullName: Terminal.Gui.HexView.OnPositionChanged() - nameWithType: HexView.OnPositionChanged() -- uid: Terminal.Gui.HexView.OnPositionChanged* - name: OnPositionChanged - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_OnPositionChanged_ - commentId: Overload:Terminal.Gui.HexView.OnPositionChanged - isSpec: "True" - fullName: Terminal.Gui.HexView.OnPositionChanged - nameWithType: HexView.OnPositionChanged -- uid: Terminal.Gui.HexView.Position - name: Position - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Position - commentId: P:Terminal.Gui.HexView.Position - fullName: Terminal.Gui.HexView.Position - nameWithType: HexView.Position -- uid: Terminal.Gui.HexView.Position* - name: Position - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Position_ - commentId: Overload:Terminal.Gui.HexView.Position - isSpec: "True" - fullName: Terminal.Gui.HexView.Position - nameWithType: HexView.Position -- uid: Terminal.Gui.HexView.PositionChanged - name: PositionChanged - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_PositionChanged - commentId: E:Terminal.Gui.HexView.PositionChanged - fullName: Terminal.Gui.HexView.PositionChanged - nameWithType: HexView.PositionChanged -- uid: Terminal.Gui.HexView.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_PositionCursor - commentId: M:Terminal.Gui.HexView.PositionCursor - fullName: Terminal.Gui.HexView.PositionCursor() - nameWithType: HexView.PositionCursor() -- uid: Terminal.Gui.HexView.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_PositionCursor_ - commentId: Overload:Terminal.Gui.HexView.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.HexView.PositionCursor - nameWithType: HexView.PositionCursor -- uid: Terminal.Gui.HexView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.HexView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.HexView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: HexView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.HexView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_ProcessKey_ - commentId: Overload:Terminal.Gui.HexView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.HexView.ProcessKey - nameWithType: HexView.ProcessKey -- uid: Terminal.Gui.HexView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.HexView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.HexView.Redraw(Terminal.Gui.Rect) - nameWithType: HexView.Redraw(Rect) -- uid: Terminal.Gui.HexView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Redraw_ - commentId: Overload:Terminal.Gui.HexView.Redraw - isSpec: "True" - fullName: Terminal.Gui.HexView.Redraw - nameWithType: HexView.Redraw -- uid: Terminal.Gui.HexView.Source - name: Source - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Source - commentId: P:Terminal.Gui.HexView.Source - fullName: Terminal.Gui.HexView.Source - nameWithType: HexView.Source -- uid: Terminal.Gui.HexView.Source* - name: Source - href: api/Terminal.Gui/Terminal.Gui.HexView.html#Terminal_Gui_HexView_Source_ - commentId: Overload:Terminal.Gui.HexView.Source - isSpec: "True" - fullName: Terminal.Gui.HexView.Source - nameWithType: HexView.Source -- uid: Terminal.Gui.IAutocomplete - name: IAutocomplete - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html - commentId: T:Terminal.Gui.IAutocomplete - fullName: Terminal.Gui.IAutocomplete - nameWithType: IAutocomplete -- uid: Terminal.Gui.IAutocomplete.AllSuggestions - name: AllSuggestions - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_AllSuggestions - commentId: P:Terminal.Gui.IAutocomplete.AllSuggestions - fullName: Terminal.Gui.IAutocomplete.AllSuggestions - nameWithType: IAutocomplete.AllSuggestions -- uid: Terminal.Gui.IAutocomplete.AllSuggestions* - name: AllSuggestions - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_AllSuggestions_ - commentId: Overload:Terminal.Gui.IAutocomplete.AllSuggestions - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.AllSuggestions - nameWithType: IAutocomplete.AllSuggestions -- uid: Terminal.Gui.IAutocomplete.ClearSuggestions - name: ClearSuggestions() - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_ClearSuggestions - commentId: M:Terminal.Gui.IAutocomplete.ClearSuggestions - fullName: Terminal.Gui.IAutocomplete.ClearSuggestions() - nameWithType: IAutocomplete.ClearSuggestions() -- uid: Terminal.Gui.IAutocomplete.ClearSuggestions* - name: ClearSuggestions - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_ClearSuggestions_ - commentId: Overload:Terminal.Gui.IAutocomplete.ClearSuggestions - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.ClearSuggestions - nameWithType: IAutocomplete.ClearSuggestions -- uid: Terminal.Gui.IAutocomplete.CloseKey - name: CloseKey - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_CloseKey - commentId: P:Terminal.Gui.IAutocomplete.CloseKey - fullName: Terminal.Gui.IAutocomplete.CloseKey - nameWithType: IAutocomplete.CloseKey -- uid: Terminal.Gui.IAutocomplete.CloseKey* - name: CloseKey - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_CloseKey_ - commentId: Overload:Terminal.Gui.IAutocomplete.CloseKey - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.CloseKey - nameWithType: IAutocomplete.CloseKey -- uid: Terminal.Gui.IAutocomplete.ColorScheme - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_ColorScheme - commentId: P:Terminal.Gui.IAutocomplete.ColorScheme - fullName: Terminal.Gui.IAutocomplete.ColorScheme - nameWithType: IAutocomplete.ColorScheme -- uid: Terminal.Gui.IAutocomplete.ColorScheme* - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_ColorScheme_ - commentId: Overload:Terminal.Gui.IAutocomplete.ColorScheme - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.ColorScheme - nameWithType: IAutocomplete.ColorScheme -- uid: Terminal.Gui.IAutocomplete.GenerateSuggestions - name: GenerateSuggestions() - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_GenerateSuggestions - commentId: M:Terminal.Gui.IAutocomplete.GenerateSuggestions - fullName: Terminal.Gui.IAutocomplete.GenerateSuggestions() - nameWithType: IAutocomplete.GenerateSuggestions() -- uid: Terminal.Gui.IAutocomplete.GenerateSuggestions* - name: GenerateSuggestions - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_GenerateSuggestions_ - commentId: Overload:Terminal.Gui.IAutocomplete.GenerateSuggestions - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.GenerateSuggestions - nameWithType: IAutocomplete.GenerateSuggestions -- uid: Terminal.Gui.IAutocomplete.HostControl - name: HostControl - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_HostControl - commentId: P:Terminal.Gui.IAutocomplete.HostControl - fullName: Terminal.Gui.IAutocomplete.HostControl - nameWithType: IAutocomplete.HostControl -- uid: Terminal.Gui.IAutocomplete.HostControl* - name: HostControl - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_HostControl_ - commentId: Overload:Terminal.Gui.IAutocomplete.HostControl - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.HostControl - nameWithType: IAutocomplete.HostControl -- uid: Terminal.Gui.IAutocomplete.MaxHeight - name: MaxHeight - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_MaxHeight - commentId: P:Terminal.Gui.IAutocomplete.MaxHeight - fullName: Terminal.Gui.IAutocomplete.MaxHeight - nameWithType: IAutocomplete.MaxHeight -- uid: Terminal.Gui.IAutocomplete.MaxHeight* - name: MaxHeight - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_MaxHeight_ - commentId: Overload:Terminal.Gui.IAutocomplete.MaxHeight - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.MaxHeight - nameWithType: IAutocomplete.MaxHeight -- uid: Terminal.Gui.IAutocomplete.MaxWidth - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_MaxWidth - commentId: P:Terminal.Gui.IAutocomplete.MaxWidth - fullName: Terminal.Gui.IAutocomplete.MaxWidth - nameWithType: IAutocomplete.MaxWidth -- uid: Terminal.Gui.IAutocomplete.MaxWidth* - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_MaxWidth_ - commentId: Overload:Terminal.Gui.IAutocomplete.MaxWidth - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.MaxWidth - nameWithType: IAutocomplete.MaxWidth -- uid: Terminal.Gui.IAutocomplete.MouseEvent(Terminal.Gui.MouseEvent,System.Boolean) - name: MouseEvent(MouseEvent, Boolean) - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_MouseEvent_Terminal_Gui_MouseEvent_System_Boolean_ - commentId: M:Terminal.Gui.IAutocomplete.MouseEvent(Terminal.Gui.MouseEvent,System.Boolean) - fullName: Terminal.Gui.IAutocomplete.MouseEvent(Terminal.Gui.MouseEvent, System.Boolean) - nameWithType: IAutocomplete.MouseEvent(MouseEvent, Boolean) -- uid: Terminal.Gui.IAutocomplete.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_MouseEvent_ - commentId: Overload:Terminal.Gui.IAutocomplete.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.MouseEvent - nameWithType: IAutocomplete.MouseEvent -- uid: Terminal.Gui.IAutocomplete.PopupInsideContainer - name: PopupInsideContainer - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_PopupInsideContainer - commentId: P:Terminal.Gui.IAutocomplete.PopupInsideContainer - fullName: Terminal.Gui.IAutocomplete.PopupInsideContainer - nameWithType: IAutocomplete.PopupInsideContainer -- uid: Terminal.Gui.IAutocomplete.PopupInsideContainer* - name: PopupInsideContainer - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_PopupInsideContainer_ - commentId: Overload:Terminal.Gui.IAutocomplete.PopupInsideContainer - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.PopupInsideContainer - nameWithType: IAutocomplete.PopupInsideContainer -- uid: Terminal.Gui.IAutocomplete.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.IAutocomplete.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.IAutocomplete.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: IAutocomplete.ProcessKey(KeyEvent) -- uid: Terminal.Gui.IAutocomplete.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_ProcessKey_ - commentId: Overload:Terminal.Gui.IAutocomplete.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.ProcessKey - nameWithType: IAutocomplete.ProcessKey -- uid: Terminal.Gui.IAutocomplete.RenderOverlay(Terminal.Gui.Point) - name: RenderOverlay(Point) - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_RenderOverlay_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.IAutocomplete.RenderOverlay(Terminal.Gui.Point) - fullName: Terminal.Gui.IAutocomplete.RenderOverlay(Terminal.Gui.Point) - nameWithType: IAutocomplete.RenderOverlay(Point) -- uid: Terminal.Gui.IAutocomplete.RenderOverlay* - name: RenderOverlay - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_RenderOverlay_ - commentId: Overload:Terminal.Gui.IAutocomplete.RenderOverlay - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.RenderOverlay - nameWithType: IAutocomplete.RenderOverlay -- uid: Terminal.Gui.IAutocomplete.Reopen - name: Reopen - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_Reopen - commentId: P:Terminal.Gui.IAutocomplete.Reopen - fullName: Terminal.Gui.IAutocomplete.Reopen - nameWithType: IAutocomplete.Reopen -- uid: Terminal.Gui.IAutocomplete.Reopen* - name: Reopen - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_Reopen_ - commentId: Overload:Terminal.Gui.IAutocomplete.Reopen - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.Reopen - nameWithType: IAutocomplete.Reopen -- uid: Terminal.Gui.IAutocomplete.SelectedIdx - name: SelectedIdx - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_SelectedIdx - commentId: P:Terminal.Gui.IAutocomplete.SelectedIdx - fullName: Terminal.Gui.IAutocomplete.SelectedIdx - nameWithType: IAutocomplete.SelectedIdx -- uid: Terminal.Gui.IAutocomplete.SelectedIdx* - name: SelectedIdx - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_SelectedIdx_ - commentId: Overload:Terminal.Gui.IAutocomplete.SelectedIdx - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.SelectedIdx - nameWithType: IAutocomplete.SelectedIdx -- uid: Terminal.Gui.IAutocomplete.SelectionKey - name: SelectionKey - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_SelectionKey - commentId: P:Terminal.Gui.IAutocomplete.SelectionKey - fullName: Terminal.Gui.IAutocomplete.SelectionKey - nameWithType: IAutocomplete.SelectionKey -- uid: Terminal.Gui.IAutocomplete.SelectionKey* - name: SelectionKey - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_SelectionKey_ - commentId: Overload:Terminal.Gui.IAutocomplete.SelectionKey - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.SelectionKey - nameWithType: IAutocomplete.SelectionKey -- uid: Terminal.Gui.IAutocomplete.Suggestions - name: Suggestions - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_Suggestions - commentId: P:Terminal.Gui.IAutocomplete.Suggestions - fullName: Terminal.Gui.IAutocomplete.Suggestions - nameWithType: IAutocomplete.Suggestions -- uid: Terminal.Gui.IAutocomplete.Suggestions* - name: Suggestions - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_Suggestions_ - commentId: Overload:Terminal.Gui.IAutocomplete.Suggestions - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.Suggestions - nameWithType: IAutocomplete.Suggestions -- uid: Terminal.Gui.IAutocomplete.Visible - name: Visible - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_Visible - commentId: P:Terminal.Gui.IAutocomplete.Visible - fullName: Terminal.Gui.IAutocomplete.Visible - nameWithType: IAutocomplete.Visible -- uid: Terminal.Gui.IAutocomplete.Visible* - name: Visible - href: api/Terminal.Gui/Terminal.Gui.IAutocomplete.html#Terminal_Gui_IAutocomplete_Visible_ - commentId: Overload:Terminal.Gui.IAutocomplete.Visible - isSpec: "True" - fullName: Terminal.Gui.IAutocomplete.Visible - nameWithType: IAutocomplete.Visible -- uid: Terminal.Gui.IClipboard - name: IClipboard - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html - commentId: T:Terminal.Gui.IClipboard - fullName: Terminal.Gui.IClipboard - nameWithType: IClipboard -- uid: Terminal.Gui.IClipboard.GetClipboardData - name: GetClipboardData() - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_GetClipboardData - commentId: M:Terminal.Gui.IClipboard.GetClipboardData - fullName: Terminal.Gui.IClipboard.GetClipboardData() - nameWithType: IClipboard.GetClipboardData() -- uid: Terminal.Gui.IClipboard.GetClipboardData* - name: GetClipboardData - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_GetClipboardData_ - commentId: Overload:Terminal.Gui.IClipboard.GetClipboardData - isSpec: "True" - fullName: Terminal.Gui.IClipboard.GetClipboardData - nameWithType: IClipboard.GetClipboardData -- uid: Terminal.Gui.IClipboard.IsSupported - name: IsSupported - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_IsSupported - commentId: P:Terminal.Gui.IClipboard.IsSupported - fullName: Terminal.Gui.IClipboard.IsSupported - nameWithType: IClipboard.IsSupported -- uid: Terminal.Gui.IClipboard.IsSupported* - name: IsSupported - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_IsSupported_ - commentId: Overload:Terminal.Gui.IClipboard.IsSupported - isSpec: "True" - fullName: Terminal.Gui.IClipboard.IsSupported - nameWithType: IClipboard.IsSupported -- uid: Terminal.Gui.IClipboard.SetClipboardData(System.String) - name: SetClipboardData(String) - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_SetClipboardData_System_String_ - commentId: M:Terminal.Gui.IClipboard.SetClipboardData(System.String) - fullName: Terminal.Gui.IClipboard.SetClipboardData(System.String) - nameWithType: IClipboard.SetClipboardData(String) -- uid: Terminal.Gui.IClipboard.SetClipboardData* - name: SetClipboardData - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_SetClipboardData_ - commentId: Overload:Terminal.Gui.IClipboard.SetClipboardData - isSpec: "True" - fullName: Terminal.Gui.IClipboard.SetClipboardData - nameWithType: IClipboard.SetClipboardData -- uid: Terminal.Gui.IClipboard.TryGetClipboardData(System.String@) - name: TryGetClipboardData(out String) - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_TryGetClipboardData_System_String__ - commentId: M:Terminal.Gui.IClipboard.TryGetClipboardData(System.String@) - name.vb: TryGetClipboardData(ByRef String) - fullName: Terminal.Gui.IClipboard.TryGetClipboardData(out System.String) - fullName.vb: Terminal.Gui.IClipboard.TryGetClipboardData(ByRef System.String) - nameWithType: IClipboard.TryGetClipboardData(out String) - nameWithType.vb: IClipboard.TryGetClipboardData(ByRef String) -- uid: Terminal.Gui.IClipboard.TryGetClipboardData* - name: TryGetClipboardData - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_TryGetClipboardData_ - commentId: Overload:Terminal.Gui.IClipboard.TryGetClipboardData - isSpec: "True" - fullName: Terminal.Gui.IClipboard.TryGetClipboardData - nameWithType: IClipboard.TryGetClipboardData -- uid: Terminal.Gui.IClipboard.TrySetClipboardData(System.String) - name: TrySetClipboardData(String) - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_TrySetClipboardData_System_String_ - commentId: M:Terminal.Gui.IClipboard.TrySetClipboardData(System.String) - fullName: Terminal.Gui.IClipboard.TrySetClipboardData(System.String) - nameWithType: IClipboard.TrySetClipboardData(String) -- uid: Terminal.Gui.IClipboard.TrySetClipboardData* - name: TrySetClipboardData - href: api/Terminal.Gui/Terminal.Gui.IClipboard.html#Terminal_Gui_IClipboard_TrySetClipboardData_ - commentId: Overload:Terminal.Gui.IClipboard.TrySetClipboardData - isSpec: "True" - fullName: Terminal.Gui.IClipboard.TrySetClipboardData - nameWithType: IClipboard.TrySetClipboardData -- uid: Terminal.Gui.IListDataSource - name: IListDataSource - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html - commentId: T:Terminal.Gui.IListDataSource - fullName: Terminal.Gui.IListDataSource - nameWithType: IListDataSource -- uid: Terminal.Gui.IListDataSource.Count - name: Count - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_Count - commentId: P:Terminal.Gui.IListDataSource.Count - fullName: Terminal.Gui.IListDataSource.Count - nameWithType: IListDataSource.Count -- uid: Terminal.Gui.IListDataSource.Count* - name: Count - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_Count_ - commentId: Overload:Terminal.Gui.IListDataSource.Count - isSpec: "True" - fullName: Terminal.Gui.IListDataSource.Count - nameWithType: IListDataSource.Count -- uid: Terminal.Gui.IListDataSource.IsMarked(System.Int32) - name: IsMarked(Int32) - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_IsMarked_System_Int32_ - commentId: M:Terminal.Gui.IListDataSource.IsMarked(System.Int32) - fullName: Terminal.Gui.IListDataSource.IsMarked(System.Int32) - nameWithType: IListDataSource.IsMarked(Int32) -- uid: Terminal.Gui.IListDataSource.IsMarked* - name: IsMarked - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_IsMarked_ - commentId: Overload:Terminal.Gui.IListDataSource.IsMarked - isSpec: "True" - fullName: Terminal.Gui.IListDataSource.IsMarked - nameWithType: IListDataSource.IsMarked -- uid: Terminal.Gui.IListDataSource.Length - name: Length - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_Length - commentId: P:Terminal.Gui.IListDataSource.Length - fullName: Terminal.Gui.IListDataSource.Length - nameWithType: IListDataSource.Length -- uid: Terminal.Gui.IListDataSource.Length* - name: Length - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_Length_ - commentId: Overload:Terminal.Gui.IListDataSource.Length - isSpec: "True" - fullName: Terminal.Gui.IListDataSource.Length - nameWithType: IListDataSource.Length -- uid: Terminal.Gui.IListDataSource.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - name: Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_Render_Terminal_Gui_ListView_Terminal_Gui_ConsoleDriver_System_Boolean_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.IListDataSource.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.IListDataSource.Render(Terminal.Gui.ListView, Terminal.Gui.ConsoleDriver, System.Boolean, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: IListDataSource.Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.IListDataSource.Render* - name: Render - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_Render_ - commentId: Overload:Terminal.Gui.IListDataSource.Render - isSpec: "True" - fullName: Terminal.Gui.IListDataSource.Render - nameWithType: IListDataSource.Render -- uid: Terminal.Gui.IListDataSource.SetMark(System.Int32,System.Boolean) - name: SetMark(Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_SetMark_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.IListDataSource.SetMark(System.Int32,System.Boolean) - fullName: Terminal.Gui.IListDataSource.SetMark(System.Int32, System.Boolean) - nameWithType: IListDataSource.SetMark(Int32, Boolean) -- uid: Terminal.Gui.IListDataSource.SetMark* - name: SetMark - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_SetMark_ - commentId: Overload:Terminal.Gui.IListDataSource.SetMark - isSpec: "True" - fullName: Terminal.Gui.IListDataSource.SetMark - nameWithType: IListDataSource.SetMark -- uid: Terminal.Gui.IListDataSource.ToList - name: ToList() - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_ToList - commentId: M:Terminal.Gui.IListDataSource.ToList - fullName: Terminal.Gui.IListDataSource.ToList() - nameWithType: IListDataSource.ToList() -- uid: Terminal.Gui.IListDataSource.ToList* - name: ToList - href: api/Terminal.Gui/Terminal.Gui.IListDataSource.html#Terminal_Gui_IListDataSource_ToList_ - commentId: Overload:Terminal.Gui.IListDataSource.ToList - isSpec: "True" - fullName: Terminal.Gui.IListDataSource.ToList - nameWithType: IListDataSource.ToList -- uid: Terminal.Gui.IMainLoopDriver - name: IMainLoopDriver - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html - commentId: T:Terminal.Gui.IMainLoopDriver - fullName: Terminal.Gui.IMainLoopDriver - nameWithType: IMainLoopDriver -- uid: Terminal.Gui.IMainLoopDriver.EventsPending(System.Boolean) - name: EventsPending(Boolean) - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_EventsPending_System_Boolean_ - commentId: M:Terminal.Gui.IMainLoopDriver.EventsPending(System.Boolean) - fullName: Terminal.Gui.IMainLoopDriver.EventsPending(System.Boolean) - nameWithType: IMainLoopDriver.EventsPending(Boolean) -- uid: Terminal.Gui.IMainLoopDriver.EventsPending* - name: EventsPending - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_EventsPending_ - commentId: Overload:Terminal.Gui.IMainLoopDriver.EventsPending - isSpec: "True" - fullName: Terminal.Gui.IMainLoopDriver.EventsPending - nameWithType: IMainLoopDriver.EventsPending -- uid: Terminal.Gui.IMainLoopDriver.MainIteration - name: MainIteration() - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_MainIteration - commentId: M:Terminal.Gui.IMainLoopDriver.MainIteration - fullName: Terminal.Gui.IMainLoopDriver.MainIteration() - nameWithType: IMainLoopDriver.MainIteration() -- uid: Terminal.Gui.IMainLoopDriver.MainIteration* - name: MainIteration - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_MainIteration_ - commentId: Overload:Terminal.Gui.IMainLoopDriver.MainIteration - isSpec: "True" - fullName: Terminal.Gui.IMainLoopDriver.MainIteration - nameWithType: IMainLoopDriver.MainIteration -- uid: Terminal.Gui.IMainLoopDriver.Setup(Terminal.Gui.MainLoop) - name: Setup(MainLoop) - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_Setup_Terminal_Gui_MainLoop_ - commentId: M:Terminal.Gui.IMainLoopDriver.Setup(Terminal.Gui.MainLoop) - fullName: Terminal.Gui.IMainLoopDriver.Setup(Terminal.Gui.MainLoop) - nameWithType: IMainLoopDriver.Setup(MainLoop) -- uid: Terminal.Gui.IMainLoopDriver.Setup* - name: Setup - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_Setup_ - commentId: Overload:Terminal.Gui.IMainLoopDriver.Setup - isSpec: "True" - fullName: Terminal.Gui.IMainLoopDriver.Setup - nameWithType: IMainLoopDriver.Setup -- uid: Terminal.Gui.IMainLoopDriver.Wakeup - name: Wakeup() - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_Wakeup - commentId: M:Terminal.Gui.IMainLoopDriver.Wakeup - fullName: Terminal.Gui.IMainLoopDriver.Wakeup() - nameWithType: IMainLoopDriver.Wakeup() -- uid: Terminal.Gui.IMainLoopDriver.Wakeup* - name: Wakeup - href: api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html#Terminal_Gui_IMainLoopDriver_Wakeup_ - commentId: Overload:Terminal.Gui.IMainLoopDriver.Wakeup - isSpec: "True" - fullName: Terminal.Gui.IMainLoopDriver.Wakeup - nameWithType: IMainLoopDriver.Wakeup -- uid: Terminal.Gui.ITreeView - name: ITreeView - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html - commentId: T:Terminal.Gui.ITreeView - fullName: Terminal.Gui.ITreeView - nameWithType: ITreeView -- uid: Terminal.Gui.ITreeView.ClearObjects - name: ClearObjects() - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html#Terminal_Gui_ITreeView_ClearObjects - commentId: M:Terminal.Gui.ITreeView.ClearObjects - fullName: Terminal.Gui.ITreeView.ClearObjects() - nameWithType: ITreeView.ClearObjects() -- uid: Terminal.Gui.ITreeView.ClearObjects* - name: ClearObjects - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html#Terminal_Gui_ITreeView_ClearObjects_ - commentId: Overload:Terminal.Gui.ITreeView.ClearObjects - isSpec: "True" - fullName: Terminal.Gui.ITreeView.ClearObjects - nameWithType: ITreeView.ClearObjects -- uid: Terminal.Gui.ITreeView.SetNeedsDisplay - name: SetNeedsDisplay() - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html#Terminal_Gui_ITreeView_SetNeedsDisplay - commentId: M:Terminal.Gui.ITreeView.SetNeedsDisplay - fullName: Terminal.Gui.ITreeView.SetNeedsDisplay() - nameWithType: ITreeView.SetNeedsDisplay() -- uid: Terminal.Gui.ITreeView.SetNeedsDisplay* - name: SetNeedsDisplay - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html#Terminal_Gui_ITreeView_SetNeedsDisplay_ - commentId: Overload:Terminal.Gui.ITreeView.SetNeedsDisplay - isSpec: "True" - fullName: Terminal.Gui.ITreeView.SetNeedsDisplay - nameWithType: ITreeView.SetNeedsDisplay -- uid: Terminal.Gui.ITreeView.Style - name: Style - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html#Terminal_Gui_ITreeView_Style - commentId: P:Terminal.Gui.ITreeView.Style - fullName: Terminal.Gui.ITreeView.Style - nameWithType: ITreeView.Style -- uid: Terminal.Gui.ITreeView.Style* - name: Style - href: api/Terminal.Gui/Terminal.Gui.ITreeView.html#Terminal_Gui_ITreeView_Style_ - commentId: Overload:Terminal.Gui.ITreeView.Style - isSpec: "True" - fullName: Terminal.Gui.ITreeView.Style - nameWithType: ITreeView.Style -- uid: Terminal.Gui.Key - name: Key - href: api/Terminal.Gui/Terminal.Gui.Key.html - commentId: T:Terminal.Gui.Key - fullName: Terminal.Gui.Key - nameWithType: Key -- uid: Terminal.Gui.Key.a - name: a - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_a - commentId: F:Terminal.Gui.Key.a - fullName: Terminal.Gui.Key.a - nameWithType: Key.a -- uid: Terminal.Gui.Key.A - name: A - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_A - commentId: F:Terminal.Gui.Key.A - fullName: Terminal.Gui.Key.A - nameWithType: Key.A -- uid: Terminal.Gui.Key.AltMask - name: AltMask - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_AltMask - commentId: F:Terminal.Gui.Key.AltMask - fullName: Terminal.Gui.Key.AltMask - nameWithType: Key.AltMask -- uid: Terminal.Gui.Key.b - name: b - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_b - commentId: F:Terminal.Gui.Key.b - fullName: Terminal.Gui.Key.b - nameWithType: Key.b -- uid: Terminal.Gui.Key.B - name: B - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_B - commentId: F:Terminal.Gui.Key.B - fullName: Terminal.Gui.Key.B - nameWithType: Key.B -- uid: Terminal.Gui.Key.Backspace - name: Backspace - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Backspace - commentId: F:Terminal.Gui.Key.Backspace - fullName: Terminal.Gui.Key.Backspace - nameWithType: Key.Backspace -- uid: Terminal.Gui.Key.BackTab - name: BackTab - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_BackTab - commentId: F:Terminal.Gui.Key.BackTab - fullName: Terminal.Gui.Key.BackTab - nameWithType: Key.BackTab -- uid: Terminal.Gui.Key.c - name: c - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_c - commentId: F:Terminal.Gui.Key.c - fullName: Terminal.Gui.Key.c - nameWithType: Key.c -- uid: Terminal.Gui.Key.C - name: C - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_C - commentId: F:Terminal.Gui.Key.C - fullName: Terminal.Gui.Key.C - nameWithType: Key.C -- uid: Terminal.Gui.Key.CharMask - name: CharMask - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_CharMask - commentId: F:Terminal.Gui.Key.CharMask - fullName: Terminal.Gui.Key.CharMask - nameWithType: Key.CharMask -- uid: Terminal.Gui.Key.CtrlMask - name: CtrlMask - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_CtrlMask - commentId: F:Terminal.Gui.Key.CtrlMask - fullName: Terminal.Gui.Key.CtrlMask - nameWithType: Key.CtrlMask -- uid: Terminal.Gui.Key.CursorDown - name: CursorDown - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_CursorDown - commentId: F:Terminal.Gui.Key.CursorDown - fullName: Terminal.Gui.Key.CursorDown - nameWithType: Key.CursorDown -- uid: Terminal.Gui.Key.CursorLeft - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_CursorLeft - commentId: F:Terminal.Gui.Key.CursorLeft - fullName: Terminal.Gui.Key.CursorLeft - nameWithType: Key.CursorLeft -- uid: Terminal.Gui.Key.CursorRight - name: CursorRight - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_CursorRight - commentId: F:Terminal.Gui.Key.CursorRight - fullName: Terminal.Gui.Key.CursorRight - nameWithType: Key.CursorRight -- uid: Terminal.Gui.Key.CursorUp - name: CursorUp - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_CursorUp - commentId: F:Terminal.Gui.Key.CursorUp - fullName: Terminal.Gui.Key.CursorUp - nameWithType: Key.CursorUp -- uid: Terminal.Gui.Key.d - name: d - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_d - commentId: F:Terminal.Gui.Key.d - fullName: Terminal.Gui.Key.d - nameWithType: Key.d -- uid: Terminal.Gui.Key.D - name: D - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D - commentId: F:Terminal.Gui.Key.D - fullName: Terminal.Gui.Key.D - nameWithType: Key.D -- uid: Terminal.Gui.Key.D0 - name: D0 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D0 - commentId: F:Terminal.Gui.Key.D0 - fullName: Terminal.Gui.Key.D0 - nameWithType: Key.D0 -- uid: Terminal.Gui.Key.D1 - name: D1 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D1 - commentId: F:Terminal.Gui.Key.D1 - fullName: Terminal.Gui.Key.D1 - nameWithType: Key.D1 -- uid: Terminal.Gui.Key.D2 - name: D2 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D2 - commentId: F:Terminal.Gui.Key.D2 - fullName: Terminal.Gui.Key.D2 - nameWithType: Key.D2 -- uid: Terminal.Gui.Key.D3 - name: D3 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D3 - commentId: F:Terminal.Gui.Key.D3 - fullName: Terminal.Gui.Key.D3 - nameWithType: Key.D3 -- uid: Terminal.Gui.Key.D4 - name: D4 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D4 - commentId: F:Terminal.Gui.Key.D4 - fullName: Terminal.Gui.Key.D4 - nameWithType: Key.D4 -- uid: Terminal.Gui.Key.D5 - name: D5 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D5 - commentId: F:Terminal.Gui.Key.D5 - fullName: Terminal.Gui.Key.D5 - nameWithType: Key.D5 -- uid: Terminal.Gui.Key.D6 - name: D6 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D6 - commentId: F:Terminal.Gui.Key.D6 - fullName: Terminal.Gui.Key.D6 - nameWithType: Key.D6 -- uid: Terminal.Gui.Key.D7 - name: D7 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D7 - commentId: F:Terminal.Gui.Key.D7 - fullName: Terminal.Gui.Key.D7 - nameWithType: Key.D7 -- uid: Terminal.Gui.Key.D8 - name: D8 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D8 - commentId: F:Terminal.Gui.Key.D8 - fullName: Terminal.Gui.Key.D8 - nameWithType: Key.D8 -- uid: Terminal.Gui.Key.D9 - name: D9 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_D9 - commentId: F:Terminal.Gui.Key.D9 - fullName: Terminal.Gui.Key.D9 - nameWithType: Key.D9 -- uid: Terminal.Gui.Key.Delete - name: Delete - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Delete - commentId: F:Terminal.Gui.Key.Delete - fullName: Terminal.Gui.Key.Delete - nameWithType: Key.Delete -- uid: Terminal.Gui.Key.DeleteChar - name: DeleteChar - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_DeleteChar - commentId: F:Terminal.Gui.Key.DeleteChar - fullName: Terminal.Gui.Key.DeleteChar - nameWithType: Key.DeleteChar -- uid: Terminal.Gui.Key.e - name: e - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_e - commentId: F:Terminal.Gui.Key.e - fullName: Terminal.Gui.Key.e - nameWithType: Key.e -- uid: Terminal.Gui.Key.E - name: E - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_E - commentId: F:Terminal.Gui.Key.E - fullName: Terminal.Gui.Key.E - nameWithType: Key.E -- uid: Terminal.Gui.Key.End - name: End - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_End - commentId: F:Terminal.Gui.Key.End - fullName: Terminal.Gui.Key.End - nameWithType: Key.End -- uid: Terminal.Gui.Key.Enter - name: Enter - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Enter - commentId: F:Terminal.Gui.Key.Enter - fullName: Terminal.Gui.Key.Enter - nameWithType: Key.Enter -- uid: Terminal.Gui.Key.Esc - name: Esc - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Esc - commentId: F:Terminal.Gui.Key.Esc - fullName: Terminal.Gui.Key.Esc - nameWithType: Key.Esc -- uid: Terminal.Gui.Key.f - name: f - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_f - commentId: F:Terminal.Gui.Key.f - fullName: Terminal.Gui.Key.f - nameWithType: Key.f -- uid: Terminal.Gui.Key.F - name: F - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F - commentId: F:Terminal.Gui.Key.F - fullName: Terminal.Gui.Key.F - nameWithType: Key.F -- uid: Terminal.Gui.Key.F1 - name: F1 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F1 - commentId: F:Terminal.Gui.Key.F1 - fullName: Terminal.Gui.Key.F1 - nameWithType: Key.F1 -- uid: Terminal.Gui.Key.F10 - name: F10 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F10 - commentId: F:Terminal.Gui.Key.F10 - fullName: Terminal.Gui.Key.F10 - nameWithType: Key.F10 -- uid: Terminal.Gui.Key.F11 - name: F11 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F11 - commentId: F:Terminal.Gui.Key.F11 - fullName: Terminal.Gui.Key.F11 - nameWithType: Key.F11 -- uid: Terminal.Gui.Key.F12 - name: F12 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F12 - commentId: F:Terminal.Gui.Key.F12 - fullName: Terminal.Gui.Key.F12 - nameWithType: Key.F12 -- uid: Terminal.Gui.Key.F2 - name: F2 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F2 - commentId: F:Terminal.Gui.Key.F2 - fullName: Terminal.Gui.Key.F2 - nameWithType: Key.F2 -- uid: Terminal.Gui.Key.F3 - name: F3 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F3 - commentId: F:Terminal.Gui.Key.F3 - fullName: Terminal.Gui.Key.F3 - nameWithType: Key.F3 -- uid: Terminal.Gui.Key.F4 - name: F4 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F4 - commentId: F:Terminal.Gui.Key.F4 - fullName: Terminal.Gui.Key.F4 - nameWithType: Key.F4 -- uid: Terminal.Gui.Key.F5 - name: F5 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F5 - commentId: F:Terminal.Gui.Key.F5 - fullName: Terminal.Gui.Key.F5 - nameWithType: Key.F5 -- uid: Terminal.Gui.Key.F6 - name: F6 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F6 - commentId: F:Terminal.Gui.Key.F6 - fullName: Terminal.Gui.Key.F6 - nameWithType: Key.F6 -- uid: Terminal.Gui.Key.F7 - name: F7 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F7 - commentId: F:Terminal.Gui.Key.F7 - fullName: Terminal.Gui.Key.F7 - nameWithType: Key.F7 -- uid: Terminal.Gui.Key.F8 - name: F8 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F8 - commentId: F:Terminal.Gui.Key.F8 - fullName: Terminal.Gui.Key.F8 - nameWithType: Key.F8 -- uid: Terminal.Gui.Key.F9 - name: F9 - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_F9 - commentId: F:Terminal.Gui.Key.F9 - fullName: Terminal.Gui.Key.F9 - nameWithType: Key.F9 -- uid: Terminal.Gui.Key.g - name: g - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_g - commentId: F:Terminal.Gui.Key.g - fullName: Terminal.Gui.Key.g - nameWithType: Key.g -- uid: Terminal.Gui.Key.G - name: G - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_G - commentId: F:Terminal.Gui.Key.G - fullName: Terminal.Gui.Key.G - nameWithType: Key.G -- uid: Terminal.Gui.Key.h - name: h - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_h - commentId: F:Terminal.Gui.Key.h - fullName: Terminal.Gui.Key.h - nameWithType: Key.h -- uid: Terminal.Gui.Key.H - name: H - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_H - commentId: F:Terminal.Gui.Key.H - fullName: Terminal.Gui.Key.H - nameWithType: Key.H -- uid: Terminal.Gui.Key.Home - name: Home - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Home - commentId: F:Terminal.Gui.Key.Home - fullName: Terminal.Gui.Key.Home - nameWithType: Key.Home -- uid: Terminal.Gui.Key.i - name: i - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_i - commentId: F:Terminal.Gui.Key.i - fullName: Terminal.Gui.Key.i - nameWithType: Key.i -- uid: Terminal.Gui.Key.I - name: I - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_I - commentId: F:Terminal.Gui.Key.I - fullName: Terminal.Gui.Key.I - nameWithType: Key.I -- uid: Terminal.Gui.Key.InsertChar - name: InsertChar - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_InsertChar - commentId: F:Terminal.Gui.Key.InsertChar - fullName: Terminal.Gui.Key.InsertChar - nameWithType: Key.InsertChar -- uid: Terminal.Gui.Key.j - name: j - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_j - commentId: F:Terminal.Gui.Key.j - fullName: Terminal.Gui.Key.j - nameWithType: Key.j -- uid: Terminal.Gui.Key.J - name: J - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_J - commentId: F:Terminal.Gui.Key.J - fullName: Terminal.Gui.Key.J - nameWithType: Key.J -- uid: Terminal.Gui.Key.k - name: k - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_k - commentId: F:Terminal.Gui.Key.k - fullName: Terminal.Gui.Key.k - nameWithType: Key.k -- uid: Terminal.Gui.Key.K - name: K - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_K - commentId: F:Terminal.Gui.Key.K - fullName: Terminal.Gui.Key.K - nameWithType: Key.K -- uid: Terminal.Gui.Key.l - name: l - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_l - commentId: F:Terminal.Gui.Key.l - fullName: Terminal.Gui.Key.l - nameWithType: Key.l -- uid: Terminal.Gui.Key.L - name: L - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_L - commentId: F:Terminal.Gui.Key.L - fullName: Terminal.Gui.Key.L - nameWithType: Key.L -- uid: Terminal.Gui.Key.m - name: m - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_m - commentId: F:Terminal.Gui.Key.m - fullName: Terminal.Gui.Key.m - nameWithType: Key.m -- uid: Terminal.Gui.Key.M - name: M - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_M - commentId: F:Terminal.Gui.Key.M - fullName: Terminal.Gui.Key.M - nameWithType: Key.M -- uid: Terminal.Gui.Key.n - name: n - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_n - commentId: F:Terminal.Gui.Key.n - fullName: Terminal.Gui.Key.n - nameWithType: Key.n -- uid: Terminal.Gui.Key.N - name: N - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_N - commentId: F:Terminal.Gui.Key.N - fullName: Terminal.Gui.Key.N - nameWithType: Key.N -- uid: Terminal.Gui.Key.Null - name: "Null" - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Null - commentId: F:Terminal.Gui.Key.Null - fullName: Terminal.Gui.Key.Null - nameWithType: Key.Null -- uid: Terminal.Gui.Key.o - name: o - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_o - commentId: F:Terminal.Gui.Key.o - fullName: Terminal.Gui.Key.o - nameWithType: Key.o -- uid: Terminal.Gui.Key.O - name: O - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_O - commentId: F:Terminal.Gui.Key.O - fullName: Terminal.Gui.Key.O - nameWithType: Key.O -- uid: Terminal.Gui.Key.p - name: p - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_p - commentId: F:Terminal.Gui.Key.p - fullName: Terminal.Gui.Key.p - nameWithType: Key.p -- uid: Terminal.Gui.Key.P - name: P - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_P - commentId: F:Terminal.Gui.Key.P - fullName: Terminal.Gui.Key.P - nameWithType: Key.P -- uid: Terminal.Gui.Key.PageDown - name: PageDown - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_PageDown - commentId: F:Terminal.Gui.Key.PageDown - fullName: Terminal.Gui.Key.PageDown - nameWithType: Key.PageDown -- uid: Terminal.Gui.Key.PageUp - name: PageUp - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_PageUp - commentId: F:Terminal.Gui.Key.PageUp - fullName: Terminal.Gui.Key.PageUp - nameWithType: Key.PageUp -- uid: Terminal.Gui.Key.q - name: q - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_q - commentId: F:Terminal.Gui.Key.q - fullName: Terminal.Gui.Key.q - nameWithType: Key.q -- uid: Terminal.Gui.Key.Q - name: Q - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Q - commentId: F:Terminal.Gui.Key.Q - fullName: Terminal.Gui.Key.Q - nameWithType: Key.Q -- uid: Terminal.Gui.Key.r - name: r - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_r - commentId: F:Terminal.Gui.Key.r - fullName: Terminal.Gui.Key.r - nameWithType: Key.r -- uid: Terminal.Gui.Key.R - name: R - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_R - commentId: F:Terminal.Gui.Key.R - fullName: Terminal.Gui.Key.R - nameWithType: Key.R -- uid: Terminal.Gui.Key.s - name: s - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_s - commentId: F:Terminal.Gui.Key.s - fullName: Terminal.Gui.Key.s - nameWithType: Key.s -- uid: Terminal.Gui.Key.S - name: S - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_S - commentId: F:Terminal.Gui.Key.S - fullName: Terminal.Gui.Key.S - nameWithType: Key.S -- uid: Terminal.Gui.Key.ShiftMask - name: ShiftMask - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_ShiftMask - commentId: F:Terminal.Gui.Key.ShiftMask - fullName: Terminal.Gui.Key.ShiftMask - nameWithType: Key.ShiftMask -- uid: Terminal.Gui.Key.Space - name: Space - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Space - commentId: F:Terminal.Gui.Key.Space - fullName: Terminal.Gui.Key.Space - nameWithType: Key.Space -- uid: Terminal.Gui.Key.SpecialMask - name: SpecialMask - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_SpecialMask - commentId: F:Terminal.Gui.Key.SpecialMask - fullName: Terminal.Gui.Key.SpecialMask - nameWithType: Key.SpecialMask -- uid: Terminal.Gui.Key.t - name: t - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_t - commentId: F:Terminal.Gui.Key.t - fullName: Terminal.Gui.Key.t - nameWithType: Key.t -- uid: Terminal.Gui.Key.T - name: T - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_T - commentId: F:Terminal.Gui.Key.T - fullName: Terminal.Gui.Key.T - nameWithType: Key.T -- uid: Terminal.Gui.Key.Tab - name: Tab - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Tab - commentId: F:Terminal.Gui.Key.Tab - fullName: Terminal.Gui.Key.Tab - nameWithType: Key.Tab -- uid: Terminal.Gui.Key.u - name: u - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_u - commentId: F:Terminal.Gui.Key.u - fullName: Terminal.Gui.Key.u - nameWithType: Key.u -- uid: Terminal.Gui.Key.U - name: U - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_U - commentId: F:Terminal.Gui.Key.U - fullName: Terminal.Gui.Key.U - nameWithType: Key.U -- uid: Terminal.Gui.Key.Unknown - name: Unknown - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Unknown - commentId: F:Terminal.Gui.Key.Unknown - fullName: Terminal.Gui.Key.Unknown - nameWithType: Key.Unknown -- uid: Terminal.Gui.Key.v - name: v - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_v - commentId: F:Terminal.Gui.Key.v - fullName: Terminal.Gui.Key.v - nameWithType: Key.v -- uid: Terminal.Gui.Key.V - name: V - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_V - commentId: F:Terminal.Gui.Key.V - fullName: Terminal.Gui.Key.V - nameWithType: Key.V -- uid: Terminal.Gui.Key.w - name: w - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_w - commentId: F:Terminal.Gui.Key.w - fullName: Terminal.Gui.Key.w - nameWithType: Key.w -- uid: Terminal.Gui.Key.W - name: W - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_W - commentId: F:Terminal.Gui.Key.W - fullName: Terminal.Gui.Key.W - nameWithType: Key.W -- uid: Terminal.Gui.Key.x - name: x - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_x - commentId: F:Terminal.Gui.Key.x - fullName: Terminal.Gui.Key.x - nameWithType: Key.x -- uid: Terminal.Gui.Key.X - name: X - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_X - commentId: F:Terminal.Gui.Key.X - fullName: Terminal.Gui.Key.X - nameWithType: Key.X -- uid: Terminal.Gui.Key.y - name: y - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_y - commentId: F:Terminal.Gui.Key.y - fullName: Terminal.Gui.Key.y - nameWithType: Key.y -- uid: Terminal.Gui.Key.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Y - commentId: F:Terminal.Gui.Key.Y - fullName: Terminal.Gui.Key.Y - nameWithType: Key.Y -- uid: Terminal.Gui.Key.z - name: z - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_z - commentId: F:Terminal.Gui.Key.z - fullName: Terminal.Gui.Key.z - nameWithType: Key.z -- uid: Terminal.Gui.Key.Z - name: Z - href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_Z - commentId: F:Terminal.Gui.Key.Z - fullName: Terminal.Gui.Key.Z - nameWithType: Key.Z -- uid: Terminal.Gui.KeyEvent - name: KeyEvent - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html - commentId: T:Terminal.Gui.KeyEvent - fullName: Terminal.Gui.KeyEvent - nameWithType: KeyEvent -- uid: Terminal.Gui.KeyEvent.#ctor - name: KeyEvent() - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent__ctor - commentId: M:Terminal.Gui.KeyEvent.#ctor - fullName: Terminal.Gui.KeyEvent.KeyEvent() - nameWithType: KeyEvent.KeyEvent() -- uid: Terminal.Gui.KeyEvent.#ctor(Terminal.Gui.Key,Terminal.Gui.KeyModifiers) - name: KeyEvent(Key, KeyModifiers) - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent__ctor_Terminal_Gui_Key_Terminal_Gui_KeyModifiers_ - commentId: M:Terminal.Gui.KeyEvent.#ctor(Terminal.Gui.Key,Terminal.Gui.KeyModifiers) - fullName: Terminal.Gui.KeyEvent.KeyEvent(Terminal.Gui.Key, Terminal.Gui.KeyModifiers) - nameWithType: KeyEvent.KeyEvent(Key, KeyModifiers) -- uid: Terminal.Gui.KeyEvent.#ctor* - name: KeyEvent - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent__ctor_ - commentId: Overload:Terminal.Gui.KeyEvent.#ctor - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.KeyEvent - nameWithType: KeyEvent.KeyEvent -- uid: Terminal.Gui.KeyEvent.IsAlt - name: IsAlt - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsAlt - commentId: P:Terminal.Gui.KeyEvent.IsAlt - fullName: Terminal.Gui.KeyEvent.IsAlt - nameWithType: KeyEvent.IsAlt -- uid: Terminal.Gui.KeyEvent.IsAlt* - name: IsAlt - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsAlt_ - commentId: Overload:Terminal.Gui.KeyEvent.IsAlt - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.IsAlt - nameWithType: KeyEvent.IsAlt -- uid: Terminal.Gui.KeyEvent.IsCapslock - name: IsCapslock - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsCapslock - commentId: P:Terminal.Gui.KeyEvent.IsCapslock - fullName: Terminal.Gui.KeyEvent.IsCapslock - nameWithType: KeyEvent.IsCapslock -- uid: Terminal.Gui.KeyEvent.IsCapslock* - name: IsCapslock - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsCapslock_ - commentId: Overload:Terminal.Gui.KeyEvent.IsCapslock - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.IsCapslock - nameWithType: KeyEvent.IsCapslock -- uid: Terminal.Gui.KeyEvent.IsCtrl - name: IsCtrl - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsCtrl - commentId: P:Terminal.Gui.KeyEvent.IsCtrl - fullName: Terminal.Gui.KeyEvent.IsCtrl - nameWithType: KeyEvent.IsCtrl -- uid: Terminal.Gui.KeyEvent.IsCtrl* - name: IsCtrl - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsCtrl_ - commentId: Overload:Terminal.Gui.KeyEvent.IsCtrl - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.IsCtrl - nameWithType: KeyEvent.IsCtrl -- uid: Terminal.Gui.KeyEvent.IsNumlock - name: IsNumlock - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsNumlock - commentId: P:Terminal.Gui.KeyEvent.IsNumlock - fullName: Terminal.Gui.KeyEvent.IsNumlock - nameWithType: KeyEvent.IsNumlock -- uid: Terminal.Gui.KeyEvent.IsNumlock* - name: IsNumlock - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsNumlock_ - commentId: Overload:Terminal.Gui.KeyEvent.IsNumlock - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.IsNumlock - nameWithType: KeyEvent.IsNumlock -- uid: Terminal.Gui.KeyEvent.IsScrolllock - name: IsScrolllock - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsScrolllock - commentId: P:Terminal.Gui.KeyEvent.IsScrolllock - fullName: Terminal.Gui.KeyEvent.IsScrolllock - nameWithType: KeyEvent.IsScrolllock -- uid: Terminal.Gui.KeyEvent.IsScrolllock* - name: IsScrolllock - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsScrolllock_ - commentId: Overload:Terminal.Gui.KeyEvent.IsScrolllock - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.IsScrolllock - nameWithType: KeyEvent.IsScrolllock -- uid: Terminal.Gui.KeyEvent.IsShift - name: IsShift - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsShift - commentId: P:Terminal.Gui.KeyEvent.IsShift - fullName: Terminal.Gui.KeyEvent.IsShift - nameWithType: KeyEvent.IsShift -- uid: Terminal.Gui.KeyEvent.IsShift* - name: IsShift - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_IsShift_ - commentId: Overload:Terminal.Gui.KeyEvent.IsShift - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.IsShift - nameWithType: KeyEvent.IsShift -- uid: Terminal.Gui.KeyEvent.Key - name: Key - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_Key - commentId: F:Terminal.Gui.KeyEvent.Key - fullName: Terminal.Gui.KeyEvent.Key - nameWithType: KeyEvent.Key -- uid: Terminal.Gui.KeyEvent.KeyValue - name: KeyValue - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_KeyValue - commentId: P:Terminal.Gui.KeyEvent.KeyValue - fullName: Terminal.Gui.KeyEvent.KeyValue - nameWithType: KeyEvent.KeyValue -- uid: Terminal.Gui.KeyEvent.KeyValue* - name: KeyValue - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_KeyValue_ - commentId: Overload:Terminal.Gui.KeyEvent.KeyValue - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.KeyValue - nameWithType: KeyEvent.KeyValue -- uid: Terminal.Gui.KeyEvent.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_ToString - commentId: M:Terminal.Gui.KeyEvent.ToString - fullName: Terminal.Gui.KeyEvent.ToString() - nameWithType: KeyEvent.ToString() -- uid: Terminal.Gui.KeyEvent.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.KeyEvent.html#Terminal_Gui_KeyEvent_ToString_ - commentId: Overload:Terminal.Gui.KeyEvent.ToString - isSpec: "True" - fullName: Terminal.Gui.KeyEvent.ToString - nameWithType: KeyEvent.ToString -- uid: Terminal.Gui.KeyModifiers - name: KeyModifiers - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html - commentId: T:Terminal.Gui.KeyModifiers - fullName: Terminal.Gui.KeyModifiers - nameWithType: KeyModifiers -- uid: Terminal.Gui.KeyModifiers.Alt - name: Alt - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html#Terminal_Gui_KeyModifiers_Alt - commentId: F:Terminal.Gui.KeyModifiers.Alt - fullName: Terminal.Gui.KeyModifiers.Alt - nameWithType: KeyModifiers.Alt -- uid: Terminal.Gui.KeyModifiers.Capslock - name: Capslock - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html#Terminal_Gui_KeyModifiers_Capslock - commentId: F:Terminal.Gui.KeyModifiers.Capslock - fullName: Terminal.Gui.KeyModifiers.Capslock - nameWithType: KeyModifiers.Capslock -- uid: Terminal.Gui.KeyModifiers.Ctrl - name: Ctrl - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html#Terminal_Gui_KeyModifiers_Ctrl - commentId: F:Terminal.Gui.KeyModifiers.Ctrl - fullName: Terminal.Gui.KeyModifiers.Ctrl - nameWithType: KeyModifiers.Ctrl -- uid: Terminal.Gui.KeyModifiers.Numlock - name: Numlock - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html#Terminal_Gui_KeyModifiers_Numlock - commentId: F:Terminal.Gui.KeyModifiers.Numlock - fullName: Terminal.Gui.KeyModifiers.Numlock - nameWithType: KeyModifiers.Numlock -- uid: Terminal.Gui.KeyModifiers.Scrolllock - name: Scrolllock - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html#Terminal_Gui_KeyModifiers_Scrolllock - commentId: F:Terminal.Gui.KeyModifiers.Scrolllock - fullName: Terminal.Gui.KeyModifiers.Scrolllock - nameWithType: KeyModifiers.Scrolllock -- uid: Terminal.Gui.KeyModifiers.Shift - name: Shift - href: api/Terminal.Gui/Terminal.Gui.KeyModifiers.html#Terminal_Gui_KeyModifiers_Shift - commentId: F:Terminal.Gui.KeyModifiers.Shift - fullName: Terminal.Gui.KeyModifiers.Shift - nameWithType: KeyModifiers.Shift -- uid: Terminal.Gui.Label - name: Label - href: api/Terminal.Gui/Terminal.Gui.Label.html - commentId: T:Terminal.Gui.Label - fullName: Terminal.Gui.Label - nameWithType: Label -- uid: Terminal.Gui.Label.#ctor - name: Label() - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor - commentId: M:Terminal.Gui.Label.#ctor - fullName: Terminal.Gui.Label.Label() - nameWithType: Label.Label() -- uid: Terminal.Gui.Label.#ctor(NStack.ustring,System.Boolean) - name: Label(ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.Label.#ctor(NStack.ustring,System.Boolean) - fullName: Terminal.Gui.Label.Label(NStack.ustring, System.Boolean) - nameWithType: Label.Label(ustring, Boolean) -- uid: Terminal.Gui.Label.#ctor(NStack.ustring,Terminal.Gui.TextDirection,System.Boolean) - name: Label(ustring, TextDirection, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor_NStack_ustring_Terminal_Gui_TextDirection_System_Boolean_ - commentId: M:Terminal.Gui.Label.#ctor(NStack.ustring,Terminal.Gui.TextDirection,System.Boolean) - fullName: Terminal.Gui.Label.Label(NStack.ustring, Terminal.Gui.TextDirection, System.Boolean) - nameWithType: Label.Label(ustring, TextDirection, Boolean) -- uid: Terminal.Gui.Label.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - name: Label(Int32, Int32, ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor_System_Int32_System_Int32_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.Label.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - fullName: Terminal.Gui.Label.Label(System.Int32, System.Int32, NStack.ustring, System.Boolean) - nameWithType: Label.Label(Int32, Int32, ustring, Boolean) -- uid: Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,NStack.ustring,System.Boolean) - name: Label(Rect, ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor_Terminal_Gui_Rect_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,NStack.ustring,System.Boolean) - fullName: Terminal.Gui.Label.Label(Terminal.Gui.Rect, NStack.ustring, System.Boolean) - nameWithType: Label.Label(Rect, ustring, Boolean) -- uid: Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,System.Boolean) - name: Label(Rect, Boolean) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor_Terminal_Gui_Rect_System_Boolean_ - commentId: M:Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,System.Boolean) - fullName: Terminal.Gui.Label.Label(Terminal.Gui.Rect, System.Boolean) - nameWithType: Label.Label(Rect, Boolean) -- uid: Terminal.Gui.Label.#ctor* - name: Label - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label__ctor_ - commentId: Overload:Terminal.Gui.Label.#ctor - isSpec: "True" - fullName: Terminal.Gui.Label.Label - nameWithType: Label.Label -- uid: Terminal.Gui.Label.Clicked - name: Clicked - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_Clicked - commentId: E:Terminal.Gui.Label.Clicked - fullName: Terminal.Gui.Label.Clicked - nameWithType: Label.Clicked -- uid: Terminal.Gui.Label.OnClicked - name: OnClicked() - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_OnClicked - commentId: M:Terminal.Gui.Label.OnClicked - fullName: Terminal.Gui.Label.OnClicked() - nameWithType: Label.OnClicked() -- uid: Terminal.Gui.Label.OnClicked* - name: OnClicked - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_OnClicked_ - commentId: Overload:Terminal.Gui.Label.OnClicked - isSpec: "True" - fullName: Terminal.Gui.Label.OnClicked - nameWithType: Label.OnClicked -- uid: Terminal.Gui.Label.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Label.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.Label.OnEnter(Terminal.Gui.View) - nameWithType: Label.OnEnter(View) -- uid: Terminal.Gui.Label.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_OnEnter_ - commentId: Overload:Terminal.Gui.Label.OnEnter - isSpec: "True" - fullName: Terminal.Gui.Label.OnEnter - nameWithType: Label.OnEnter -- uid: Terminal.Gui.Label.OnMouseEvent(Terminal.Gui.MouseEvent) - name: OnMouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_OnMouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Label.OnMouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Label.OnMouseEvent(Terminal.Gui.MouseEvent) - nameWithType: Label.OnMouseEvent(MouseEvent) -- uid: Terminal.Gui.Label.OnMouseEvent* - name: OnMouseEvent - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_OnMouseEvent_ - commentId: Overload:Terminal.Gui.Label.OnMouseEvent - isSpec: "True" - fullName: Terminal.Gui.Label.OnMouseEvent - nameWithType: Label.OnMouseEvent -- uid: Terminal.Gui.Label.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Label.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Label.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: Label.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.Label.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.Label.html#Terminal_Gui_Label_ProcessHotKey_ - commentId: Overload:Terminal.Gui.Label.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.Label.ProcessHotKey - nameWithType: Label.ProcessHotKey -- uid: Terminal.Gui.LayoutStyle - name: LayoutStyle - href: api/Terminal.Gui/Terminal.Gui.LayoutStyle.html - commentId: T:Terminal.Gui.LayoutStyle - fullName: Terminal.Gui.LayoutStyle - nameWithType: LayoutStyle -- uid: Terminal.Gui.LayoutStyle.Absolute - name: Absolute - href: api/Terminal.Gui/Terminal.Gui.LayoutStyle.html#Terminal_Gui_LayoutStyle_Absolute - commentId: F:Terminal.Gui.LayoutStyle.Absolute - fullName: Terminal.Gui.LayoutStyle.Absolute - nameWithType: LayoutStyle.Absolute -- uid: Terminal.Gui.LayoutStyle.Computed - name: Computed - href: api/Terminal.Gui/Terminal.Gui.LayoutStyle.html#Terminal_Gui_LayoutStyle_Computed - commentId: F:Terminal.Gui.LayoutStyle.Computed - fullName: Terminal.Gui.LayoutStyle.Computed - nameWithType: LayoutStyle.Computed -- uid: Terminal.Gui.LineView - name: LineView - href: api/Terminal.Gui/Terminal.Gui.LineView.html - commentId: T:Terminal.Gui.LineView - fullName: Terminal.Gui.LineView - nameWithType: LineView -- uid: Terminal.Gui.LineView.#ctor - name: LineView() - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView__ctor - commentId: M:Terminal.Gui.LineView.#ctor - fullName: Terminal.Gui.LineView.LineView() - nameWithType: LineView.LineView() -- uid: Terminal.Gui.LineView.#ctor(Terminal.Gui.Graphs.Orientation) - name: LineView(Orientation) - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView__ctor_Terminal_Gui_Graphs_Orientation_ - commentId: M:Terminal.Gui.LineView.#ctor(Terminal.Gui.Graphs.Orientation) - fullName: Terminal.Gui.LineView.LineView(Terminal.Gui.Graphs.Orientation) - nameWithType: LineView.LineView(Orientation) -- uid: Terminal.Gui.LineView.#ctor* - name: LineView - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView__ctor_ - commentId: Overload:Terminal.Gui.LineView.#ctor - isSpec: "True" - fullName: Terminal.Gui.LineView.LineView - nameWithType: LineView.LineView -- uid: Terminal.Gui.LineView.EndingAnchor - name: EndingAnchor - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_EndingAnchor - commentId: P:Terminal.Gui.LineView.EndingAnchor - fullName: Terminal.Gui.LineView.EndingAnchor - nameWithType: LineView.EndingAnchor -- uid: Terminal.Gui.LineView.EndingAnchor* - name: EndingAnchor - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_EndingAnchor_ - commentId: Overload:Terminal.Gui.LineView.EndingAnchor - isSpec: "True" - fullName: Terminal.Gui.LineView.EndingAnchor - nameWithType: LineView.EndingAnchor -- uid: Terminal.Gui.LineView.LineRune - name: LineRune - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_LineRune - commentId: P:Terminal.Gui.LineView.LineRune - fullName: Terminal.Gui.LineView.LineRune - nameWithType: LineView.LineRune -- uid: Terminal.Gui.LineView.LineRune* - name: LineRune - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_LineRune_ - commentId: Overload:Terminal.Gui.LineView.LineRune - isSpec: "True" - fullName: Terminal.Gui.LineView.LineRune - nameWithType: LineView.LineRune -- uid: Terminal.Gui.LineView.Orientation - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_Orientation - commentId: P:Terminal.Gui.LineView.Orientation - fullName: Terminal.Gui.LineView.Orientation - nameWithType: LineView.Orientation -- uid: Terminal.Gui.LineView.Orientation* - name: Orientation - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_Orientation_ - commentId: Overload:Terminal.Gui.LineView.Orientation - isSpec: "True" - fullName: Terminal.Gui.LineView.Orientation - nameWithType: LineView.Orientation -- uid: Terminal.Gui.LineView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.LineView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.LineView.Redraw(Terminal.Gui.Rect) - nameWithType: LineView.Redraw(Rect) -- uid: Terminal.Gui.LineView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_Redraw_ - commentId: Overload:Terminal.Gui.LineView.Redraw - isSpec: "True" - fullName: Terminal.Gui.LineView.Redraw - nameWithType: LineView.Redraw -- uid: Terminal.Gui.LineView.StartingAnchor - name: StartingAnchor - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_StartingAnchor - commentId: P:Terminal.Gui.LineView.StartingAnchor - fullName: Terminal.Gui.LineView.StartingAnchor - nameWithType: LineView.StartingAnchor -- uid: Terminal.Gui.LineView.StartingAnchor* - name: StartingAnchor - href: api/Terminal.Gui/Terminal.Gui.LineView.html#Terminal_Gui_LineView_StartingAnchor_ - commentId: Overload:Terminal.Gui.LineView.StartingAnchor - isSpec: "True" - fullName: Terminal.Gui.LineView.StartingAnchor - nameWithType: LineView.StartingAnchor -- uid: Terminal.Gui.ListView - name: ListView - href: api/Terminal.Gui/Terminal.Gui.ListView.html - commentId: T:Terminal.Gui.ListView - fullName: Terminal.Gui.ListView - nameWithType: ListView -- uid: Terminal.Gui.ListView.#ctor - name: ListView() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView__ctor - commentId: M:Terminal.Gui.ListView.#ctor - fullName: Terminal.Gui.ListView.ListView() - nameWithType: ListView.ListView() -- uid: Terminal.Gui.ListView.#ctor(System.Collections.IList) - name: ListView(IList) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView__ctor_System_Collections_IList_ - commentId: M:Terminal.Gui.ListView.#ctor(System.Collections.IList) - fullName: Terminal.Gui.ListView.ListView(System.Collections.IList) - nameWithType: ListView.ListView(IList) -- uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.IListDataSource) - name: ListView(IListDataSource) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView__ctor_Terminal_Gui_IListDataSource_ - commentId: M:Terminal.Gui.ListView.#ctor(Terminal.Gui.IListDataSource) - fullName: Terminal.Gui.ListView.ListView(Terminal.Gui.IListDataSource) - nameWithType: ListView.ListView(IListDataSource) -- uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,System.Collections.IList) - name: ListView(Rect, IList) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView__ctor_Terminal_Gui_Rect_System_Collections_IList_ - commentId: M:Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,System.Collections.IList) - fullName: Terminal.Gui.ListView.ListView(Terminal.Gui.Rect, System.Collections.IList) - nameWithType: ListView.ListView(Rect, IList) -- uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource) - name: ListView(Rect, IListDataSource) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView__ctor_Terminal_Gui_Rect_Terminal_Gui_IListDataSource_ - commentId: M:Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource) - fullName: Terminal.Gui.ListView.ListView(Terminal.Gui.Rect, Terminal.Gui.IListDataSource) - nameWithType: ListView.ListView(Rect, IListDataSource) -- uid: Terminal.Gui.ListView.#ctor* - name: ListView - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView__ctor_ - commentId: Overload:Terminal.Gui.ListView.#ctor - isSpec: "True" - fullName: Terminal.Gui.ListView.ListView - nameWithType: ListView.ListView -- uid: Terminal.Gui.ListView.AllowsAll - name: AllowsAll() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsAll - commentId: M:Terminal.Gui.ListView.AllowsAll - fullName: Terminal.Gui.ListView.AllowsAll() - nameWithType: ListView.AllowsAll() -- uid: Terminal.Gui.ListView.AllowsAll* - name: AllowsAll - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsAll_ - commentId: Overload:Terminal.Gui.ListView.AllowsAll - isSpec: "True" - fullName: Terminal.Gui.ListView.AllowsAll - nameWithType: ListView.AllowsAll -- uid: Terminal.Gui.ListView.AllowsMarking - name: AllowsMarking - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMarking - commentId: P:Terminal.Gui.ListView.AllowsMarking - fullName: Terminal.Gui.ListView.AllowsMarking - nameWithType: ListView.AllowsMarking -- uid: Terminal.Gui.ListView.AllowsMarking* - name: AllowsMarking - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMarking_ - commentId: Overload:Terminal.Gui.ListView.AllowsMarking - isSpec: "True" - fullName: Terminal.Gui.ListView.AllowsMarking - nameWithType: ListView.AllowsMarking -- uid: Terminal.Gui.ListView.AllowsMultipleSelection - name: AllowsMultipleSelection - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMultipleSelection - commentId: P:Terminal.Gui.ListView.AllowsMultipleSelection - fullName: Terminal.Gui.ListView.AllowsMultipleSelection - nameWithType: ListView.AllowsMultipleSelection -- uid: Terminal.Gui.ListView.AllowsMultipleSelection* - name: AllowsMultipleSelection - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMultipleSelection_ - commentId: Overload:Terminal.Gui.ListView.AllowsMultipleSelection - isSpec: "True" - fullName: Terminal.Gui.ListView.AllowsMultipleSelection - nameWithType: ListView.AllowsMultipleSelection -- uid: Terminal.Gui.ListView.LeftItem - name: LeftItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_LeftItem - commentId: P:Terminal.Gui.ListView.LeftItem - fullName: Terminal.Gui.ListView.LeftItem - nameWithType: ListView.LeftItem -- uid: Terminal.Gui.ListView.LeftItem* - name: LeftItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_LeftItem_ - commentId: Overload:Terminal.Gui.ListView.LeftItem - isSpec: "True" - fullName: Terminal.Gui.ListView.LeftItem - nameWithType: ListView.LeftItem -- uid: Terminal.Gui.ListView.MarkUnmarkRow - name: MarkUnmarkRow() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MarkUnmarkRow - commentId: M:Terminal.Gui.ListView.MarkUnmarkRow - fullName: Terminal.Gui.ListView.MarkUnmarkRow() - nameWithType: ListView.MarkUnmarkRow() -- uid: Terminal.Gui.ListView.MarkUnmarkRow* - name: MarkUnmarkRow - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MarkUnmarkRow_ - commentId: Overload:Terminal.Gui.ListView.MarkUnmarkRow - isSpec: "True" - fullName: Terminal.Gui.ListView.MarkUnmarkRow - nameWithType: ListView.MarkUnmarkRow -- uid: Terminal.Gui.ListView.Maxlength - name: Maxlength - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_Maxlength - commentId: P:Terminal.Gui.ListView.Maxlength - fullName: Terminal.Gui.ListView.Maxlength - nameWithType: ListView.Maxlength -- uid: Terminal.Gui.ListView.Maxlength* - name: Maxlength - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_Maxlength_ - commentId: Overload:Terminal.Gui.ListView.Maxlength - isSpec: "True" - fullName: Terminal.Gui.ListView.Maxlength - nameWithType: ListView.Maxlength -- uid: Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: ListView.MouseEvent(MouseEvent) -- uid: Terminal.Gui.ListView.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MouseEvent_ - commentId: Overload:Terminal.Gui.ListView.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.ListView.MouseEvent - nameWithType: ListView.MouseEvent -- uid: Terminal.Gui.ListView.MoveDown - name: MoveDown() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveDown - commentId: M:Terminal.Gui.ListView.MoveDown - fullName: Terminal.Gui.ListView.MoveDown() - nameWithType: ListView.MoveDown() -- uid: Terminal.Gui.ListView.MoveDown* - name: MoveDown - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveDown_ - commentId: Overload:Terminal.Gui.ListView.MoveDown - isSpec: "True" - fullName: Terminal.Gui.ListView.MoveDown - nameWithType: ListView.MoveDown -- uid: Terminal.Gui.ListView.MoveEnd - name: MoveEnd() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveEnd - commentId: M:Terminal.Gui.ListView.MoveEnd - fullName: Terminal.Gui.ListView.MoveEnd() - nameWithType: ListView.MoveEnd() -- uid: Terminal.Gui.ListView.MoveEnd* - name: MoveEnd - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveEnd_ - commentId: Overload:Terminal.Gui.ListView.MoveEnd - isSpec: "True" - fullName: Terminal.Gui.ListView.MoveEnd - nameWithType: ListView.MoveEnd -- uid: Terminal.Gui.ListView.MoveHome - name: MoveHome() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveHome - commentId: M:Terminal.Gui.ListView.MoveHome - fullName: Terminal.Gui.ListView.MoveHome() - nameWithType: ListView.MoveHome() -- uid: Terminal.Gui.ListView.MoveHome* - name: MoveHome - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveHome_ - commentId: Overload:Terminal.Gui.ListView.MoveHome - isSpec: "True" - fullName: Terminal.Gui.ListView.MoveHome - nameWithType: ListView.MoveHome -- uid: Terminal.Gui.ListView.MovePageDown - name: MovePageDown() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MovePageDown - commentId: M:Terminal.Gui.ListView.MovePageDown - fullName: Terminal.Gui.ListView.MovePageDown() - nameWithType: ListView.MovePageDown() -- uid: Terminal.Gui.ListView.MovePageDown* - name: MovePageDown - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MovePageDown_ - commentId: Overload:Terminal.Gui.ListView.MovePageDown - isSpec: "True" - fullName: Terminal.Gui.ListView.MovePageDown - nameWithType: ListView.MovePageDown -- uid: Terminal.Gui.ListView.MovePageUp - name: MovePageUp() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MovePageUp - commentId: M:Terminal.Gui.ListView.MovePageUp - fullName: Terminal.Gui.ListView.MovePageUp() - nameWithType: ListView.MovePageUp() -- uid: Terminal.Gui.ListView.MovePageUp* - name: MovePageUp - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MovePageUp_ - commentId: Overload:Terminal.Gui.ListView.MovePageUp - isSpec: "True" - fullName: Terminal.Gui.ListView.MovePageUp - nameWithType: ListView.MovePageUp -- uid: Terminal.Gui.ListView.MoveUp - name: MoveUp() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveUp - commentId: M:Terminal.Gui.ListView.MoveUp - fullName: Terminal.Gui.ListView.MoveUp() - nameWithType: ListView.MoveUp() -- uid: Terminal.Gui.ListView.MoveUp* - name: MoveUp - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_MoveUp_ - commentId: Overload:Terminal.Gui.ListView.MoveUp - isSpec: "True" - fullName: Terminal.Gui.ListView.MoveUp - nameWithType: ListView.MoveUp -- uid: Terminal.Gui.ListView.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ListView.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.ListView.OnEnter(Terminal.Gui.View) - nameWithType: ListView.OnEnter(View) -- uid: Terminal.Gui.ListView.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnEnter_ - commentId: Overload:Terminal.Gui.ListView.OnEnter - isSpec: "True" - fullName: Terminal.Gui.ListView.OnEnter - nameWithType: ListView.OnEnter -- uid: Terminal.Gui.ListView.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ListView.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.ListView.OnLeave(Terminal.Gui.View) - nameWithType: ListView.OnLeave(View) -- uid: Terminal.Gui.ListView.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnLeave_ - commentId: Overload:Terminal.Gui.ListView.OnLeave - isSpec: "True" - fullName: Terminal.Gui.ListView.OnLeave - nameWithType: ListView.OnLeave -- uid: Terminal.Gui.ListView.OnOpenSelectedItem - name: OnOpenSelectedItem() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnOpenSelectedItem - commentId: M:Terminal.Gui.ListView.OnOpenSelectedItem - fullName: Terminal.Gui.ListView.OnOpenSelectedItem() - nameWithType: ListView.OnOpenSelectedItem() -- uid: Terminal.Gui.ListView.OnOpenSelectedItem* - name: OnOpenSelectedItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnOpenSelectedItem_ - commentId: Overload:Terminal.Gui.ListView.OnOpenSelectedItem - isSpec: "True" - fullName: Terminal.Gui.ListView.OnOpenSelectedItem - nameWithType: ListView.OnOpenSelectedItem -- uid: Terminal.Gui.ListView.OnRowRender(Terminal.Gui.ListViewRowEventArgs) - name: OnRowRender(ListViewRowEventArgs) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnRowRender_Terminal_Gui_ListViewRowEventArgs_ - commentId: M:Terminal.Gui.ListView.OnRowRender(Terminal.Gui.ListViewRowEventArgs) - fullName: Terminal.Gui.ListView.OnRowRender(Terminal.Gui.ListViewRowEventArgs) - nameWithType: ListView.OnRowRender(ListViewRowEventArgs) -- uid: Terminal.Gui.ListView.OnRowRender* - name: OnRowRender - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnRowRender_ - commentId: Overload:Terminal.Gui.ListView.OnRowRender - isSpec: "True" - fullName: Terminal.Gui.ListView.OnRowRender - nameWithType: ListView.OnRowRender -- uid: Terminal.Gui.ListView.OnSelectedChanged - name: OnSelectedChanged() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnSelectedChanged - commentId: M:Terminal.Gui.ListView.OnSelectedChanged - fullName: Terminal.Gui.ListView.OnSelectedChanged() - nameWithType: ListView.OnSelectedChanged() -- uid: Terminal.Gui.ListView.OnSelectedChanged* - name: OnSelectedChanged - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OnSelectedChanged_ - commentId: Overload:Terminal.Gui.ListView.OnSelectedChanged - isSpec: "True" - fullName: Terminal.Gui.ListView.OnSelectedChanged - nameWithType: ListView.OnSelectedChanged -- uid: Terminal.Gui.ListView.OpenSelectedItem - name: OpenSelectedItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_OpenSelectedItem - commentId: E:Terminal.Gui.ListView.OpenSelectedItem - fullName: Terminal.Gui.ListView.OpenSelectedItem - nameWithType: ListView.OpenSelectedItem -- uid: Terminal.Gui.ListView.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_PositionCursor - commentId: M:Terminal.Gui.ListView.PositionCursor - fullName: Terminal.Gui.ListView.PositionCursor() - nameWithType: ListView.PositionCursor() -- uid: Terminal.Gui.ListView.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_PositionCursor_ - commentId: Overload:Terminal.Gui.ListView.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.ListView.PositionCursor - nameWithType: ListView.PositionCursor -- uid: Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: ListView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.ListView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ProcessKey_ - commentId: Overload:Terminal.Gui.ListView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.ListView.ProcessKey - nameWithType: ListView.ProcessKey -- uid: Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect) - nameWithType: ListView.Redraw(Rect) -- uid: Terminal.Gui.ListView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_Redraw_ - commentId: Overload:Terminal.Gui.ListView.Redraw - isSpec: "True" - fullName: Terminal.Gui.ListView.Redraw - nameWithType: ListView.Redraw -- uid: Terminal.Gui.ListView.RowRender - name: RowRender - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_RowRender - commentId: E:Terminal.Gui.ListView.RowRender - fullName: Terminal.Gui.ListView.RowRender - nameWithType: ListView.RowRender -- uid: Terminal.Gui.ListView.ScrollDown(System.Int32) - name: ScrollDown(Int32) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollDown_System_Int32_ - commentId: M:Terminal.Gui.ListView.ScrollDown(System.Int32) - fullName: Terminal.Gui.ListView.ScrollDown(System.Int32) - nameWithType: ListView.ScrollDown(Int32) -- uid: Terminal.Gui.ListView.ScrollDown* - name: ScrollDown - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollDown_ - commentId: Overload:Terminal.Gui.ListView.ScrollDown - isSpec: "True" - fullName: Terminal.Gui.ListView.ScrollDown - nameWithType: ListView.ScrollDown -- uid: Terminal.Gui.ListView.ScrollLeft(System.Int32) - name: ScrollLeft(Int32) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollLeft_System_Int32_ - commentId: M:Terminal.Gui.ListView.ScrollLeft(System.Int32) - fullName: Terminal.Gui.ListView.ScrollLeft(System.Int32) - nameWithType: ListView.ScrollLeft(Int32) -- uid: Terminal.Gui.ListView.ScrollLeft* - name: ScrollLeft - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollLeft_ - commentId: Overload:Terminal.Gui.ListView.ScrollLeft - isSpec: "True" - fullName: Terminal.Gui.ListView.ScrollLeft - nameWithType: ListView.ScrollLeft -- uid: Terminal.Gui.ListView.ScrollRight(System.Int32) - name: ScrollRight(Int32) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollRight_System_Int32_ - commentId: M:Terminal.Gui.ListView.ScrollRight(System.Int32) - fullName: Terminal.Gui.ListView.ScrollRight(System.Int32) - nameWithType: ListView.ScrollRight(Int32) -- uid: Terminal.Gui.ListView.ScrollRight* - name: ScrollRight - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollRight_ - commentId: Overload:Terminal.Gui.ListView.ScrollRight - isSpec: "True" - fullName: Terminal.Gui.ListView.ScrollRight - nameWithType: ListView.ScrollRight -- uid: Terminal.Gui.ListView.ScrollUp(System.Int32) - name: ScrollUp(Int32) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollUp_System_Int32_ - commentId: M:Terminal.Gui.ListView.ScrollUp(System.Int32) - fullName: Terminal.Gui.ListView.ScrollUp(System.Int32) - nameWithType: ListView.ScrollUp(Int32) -- uid: Terminal.Gui.ListView.ScrollUp* - name: ScrollUp - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_ScrollUp_ - commentId: Overload:Terminal.Gui.ListView.ScrollUp - isSpec: "True" - fullName: Terminal.Gui.ListView.ScrollUp - nameWithType: ListView.ScrollUp -- uid: Terminal.Gui.ListView.SelectedItem - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SelectedItem - commentId: P:Terminal.Gui.ListView.SelectedItem - fullName: Terminal.Gui.ListView.SelectedItem - nameWithType: ListView.SelectedItem -- uid: Terminal.Gui.ListView.SelectedItem* - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SelectedItem_ - commentId: Overload:Terminal.Gui.ListView.SelectedItem - isSpec: "True" - fullName: Terminal.Gui.ListView.SelectedItem - nameWithType: ListView.SelectedItem -- uid: Terminal.Gui.ListView.SelectedItemChanged - name: SelectedItemChanged - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SelectedItemChanged - commentId: E:Terminal.Gui.ListView.SelectedItemChanged - fullName: Terminal.Gui.ListView.SelectedItemChanged - nameWithType: ListView.SelectedItemChanged -- uid: Terminal.Gui.ListView.SetSource(System.Collections.IList) - name: SetSource(IList) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SetSource_System_Collections_IList_ - commentId: M:Terminal.Gui.ListView.SetSource(System.Collections.IList) - fullName: Terminal.Gui.ListView.SetSource(System.Collections.IList) - nameWithType: ListView.SetSource(IList) -- uid: Terminal.Gui.ListView.SetSource* - name: SetSource - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SetSource_ - commentId: Overload:Terminal.Gui.ListView.SetSource - isSpec: "True" - fullName: Terminal.Gui.ListView.SetSource - nameWithType: ListView.SetSource -- uid: Terminal.Gui.ListView.SetSourceAsync(System.Collections.IList) - name: SetSourceAsync(IList) - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SetSourceAsync_System_Collections_IList_ - commentId: M:Terminal.Gui.ListView.SetSourceAsync(System.Collections.IList) - fullName: Terminal.Gui.ListView.SetSourceAsync(System.Collections.IList) - nameWithType: ListView.SetSourceAsync(IList) -- uid: Terminal.Gui.ListView.SetSourceAsync* - name: SetSourceAsync - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_SetSourceAsync_ - commentId: Overload:Terminal.Gui.ListView.SetSourceAsync - isSpec: "True" - fullName: Terminal.Gui.ListView.SetSourceAsync - nameWithType: ListView.SetSourceAsync -- uid: Terminal.Gui.ListView.Source - name: Source - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_Source - commentId: P:Terminal.Gui.ListView.Source - fullName: Terminal.Gui.ListView.Source - nameWithType: ListView.Source -- uid: Terminal.Gui.ListView.Source* - name: Source - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_Source_ - commentId: Overload:Terminal.Gui.ListView.Source - isSpec: "True" - fullName: Terminal.Gui.ListView.Source - nameWithType: ListView.Source -- uid: Terminal.Gui.ListView.TopItem - name: TopItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_TopItem - commentId: P:Terminal.Gui.ListView.TopItem - fullName: Terminal.Gui.ListView.TopItem - nameWithType: ListView.TopItem -- uid: Terminal.Gui.ListView.TopItem* - name: TopItem - href: api/Terminal.Gui/Terminal.Gui.ListView.html#Terminal_Gui_ListView_TopItem_ - commentId: Overload:Terminal.Gui.ListView.TopItem - isSpec: "True" - fullName: Terminal.Gui.ListView.TopItem - nameWithType: ListView.TopItem -- uid: Terminal.Gui.ListViewItemEventArgs - name: ListViewItemEventArgs - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html - commentId: T:Terminal.Gui.ListViewItemEventArgs - fullName: Terminal.Gui.ListViewItemEventArgs - nameWithType: ListViewItemEventArgs -- uid: Terminal.Gui.ListViewItemEventArgs.#ctor(System.Int32,System.Object) - name: ListViewItemEventArgs(Int32, Object) - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html#Terminal_Gui_ListViewItemEventArgs__ctor_System_Int32_System_Object_ - commentId: M:Terminal.Gui.ListViewItemEventArgs.#ctor(System.Int32,System.Object) - fullName: Terminal.Gui.ListViewItemEventArgs.ListViewItemEventArgs(System.Int32, System.Object) - nameWithType: ListViewItemEventArgs.ListViewItemEventArgs(Int32, Object) -- uid: Terminal.Gui.ListViewItemEventArgs.#ctor* - name: ListViewItemEventArgs - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html#Terminal_Gui_ListViewItemEventArgs__ctor_ - commentId: Overload:Terminal.Gui.ListViewItemEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.ListViewItemEventArgs.ListViewItemEventArgs - nameWithType: ListViewItemEventArgs.ListViewItemEventArgs -- uid: Terminal.Gui.ListViewItemEventArgs.Item - name: Item - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html#Terminal_Gui_ListViewItemEventArgs_Item - commentId: P:Terminal.Gui.ListViewItemEventArgs.Item - fullName: Terminal.Gui.ListViewItemEventArgs.Item - nameWithType: ListViewItemEventArgs.Item -- uid: Terminal.Gui.ListViewItemEventArgs.Item* - name: Item - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html#Terminal_Gui_ListViewItemEventArgs_Item_ - commentId: Overload:Terminal.Gui.ListViewItemEventArgs.Item - isSpec: "True" - fullName: Terminal.Gui.ListViewItemEventArgs.Item - nameWithType: ListViewItemEventArgs.Item -- uid: Terminal.Gui.ListViewItemEventArgs.Value - name: Value - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html#Terminal_Gui_ListViewItemEventArgs_Value - commentId: P:Terminal.Gui.ListViewItemEventArgs.Value - fullName: Terminal.Gui.ListViewItemEventArgs.Value - nameWithType: ListViewItemEventArgs.Value -- uid: Terminal.Gui.ListViewItemEventArgs.Value* - name: Value - href: api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html#Terminal_Gui_ListViewItemEventArgs_Value_ - commentId: Overload:Terminal.Gui.ListViewItemEventArgs.Value - isSpec: "True" - fullName: Terminal.Gui.ListViewItemEventArgs.Value - nameWithType: ListViewItemEventArgs.Value -- uid: Terminal.Gui.ListViewRowEventArgs - name: ListViewRowEventArgs - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html - commentId: T:Terminal.Gui.ListViewRowEventArgs - fullName: Terminal.Gui.ListViewRowEventArgs - nameWithType: ListViewRowEventArgs -- uid: Terminal.Gui.ListViewRowEventArgs.#ctor(System.Int32) - name: ListViewRowEventArgs(Int32) - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html#Terminal_Gui_ListViewRowEventArgs__ctor_System_Int32_ - commentId: M:Terminal.Gui.ListViewRowEventArgs.#ctor(System.Int32) - fullName: Terminal.Gui.ListViewRowEventArgs.ListViewRowEventArgs(System.Int32) - nameWithType: ListViewRowEventArgs.ListViewRowEventArgs(Int32) -- uid: Terminal.Gui.ListViewRowEventArgs.#ctor* - name: ListViewRowEventArgs - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html#Terminal_Gui_ListViewRowEventArgs__ctor_ - commentId: Overload:Terminal.Gui.ListViewRowEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.ListViewRowEventArgs.ListViewRowEventArgs - nameWithType: ListViewRowEventArgs.ListViewRowEventArgs -- uid: Terminal.Gui.ListViewRowEventArgs.Row - name: Row - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html#Terminal_Gui_ListViewRowEventArgs_Row - commentId: P:Terminal.Gui.ListViewRowEventArgs.Row - fullName: Terminal.Gui.ListViewRowEventArgs.Row - nameWithType: ListViewRowEventArgs.Row -- uid: Terminal.Gui.ListViewRowEventArgs.Row* - name: Row - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html#Terminal_Gui_ListViewRowEventArgs_Row_ - commentId: Overload:Terminal.Gui.ListViewRowEventArgs.Row - isSpec: "True" - fullName: Terminal.Gui.ListViewRowEventArgs.Row - nameWithType: ListViewRowEventArgs.Row -- uid: Terminal.Gui.ListViewRowEventArgs.RowAttribute - name: RowAttribute - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html#Terminal_Gui_ListViewRowEventArgs_RowAttribute - commentId: P:Terminal.Gui.ListViewRowEventArgs.RowAttribute - fullName: Terminal.Gui.ListViewRowEventArgs.RowAttribute - nameWithType: ListViewRowEventArgs.RowAttribute -- uid: Terminal.Gui.ListViewRowEventArgs.RowAttribute* - name: RowAttribute - href: api/Terminal.Gui/Terminal.Gui.ListViewRowEventArgs.html#Terminal_Gui_ListViewRowEventArgs_RowAttribute_ - commentId: Overload:Terminal.Gui.ListViewRowEventArgs.RowAttribute - isSpec: "True" - fullName: Terminal.Gui.ListViewRowEventArgs.RowAttribute - nameWithType: ListViewRowEventArgs.RowAttribute -- uid: Terminal.Gui.ListWrapper - name: ListWrapper - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html - commentId: T:Terminal.Gui.ListWrapper - fullName: Terminal.Gui.ListWrapper - nameWithType: ListWrapper -- uid: Terminal.Gui.ListWrapper.#ctor(System.Collections.IList) - name: ListWrapper(IList) - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper__ctor_System_Collections_IList_ - commentId: M:Terminal.Gui.ListWrapper.#ctor(System.Collections.IList) - fullName: Terminal.Gui.ListWrapper.ListWrapper(System.Collections.IList) - nameWithType: ListWrapper.ListWrapper(IList) -- uid: Terminal.Gui.ListWrapper.#ctor* - name: ListWrapper - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper__ctor_ - commentId: Overload:Terminal.Gui.ListWrapper.#ctor - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.ListWrapper - nameWithType: ListWrapper.ListWrapper -- uid: Terminal.Gui.ListWrapper.Count - name: Count - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_Count - commentId: P:Terminal.Gui.ListWrapper.Count - fullName: Terminal.Gui.ListWrapper.Count - nameWithType: ListWrapper.Count -- uid: Terminal.Gui.ListWrapper.Count* - name: Count - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_Count_ - commentId: Overload:Terminal.Gui.ListWrapper.Count - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.Count - nameWithType: ListWrapper.Count -- uid: Terminal.Gui.ListWrapper.IsMarked(System.Int32) - name: IsMarked(Int32) - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_IsMarked_System_Int32_ - commentId: M:Terminal.Gui.ListWrapper.IsMarked(System.Int32) - fullName: Terminal.Gui.ListWrapper.IsMarked(System.Int32) - nameWithType: ListWrapper.IsMarked(Int32) -- uid: Terminal.Gui.ListWrapper.IsMarked* - name: IsMarked - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_IsMarked_ - commentId: Overload:Terminal.Gui.ListWrapper.IsMarked - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.IsMarked - nameWithType: ListWrapper.IsMarked -- uid: Terminal.Gui.ListWrapper.Length - name: Length - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_Length - commentId: P:Terminal.Gui.ListWrapper.Length - fullName: Terminal.Gui.ListWrapper.Length - nameWithType: ListWrapper.Length -- uid: Terminal.Gui.ListWrapper.Length* - name: Length - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_Length_ - commentId: Overload:Terminal.Gui.ListWrapper.Length - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.Length - nameWithType: ListWrapper.Length -- uid: Terminal.Gui.ListWrapper.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - name: Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_Render_Terminal_Gui_ListView_Terminal_Gui_ConsoleDriver_System_Boolean_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.ListWrapper.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.ListWrapper.Render(Terminal.Gui.ListView, Terminal.Gui.ConsoleDriver, System.Boolean, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: ListWrapper.Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.ListWrapper.Render* - name: Render - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_Render_ - commentId: Overload:Terminal.Gui.ListWrapper.Render - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.Render - nameWithType: ListWrapper.Render -- uid: Terminal.Gui.ListWrapper.SetMark(System.Int32,System.Boolean) - name: SetMark(Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_SetMark_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.ListWrapper.SetMark(System.Int32,System.Boolean) - fullName: Terminal.Gui.ListWrapper.SetMark(System.Int32, System.Boolean) - nameWithType: ListWrapper.SetMark(Int32, Boolean) -- uid: Terminal.Gui.ListWrapper.SetMark* - name: SetMark - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_SetMark_ - commentId: Overload:Terminal.Gui.ListWrapper.SetMark - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.SetMark - nameWithType: ListWrapper.SetMark -- uid: Terminal.Gui.ListWrapper.ToList - name: ToList() - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_ToList - commentId: M:Terminal.Gui.ListWrapper.ToList - fullName: Terminal.Gui.ListWrapper.ToList() - nameWithType: ListWrapper.ToList() -- uid: Terminal.Gui.ListWrapper.ToList* - name: ToList - href: api/Terminal.Gui/Terminal.Gui.ListWrapper.html#Terminal_Gui_ListWrapper_ToList_ - commentId: Overload:Terminal.Gui.ListWrapper.ToList - isSpec: "True" - fullName: Terminal.Gui.ListWrapper.ToList - nameWithType: ListWrapper.ToList -- uid: Terminal.Gui.MainLoop - name: MainLoop - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html - commentId: T:Terminal.Gui.MainLoop - fullName: Terminal.Gui.MainLoop - nameWithType: MainLoop -- uid: Terminal.Gui.MainLoop.#ctor(Terminal.Gui.IMainLoopDriver) - name: MainLoop(IMainLoopDriver) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop__ctor_Terminal_Gui_IMainLoopDriver_ - commentId: M:Terminal.Gui.MainLoop.#ctor(Terminal.Gui.IMainLoopDriver) - fullName: Terminal.Gui.MainLoop.MainLoop(Terminal.Gui.IMainLoopDriver) - nameWithType: MainLoop.MainLoop(IMainLoopDriver) -- uid: Terminal.Gui.MainLoop.#ctor* - name: MainLoop - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop__ctor_ - commentId: Overload:Terminal.Gui.MainLoop.#ctor - isSpec: "True" - fullName: Terminal.Gui.MainLoop.MainLoop - nameWithType: MainLoop.MainLoop -- uid: Terminal.Gui.MainLoop.AddIdle(System.Func{System.Boolean}) - name: AddIdle(Func) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_AddIdle_System_Func_System_Boolean__ - commentId: M:Terminal.Gui.MainLoop.AddIdle(System.Func{System.Boolean}) - name.vb: AddIdle(Func(Of Boolean)) - fullName: Terminal.Gui.MainLoop.AddIdle(System.Func) - fullName.vb: Terminal.Gui.MainLoop.AddIdle(System.Func(Of System.Boolean)) - nameWithType: MainLoop.AddIdle(Func) - nameWithType.vb: MainLoop.AddIdle(Func(Of Boolean)) -- uid: Terminal.Gui.MainLoop.AddIdle* - name: AddIdle - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_AddIdle_ - commentId: Overload:Terminal.Gui.MainLoop.AddIdle - isSpec: "True" - fullName: Terminal.Gui.MainLoop.AddIdle - nameWithType: MainLoop.AddIdle -- uid: Terminal.Gui.MainLoop.AddTimeout(System.TimeSpan,System.Func{Terminal.Gui.MainLoop,System.Boolean}) - name: AddTimeout(TimeSpan, Func) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_AddTimeout_System_TimeSpan_System_Func_Terminal_Gui_MainLoop_System_Boolean__ - commentId: M:Terminal.Gui.MainLoop.AddTimeout(System.TimeSpan,System.Func{Terminal.Gui.MainLoop,System.Boolean}) - name.vb: AddTimeout(TimeSpan, Func(Of MainLoop, Boolean)) - fullName: Terminal.Gui.MainLoop.AddTimeout(System.TimeSpan, System.Func) - fullName.vb: Terminal.Gui.MainLoop.AddTimeout(System.TimeSpan, System.Func(Of Terminal.Gui.MainLoop, System.Boolean)) - nameWithType: MainLoop.AddTimeout(TimeSpan, Func) - nameWithType.vb: MainLoop.AddTimeout(TimeSpan, Func(Of MainLoop, Boolean)) -- uid: Terminal.Gui.MainLoop.AddTimeout* - name: AddTimeout - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_AddTimeout_ - commentId: Overload:Terminal.Gui.MainLoop.AddTimeout - isSpec: "True" - fullName: Terminal.Gui.MainLoop.AddTimeout - nameWithType: MainLoop.AddTimeout -- uid: Terminal.Gui.MainLoop.Driver - name: Driver - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Driver - commentId: P:Terminal.Gui.MainLoop.Driver - fullName: Terminal.Gui.MainLoop.Driver - nameWithType: MainLoop.Driver -- uid: Terminal.Gui.MainLoop.Driver* - name: Driver - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Driver_ - commentId: Overload:Terminal.Gui.MainLoop.Driver - isSpec: "True" - fullName: Terminal.Gui.MainLoop.Driver - nameWithType: MainLoop.Driver -- uid: Terminal.Gui.MainLoop.EventsPending(System.Boolean) - name: EventsPending(Boolean) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_EventsPending_System_Boolean_ - commentId: M:Terminal.Gui.MainLoop.EventsPending(System.Boolean) - fullName: Terminal.Gui.MainLoop.EventsPending(System.Boolean) - nameWithType: MainLoop.EventsPending(Boolean) -- uid: Terminal.Gui.MainLoop.EventsPending* - name: EventsPending - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_EventsPending_ - commentId: Overload:Terminal.Gui.MainLoop.EventsPending - isSpec: "True" - fullName: Terminal.Gui.MainLoop.EventsPending - nameWithType: MainLoop.EventsPending -- uid: Terminal.Gui.MainLoop.IdleHandlers - name: IdleHandlers - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_IdleHandlers - commentId: P:Terminal.Gui.MainLoop.IdleHandlers - fullName: Terminal.Gui.MainLoop.IdleHandlers - nameWithType: MainLoop.IdleHandlers -- uid: Terminal.Gui.MainLoop.IdleHandlers* - name: IdleHandlers - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_IdleHandlers_ - commentId: Overload:Terminal.Gui.MainLoop.IdleHandlers - isSpec: "True" - fullName: Terminal.Gui.MainLoop.IdleHandlers - nameWithType: MainLoop.IdleHandlers -- uid: Terminal.Gui.MainLoop.Invoke(System.Action) - name: Invoke(Action) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Invoke_System_Action_ - commentId: M:Terminal.Gui.MainLoop.Invoke(System.Action) - fullName: Terminal.Gui.MainLoop.Invoke(System.Action) - nameWithType: MainLoop.Invoke(Action) -- uid: Terminal.Gui.MainLoop.Invoke* - name: Invoke - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Invoke_ - commentId: Overload:Terminal.Gui.MainLoop.Invoke - isSpec: "True" - fullName: Terminal.Gui.MainLoop.Invoke - nameWithType: MainLoop.Invoke -- uid: Terminal.Gui.MainLoop.MainIteration - name: MainIteration() - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_MainIteration - commentId: M:Terminal.Gui.MainLoop.MainIteration - fullName: Terminal.Gui.MainLoop.MainIteration() - nameWithType: MainLoop.MainIteration() -- uid: Terminal.Gui.MainLoop.MainIteration* - name: MainIteration - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_MainIteration_ - commentId: Overload:Terminal.Gui.MainLoop.MainIteration - isSpec: "True" - fullName: Terminal.Gui.MainLoop.MainIteration - nameWithType: MainLoop.MainIteration -- uid: Terminal.Gui.MainLoop.RemoveIdle(System.Func{System.Boolean}) - name: RemoveIdle(Func) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_RemoveIdle_System_Func_System_Boolean__ - commentId: M:Terminal.Gui.MainLoop.RemoveIdle(System.Func{System.Boolean}) - name.vb: RemoveIdle(Func(Of Boolean)) - fullName: Terminal.Gui.MainLoop.RemoveIdle(System.Func) - fullName.vb: Terminal.Gui.MainLoop.RemoveIdle(System.Func(Of System.Boolean)) - nameWithType: MainLoop.RemoveIdle(Func) - nameWithType.vb: MainLoop.RemoveIdle(Func(Of Boolean)) -- uid: Terminal.Gui.MainLoop.RemoveIdle* - name: RemoveIdle - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_RemoveIdle_ - commentId: Overload:Terminal.Gui.MainLoop.RemoveIdle - isSpec: "True" - fullName: Terminal.Gui.MainLoop.RemoveIdle - nameWithType: MainLoop.RemoveIdle -- uid: Terminal.Gui.MainLoop.RemoveTimeout(System.Object) - name: RemoveTimeout(Object) - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_RemoveTimeout_System_Object_ - commentId: M:Terminal.Gui.MainLoop.RemoveTimeout(System.Object) - fullName: Terminal.Gui.MainLoop.RemoveTimeout(System.Object) - nameWithType: MainLoop.RemoveTimeout(Object) -- uid: Terminal.Gui.MainLoop.RemoveTimeout* - name: RemoveTimeout - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_RemoveTimeout_ - commentId: Overload:Terminal.Gui.MainLoop.RemoveTimeout - isSpec: "True" - fullName: Terminal.Gui.MainLoop.RemoveTimeout - nameWithType: MainLoop.RemoveTimeout -- uid: Terminal.Gui.MainLoop.Run - name: Run() - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Run - commentId: M:Terminal.Gui.MainLoop.Run - fullName: Terminal.Gui.MainLoop.Run() - nameWithType: MainLoop.Run() -- uid: Terminal.Gui.MainLoop.Run* - name: Run - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Run_ - commentId: Overload:Terminal.Gui.MainLoop.Run - isSpec: "True" - fullName: Terminal.Gui.MainLoop.Run - nameWithType: MainLoop.Run -- uid: Terminal.Gui.MainLoop.Stop - name: Stop() - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Stop - commentId: M:Terminal.Gui.MainLoop.Stop - fullName: Terminal.Gui.MainLoop.Stop() - nameWithType: MainLoop.Stop() -- uid: Terminal.Gui.MainLoop.Stop* - name: Stop - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Stop_ - commentId: Overload:Terminal.Gui.MainLoop.Stop - isSpec: "True" - fullName: Terminal.Gui.MainLoop.Stop - nameWithType: MainLoop.Stop -- uid: Terminal.Gui.MainLoop.Timeout - name: MainLoop.Timeout - href: api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html - commentId: T:Terminal.Gui.MainLoop.Timeout - fullName: Terminal.Gui.MainLoop.Timeout - nameWithType: MainLoop.Timeout -- uid: Terminal.Gui.MainLoop.Timeout.Callback - name: Callback - href: api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html#Terminal_Gui_MainLoop_Timeout_Callback - commentId: F:Terminal.Gui.MainLoop.Timeout.Callback - fullName: Terminal.Gui.MainLoop.Timeout.Callback - nameWithType: MainLoop.Timeout.Callback -- uid: Terminal.Gui.MainLoop.Timeout.Span - name: Span - href: api/Terminal.Gui/Terminal.Gui.MainLoop.Timeout.html#Terminal_Gui_MainLoop_Timeout_Span - commentId: F:Terminal.Gui.MainLoop.Timeout.Span - fullName: Terminal.Gui.MainLoop.Timeout.Span - nameWithType: MainLoop.Timeout.Span -- uid: Terminal.Gui.MainLoop.TimeoutAdded - name: TimeoutAdded - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_TimeoutAdded - commentId: E:Terminal.Gui.MainLoop.TimeoutAdded - fullName: Terminal.Gui.MainLoop.TimeoutAdded - nameWithType: MainLoop.TimeoutAdded -- uid: Terminal.Gui.MainLoop.Timeouts - name: Timeouts - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Timeouts - commentId: P:Terminal.Gui.MainLoop.Timeouts - fullName: Terminal.Gui.MainLoop.Timeouts - nameWithType: MainLoop.Timeouts -- uid: Terminal.Gui.MainLoop.Timeouts* - name: Timeouts - href: api/Terminal.Gui/Terminal.Gui.MainLoop.html#Terminal_Gui_MainLoop_Timeouts_ - commentId: Overload:Terminal.Gui.MainLoop.Timeouts - isSpec: "True" - fullName: Terminal.Gui.MainLoop.Timeouts - nameWithType: MainLoop.Timeouts -- uid: Terminal.Gui.MenuBar - name: MenuBar - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html - commentId: T:Terminal.Gui.MenuBar - fullName: Terminal.Gui.MenuBar - nameWithType: MenuBar -- uid: Terminal.Gui.MenuBar.#ctor - name: MenuBar() - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar__ctor - commentId: M:Terminal.Gui.MenuBar.#ctor - fullName: Terminal.Gui.MenuBar.MenuBar() - nameWithType: MenuBar.MenuBar() -- uid: Terminal.Gui.MenuBar.#ctor(Terminal.Gui.MenuBarItem[]) - name: MenuBar(MenuBarItem[]) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar__ctor_Terminal_Gui_MenuBarItem___ - commentId: M:Terminal.Gui.MenuBar.#ctor(Terminal.Gui.MenuBarItem[]) - name.vb: MenuBar(MenuBarItem()) - fullName: Terminal.Gui.MenuBar.MenuBar(Terminal.Gui.MenuBarItem[]) - fullName.vb: Terminal.Gui.MenuBar.MenuBar(Terminal.Gui.MenuBarItem()) - nameWithType: MenuBar.MenuBar(MenuBarItem[]) - nameWithType.vb: MenuBar.MenuBar(MenuBarItem()) -- uid: Terminal.Gui.MenuBar.#ctor* - name: MenuBar - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar__ctor_ - commentId: Overload:Terminal.Gui.MenuBar.#ctor - isSpec: "True" - fullName: Terminal.Gui.MenuBar.MenuBar - nameWithType: MenuBar.MenuBar -- uid: Terminal.Gui.MenuBar.CloseMenu(System.Boolean) - name: CloseMenu(Boolean) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_CloseMenu_System_Boolean_ - commentId: M:Terminal.Gui.MenuBar.CloseMenu(System.Boolean) - fullName: Terminal.Gui.MenuBar.CloseMenu(System.Boolean) - nameWithType: MenuBar.CloseMenu(Boolean) -- uid: Terminal.Gui.MenuBar.CloseMenu* - name: CloseMenu - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_CloseMenu_ - commentId: Overload:Terminal.Gui.MenuBar.CloseMenu - isSpec: "True" - fullName: Terminal.Gui.MenuBar.CloseMenu - nameWithType: MenuBar.CloseMenu -- uid: Terminal.Gui.MenuBar.HotKeySpecifier - name: HotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_HotKeySpecifier - commentId: P:Terminal.Gui.MenuBar.HotKeySpecifier - fullName: Terminal.Gui.MenuBar.HotKeySpecifier - nameWithType: MenuBar.HotKeySpecifier -- uid: Terminal.Gui.MenuBar.HotKeySpecifier* - name: HotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_HotKeySpecifier_ - commentId: Overload:Terminal.Gui.MenuBar.HotKeySpecifier - isSpec: "True" - fullName: Terminal.Gui.MenuBar.HotKeySpecifier - nameWithType: MenuBar.HotKeySpecifier -- uid: Terminal.Gui.MenuBar.IsMenuOpen - name: IsMenuOpen - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_IsMenuOpen - commentId: P:Terminal.Gui.MenuBar.IsMenuOpen - fullName: Terminal.Gui.MenuBar.IsMenuOpen - nameWithType: MenuBar.IsMenuOpen -- uid: Terminal.Gui.MenuBar.IsMenuOpen* - name: IsMenuOpen - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_IsMenuOpen_ - commentId: Overload:Terminal.Gui.MenuBar.IsMenuOpen - isSpec: "True" - fullName: Terminal.Gui.MenuBar.IsMenuOpen - nameWithType: MenuBar.IsMenuOpen -- uid: Terminal.Gui.MenuBar.LastFocused - name: LastFocused - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_LastFocused - commentId: P:Terminal.Gui.MenuBar.LastFocused - fullName: Terminal.Gui.MenuBar.LastFocused - nameWithType: MenuBar.LastFocused -- uid: Terminal.Gui.MenuBar.LastFocused* - name: LastFocused - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_LastFocused_ - commentId: Overload:Terminal.Gui.MenuBar.LastFocused - isSpec: "True" - fullName: Terminal.Gui.MenuBar.LastFocused - nameWithType: MenuBar.LastFocused -- uid: Terminal.Gui.MenuBar.MenuAllClosed - name: MenuAllClosed - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_MenuAllClosed - commentId: E:Terminal.Gui.MenuBar.MenuAllClosed - fullName: Terminal.Gui.MenuBar.MenuAllClosed - nameWithType: MenuBar.MenuAllClosed -- uid: Terminal.Gui.MenuBar.MenuClosing - name: MenuClosing - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_MenuClosing - commentId: E:Terminal.Gui.MenuBar.MenuClosing - fullName: Terminal.Gui.MenuBar.MenuClosing - nameWithType: MenuBar.MenuClosing -- uid: Terminal.Gui.MenuBar.MenuOpened - name: MenuOpened - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_MenuOpened - commentId: E:Terminal.Gui.MenuBar.MenuOpened - fullName: Terminal.Gui.MenuBar.MenuOpened - nameWithType: MenuBar.MenuOpened -- uid: Terminal.Gui.MenuBar.MenuOpening - name: MenuOpening - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_MenuOpening - commentId: E:Terminal.Gui.MenuBar.MenuOpening - fullName: Terminal.Gui.MenuBar.MenuOpening - nameWithType: MenuBar.MenuOpening -- uid: Terminal.Gui.MenuBar.Menus - name: Menus - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_Menus - commentId: P:Terminal.Gui.MenuBar.Menus - fullName: Terminal.Gui.MenuBar.Menus - nameWithType: MenuBar.Menus -- uid: Terminal.Gui.MenuBar.Menus* - name: Menus - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_Menus_ - commentId: Overload:Terminal.Gui.MenuBar.Menus - isSpec: "True" - fullName: Terminal.Gui.MenuBar.Menus - nameWithType: MenuBar.Menus -- uid: Terminal.Gui.MenuBar.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.MenuBar.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.MenuBar.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: MenuBar.MouseEvent(MouseEvent) -- uid: Terminal.Gui.MenuBar.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_MouseEvent_ - commentId: Overload:Terminal.Gui.MenuBar.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.MenuBar.MouseEvent - nameWithType: MenuBar.MouseEvent -- uid: Terminal.Gui.MenuBar.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.MenuBar.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.MenuBar.OnEnter(Terminal.Gui.View) - nameWithType: MenuBar.OnEnter(View) -- uid: Terminal.Gui.MenuBar.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnEnter_ - commentId: Overload:Terminal.Gui.MenuBar.OnEnter - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnEnter - nameWithType: MenuBar.OnEnter -- uid: Terminal.Gui.MenuBar.OnKeyDown(Terminal.Gui.KeyEvent) - name: OnKeyDown(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnKeyDown_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.MenuBar.OnKeyDown(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.MenuBar.OnKeyDown(Terminal.Gui.KeyEvent) - nameWithType: MenuBar.OnKeyDown(KeyEvent) -- uid: Terminal.Gui.MenuBar.OnKeyDown* - name: OnKeyDown - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnKeyDown_ - commentId: Overload:Terminal.Gui.MenuBar.OnKeyDown - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnKeyDown - nameWithType: MenuBar.OnKeyDown -- uid: Terminal.Gui.MenuBar.OnKeyUp(Terminal.Gui.KeyEvent) - name: OnKeyUp(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnKeyUp_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.MenuBar.OnKeyUp(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.MenuBar.OnKeyUp(Terminal.Gui.KeyEvent) - nameWithType: MenuBar.OnKeyUp(KeyEvent) -- uid: Terminal.Gui.MenuBar.OnKeyUp* - name: OnKeyUp - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnKeyUp_ - commentId: Overload:Terminal.Gui.MenuBar.OnKeyUp - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnKeyUp - nameWithType: MenuBar.OnKeyUp -- uid: Terminal.Gui.MenuBar.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.MenuBar.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.MenuBar.OnLeave(Terminal.Gui.View) - nameWithType: MenuBar.OnLeave(View) -- uid: Terminal.Gui.MenuBar.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnLeave_ - commentId: Overload:Terminal.Gui.MenuBar.OnLeave - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnLeave - nameWithType: MenuBar.OnLeave -- uid: Terminal.Gui.MenuBar.OnMenuAllClosed - name: OnMenuAllClosed() - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuAllClosed - commentId: M:Terminal.Gui.MenuBar.OnMenuAllClosed - fullName: Terminal.Gui.MenuBar.OnMenuAllClosed() - nameWithType: MenuBar.OnMenuAllClosed() -- uid: Terminal.Gui.MenuBar.OnMenuAllClosed* - name: OnMenuAllClosed - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuAllClosed_ - commentId: Overload:Terminal.Gui.MenuBar.OnMenuAllClosed - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnMenuAllClosed - nameWithType: MenuBar.OnMenuAllClosed -- uid: Terminal.Gui.MenuBar.OnMenuClosing(Terminal.Gui.MenuBarItem,System.Boolean,System.Boolean) - name: OnMenuClosing(MenuBarItem, Boolean, Boolean) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuClosing_Terminal_Gui_MenuBarItem_System_Boolean_System_Boolean_ - commentId: M:Terminal.Gui.MenuBar.OnMenuClosing(Terminal.Gui.MenuBarItem,System.Boolean,System.Boolean) - fullName: Terminal.Gui.MenuBar.OnMenuClosing(Terminal.Gui.MenuBarItem, System.Boolean, System.Boolean) - nameWithType: MenuBar.OnMenuClosing(MenuBarItem, Boolean, Boolean) -- uid: Terminal.Gui.MenuBar.OnMenuClosing* - name: OnMenuClosing - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuClosing_ - commentId: Overload:Terminal.Gui.MenuBar.OnMenuClosing - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnMenuClosing - nameWithType: MenuBar.OnMenuClosing -- uid: Terminal.Gui.MenuBar.OnMenuOpened - name: OnMenuOpened() - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuOpened - commentId: M:Terminal.Gui.MenuBar.OnMenuOpened - fullName: Terminal.Gui.MenuBar.OnMenuOpened() - nameWithType: MenuBar.OnMenuOpened() -- uid: Terminal.Gui.MenuBar.OnMenuOpened* - name: OnMenuOpened - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuOpened_ - commentId: Overload:Terminal.Gui.MenuBar.OnMenuOpened - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnMenuOpened - nameWithType: MenuBar.OnMenuOpened -- uid: Terminal.Gui.MenuBar.OnMenuOpening(Terminal.Gui.MenuBarItem) - name: OnMenuOpening(MenuBarItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuOpening_Terminal_Gui_MenuBarItem_ - commentId: M:Terminal.Gui.MenuBar.OnMenuOpening(Terminal.Gui.MenuBarItem) - fullName: Terminal.Gui.MenuBar.OnMenuOpening(Terminal.Gui.MenuBarItem) - nameWithType: MenuBar.OnMenuOpening(MenuBarItem) -- uid: Terminal.Gui.MenuBar.OnMenuOpening* - name: OnMenuOpening - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OnMenuOpening_ - commentId: Overload:Terminal.Gui.MenuBar.OnMenuOpening - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OnMenuOpening - nameWithType: MenuBar.OnMenuOpening -- uid: Terminal.Gui.MenuBar.OpenMenu - name: OpenMenu() - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OpenMenu - commentId: M:Terminal.Gui.MenuBar.OpenMenu - fullName: Terminal.Gui.MenuBar.OpenMenu() - nameWithType: MenuBar.OpenMenu() -- uid: Terminal.Gui.MenuBar.OpenMenu* - name: OpenMenu - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_OpenMenu_ - commentId: Overload:Terminal.Gui.MenuBar.OpenMenu - isSpec: "True" - fullName: Terminal.Gui.MenuBar.OpenMenu - nameWithType: MenuBar.OpenMenu -- uid: Terminal.Gui.MenuBar.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_PositionCursor - commentId: M:Terminal.Gui.MenuBar.PositionCursor - fullName: Terminal.Gui.MenuBar.PositionCursor() - nameWithType: MenuBar.PositionCursor() -- uid: Terminal.Gui.MenuBar.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_PositionCursor_ - commentId: Overload:Terminal.Gui.MenuBar.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.MenuBar.PositionCursor - nameWithType: MenuBar.PositionCursor -- uid: Terminal.Gui.MenuBar.ProcessColdKey(Terminal.Gui.KeyEvent) - name: ProcessColdKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ProcessColdKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.MenuBar.ProcessColdKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.MenuBar.ProcessColdKey(Terminal.Gui.KeyEvent) - nameWithType: MenuBar.ProcessColdKey(KeyEvent) -- uid: Terminal.Gui.MenuBar.ProcessColdKey* - name: ProcessColdKey - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ProcessColdKey_ - commentId: Overload:Terminal.Gui.MenuBar.ProcessColdKey - isSpec: "True" - fullName: Terminal.Gui.MenuBar.ProcessColdKey - nameWithType: MenuBar.ProcessColdKey -- uid: Terminal.Gui.MenuBar.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.MenuBar.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.MenuBar.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: MenuBar.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.MenuBar.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ProcessHotKey_ - commentId: Overload:Terminal.Gui.MenuBar.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.MenuBar.ProcessHotKey - nameWithType: MenuBar.ProcessHotKey -- uid: Terminal.Gui.MenuBar.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.MenuBar.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.MenuBar.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: MenuBar.ProcessKey(KeyEvent) -- uid: Terminal.Gui.MenuBar.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ProcessKey_ - commentId: Overload:Terminal.Gui.MenuBar.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.MenuBar.ProcessKey - nameWithType: MenuBar.ProcessKey -- uid: Terminal.Gui.MenuBar.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.MenuBar.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.MenuBar.Redraw(Terminal.Gui.Rect) - nameWithType: MenuBar.Redraw(Rect) -- uid: Terminal.Gui.MenuBar.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_Redraw_ - commentId: Overload:Terminal.Gui.MenuBar.Redraw - isSpec: "True" - fullName: Terminal.Gui.MenuBar.Redraw - nameWithType: MenuBar.Redraw -- uid: Terminal.Gui.MenuBar.ShortcutDelimiter - name: ShortcutDelimiter - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ShortcutDelimiter - commentId: P:Terminal.Gui.MenuBar.ShortcutDelimiter - fullName: Terminal.Gui.MenuBar.ShortcutDelimiter - nameWithType: MenuBar.ShortcutDelimiter -- uid: Terminal.Gui.MenuBar.ShortcutDelimiter* - name: ShortcutDelimiter - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_ShortcutDelimiter_ - commentId: Overload:Terminal.Gui.MenuBar.ShortcutDelimiter - isSpec: "True" - fullName: Terminal.Gui.MenuBar.ShortcutDelimiter - nameWithType: MenuBar.ShortcutDelimiter -- uid: Terminal.Gui.MenuBar.UseKeysUpDownAsKeysLeftRight - name: UseKeysUpDownAsKeysLeftRight - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_UseKeysUpDownAsKeysLeftRight - commentId: P:Terminal.Gui.MenuBar.UseKeysUpDownAsKeysLeftRight - fullName: Terminal.Gui.MenuBar.UseKeysUpDownAsKeysLeftRight - nameWithType: MenuBar.UseKeysUpDownAsKeysLeftRight -- uid: Terminal.Gui.MenuBar.UseKeysUpDownAsKeysLeftRight* - name: UseKeysUpDownAsKeysLeftRight - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_UseKeysUpDownAsKeysLeftRight_ - commentId: Overload:Terminal.Gui.MenuBar.UseKeysUpDownAsKeysLeftRight - isSpec: "True" - fullName: Terminal.Gui.MenuBar.UseKeysUpDownAsKeysLeftRight - nameWithType: MenuBar.UseKeysUpDownAsKeysLeftRight -- uid: Terminal.Gui.MenuBar.UseSubMenusSingleFrame - name: UseSubMenusSingleFrame - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_UseSubMenusSingleFrame - commentId: P:Terminal.Gui.MenuBar.UseSubMenusSingleFrame - fullName: Terminal.Gui.MenuBar.UseSubMenusSingleFrame - nameWithType: MenuBar.UseSubMenusSingleFrame -- uid: Terminal.Gui.MenuBar.UseSubMenusSingleFrame* - name: UseSubMenusSingleFrame - href: api/Terminal.Gui/Terminal.Gui.MenuBar.html#Terminal_Gui_MenuBar_UseSubMenusSingleFrame_ - commentId: Overload:Terminal.Gui.MenuBar.UseSubMenusSingleFrame - isSpec: "True" - fullName: Terminal.Gui.MenuBar.UseSubMenusSingleFrame - nameWithType: MenuBar.UseSubMenusSingleFrame -- uid: Terminal.Gui.MenuBarItem - name: MenuBarItem - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html - commentId: T:Terminal.Gui.MenuBarItem - fullName: Terminal.Gui.MenuBarItem - nameWithType: MenuBarItem -- uid: Terminal.Gui.MenuBarItem.#ctor - name: MenuBarItem() - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem__ctor - commentId: M:Terminal.Gui.MenuBarItem.#ctor - fullName: Terminal.Gui.MenuBarItem.MenuBarItem() - nameWithType: MenuBarItem.MenuBarItem() -- uid: Terminal.Gui.MenuBarItem.#ctor(NStack.ustring,NStack.ustring,System.Action,System.Func{System.Boolean},Terminal.Gui.MenuItem) - name: MenuBarItem(ustring, ustring, Action, Func, MenuItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem__ctor_NStack_ustring_NStack_ustring_System_Action_System_Func_System_Boolean__Terminal_Gui_MenuItem_ - commentId: M:Terminal.Gui.MenuBarItem.#ctor(NStack.ustring,NStack.ustring,System.Action,System.Func{System.Boolean},Terminal.Gui.MenuItem) - name.vb: MenuBarItem(ustring, ustring, Action, Func(Of Boolean), MenuItem) - fullName: Terminal.Gui.MenuBarItem.MenuBarItem(NStack.ustring, NStack.ustring, System.Action, System.Func, Terminal.Gui.MenuItem) - fullName.vb: Terminal.Gui.MenuBarItem.MenuBarItem(NStack.ustring, NStack.ustring, System.Action, System.Func(Of System.Boolean), Terminal.Gui.MenuItem) - nameWithType: MenuBarItem.MenuBarItem(ustring, ustring, Action, Func, MenuItem) - nameWithType.vb: MenuBarItem.MenuBarItem(ustring, ustring, Action, Func(Of Boolean), MenuItem) -- uid: Terminal.Gui.MenuBarItem.#ctor(NStack.ustring,System.Collections.Generic.List{Terminal.Gui.MenuItem[]},Terminal.Gui.MenuItem) - name: MenuBarItem(ustring, List, MenuItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem__ctor_NStack_ustring_System_Collections_Generic_List_Terminal_Gui_MenuItem____Terminal_Gui_MenuItem_ - commentId: M:Terminal.Gui.MenuBarItem.#ctor(NStack.ustring,System.Collections.Generic.List{Terminal.Gui.MenuItem[]},Terminal.Gui.MenuItem) - name.vb: MenuBarItem(ustring, List(Of MenuItem()), MenuItem) - fullName: Terminal.Gui.MenuBarItem.MenuBarItem(NStack.ustring, System.Collections.Generic.List, Terminal.Gui.MenuItem) - fullName.vb: Terminal.Gui.MenuBarItem.MenuBarItem(NStack.ustring, System.Collections.Generic.List(Of Terminal.Gui.MenuItem()), Terminal.Gui.MenuItem) - nameWithType: MenuBarItem.MenuBarItem(ustring, List, MenuItem) - nameWithType.vb: MenuBarItem.MenuBarItem(ustring, List(Of MenuItem()), MenuItem) -- uid: Terminal.Gui.MenuBarItem.#ctor(NStack.ustring,Terminal.Gui.MenuItem[],Terminal.Gui.MenuItem) - name: MenuBarItem(ustring, MenuItem[], MenuItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem__ctor_NStack_ustring_Terminal_Gui_MenuItem___Terminal_Gui_MenuItem_ - commentId: M:Terminal.Gui.MenuBarItem.#ctor(NStack.ustring,Terminal.Gui.MenuItem[],Terminal.Gui.MenuItem) - name.vb: MenuBarItem(ustring, MenuItem(), MenuItem) - fullName: Terminal.Gui.MenuBarItem.MenuBarItem(NStack.ustring, Terminal.Gui.MenuItem[], Terminal.Gui.MenuItem) - fullName.vb: Terminal.Gui.MenuBarItem.MenuBarItem(NStack.ustring, Terminal.Gui.MenuItem(), Terminal.Gui.MenuItem) - nameWithType: MenuBarItem.MenuBarItem(ustring, MenuItem[], MenuItem) - nameWithType.vb: MenuBarItem.MenuBarItem(ustring, MenuItem(), MenuItem) -- uid: Terminal.Gui.MenuBarItem.#ctor(Terminal.Gui.MenuItem[]) - name: MenuBarItem(MenuItem[]) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem__ctor_Terminal_Gui_MenuItem___ - commentId: M:Terminal.Gui.MenuBarItem.#ctor(Terminal.Gui.MenuItem[]) - name.vb: MenuBarItem(MenuItem()) - fullName: Terminal.Gui.MenuBarItem.MenuBarItem(Terminal.Gui.MenuItem[]) - fullName.vb: Terminal.Gui.MenuBarItem.MenuBarItem(Terminal.Gui.MenuItem()) - nameWithType: MenuBarItem.MenuBarItem(MenuItem[]) - nameWithType.vb: MenuBarItem.MenuBarItem(MenuItem()) -- uid: Terminal.Gui.MenuBarItem.#ctor* - name: MenuBarItem - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem__ctor_ - commentId: Overload:Terminal.Gui.MenuBarItem.#ctor - isSpec: "True" - fullName: Terminal.Gui.MenuBarItem.MenuBarItem - nameWithType: MenuBarItem.MenuBarItem -- uid: Terminal.Gui.MenuBarItem.Children - name: Children - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_Children - commentId: P:Terminal.Gui.MenuBarItem.Children - fullName: Terminal.Gui.MenuBarItem.Children - nameWithType: MenuBarItem.Children -- uid: Terminal.Gui.MenuBarItem.Children* - name: Children - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_Children_ - commentId: Overload:Terminal.Gui.MenuBarItem.Children - isSpec: "True" - fullName: Terminal.Gui.MenuBarItem.Children - nameWithType: MenuBarItem.Children -- uid: Terminal.Gui.MenuBarItem.GetChildrenIndex(Terminal.Gui.MenuItem) - name: GetChildrenIndex(MenuItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_GetChildrenIndex_Terminal_Gui_MenuItem_ - commentId: M:Terminal.Gui.MenuBarItem.GetChildrenIndex(Terminal.Gui.MenuItem) - fullName: Terminal.Gui.MenuBarItem.GetChildrenIndex(Terminal.Gui.MenuItem) - nameWithType: MenuBarItem.GetChildrenIndex(MenuItem) -- uid: Terminal.Gui.MenuBarItem.GetChildrenIndex* - name: GetChildrenIndex - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_GetChildrenIndex_ - commentId: Overload:Terminal.Gui.MenuBarItem.GetChildrenIndex - isSpec: "True" - fullName: Terminal.Gui.MenuBarItem.GetChildrenIndex - nameWithType: MenuBarItem.GetChildrenIndex -- uid: Terminal.Gui.MenuBarItem.IsSubMenuOf(Terminal.Gui.MenuItem) - name: IsSubMenuOf(MenuItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_IsSubMenuOf_Terminal_Gui_MenuItem_ - commentId: M:Terminal.Gui.MenuBarItem.IsSubMenuOf(Terminal.Gui.MenuItem) - fullName: Terminal.Gui.MenuBarItem.IsSubMenuOf(Terminal.Gui.MenuItem) - nameWithType: MenuBarItem.IsSubMenuOf(MenuItem) -- uid: Terminal.Gui.MenuBarItem.IsSubMenuOf* - name: IsSubMenuOf - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_IsSubMenuOf_ - commentId: Overload:Terminal.Gui.MenuBarItem.IsSubMenuOf - isSpec: "True" - fullName: Terminal.Gui.MenuBarItem.IsSubMenuOf - nameWithType: MenuBarItem.IsSubMenuOf -- uid: Terminal.Gui.MenuBarItem.SubMenu(Terminal.Gui.MenuItem) - name: SubMenu(MenuItem) - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_SubMenu_Terminal_Gui_MenuItem_ - commentId: M:Terminal.Gui.MenuBarItem.SubMenu(Terminal.Gui.MenuItem) - fullName: Terminal.Gui.MenuBarItem.SubMenu(Terminal.Gui.MenuItem) - nameWithType: MenuBarItem.SubMenu(MenuItem) -- uid: Terminal.Gui.MenuBarItem.SubMenu* - name: SubMenu - href: api/Terminal.Gui/Terminal.Gui.MenuBarItem.html#Terminal_Gui_MenuBarItem_SubMenu_ - commentId: Overload:Terminal.Gui.MenuBarItem.SubMenu - isSpec: "True" - fullName: Terminal.Gui.MenuBarItem.SubMenu - nameWithType: MenuBarItem.SubMenu -- uid: Terminal.Gui.MenuClosingEventArgs - name: MenuClosingEventArgs - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html - commentId: T:Terminal.Gui.MenuClosingEventArgs - fullName: Terminal.Gui.MenuClosingEventArgs - nameWithType: MenuClosingEventArgs -- uid: Terminal.Gui.MenuClosingEventArgs.#ctor(Terminal.Gui.MenuBarItem,System.Boolean,System.Boolean) - name: MenuClosingEventArgs(MenuBarItem, Boolean, Boolean) - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs__ctor_Terminal_Gui_MenuBarItem_System_Boolean_System_Boolean_ - commentId: M:Terminal.Gui.MenuClosingEventArgs.#ctor(Terminal.Gui.MenuBarItem,System.Boolean,System.Boolean) - fullName: Terminal.Gui.MenuClosingEventArgs.MenuClosingEventArgs(Terminal.Gui.MenuBarItem, System.Boolean, System.Boolean) - nameWithType: MenuClosingEventArgs.MenuClosingEventArgs(MenuBarItem, Boolean, Boolean) -- uid: Terminal.Gui.MenuClosingEventArgs.#ctor* - name: MenuClosingEventArgs - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs__ctor_ - commentId: Overload:Terminal.Gui.MenuClosingEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.MenuClosingEventArgs.MenuClosingEventArgs - nameWithType: MenuClosingEventArgs.MenuClosingEventArgs -- uid: Terminal.Gui.MenuClosingEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_Cancel - commentId: P:Terminal.Gui.MenuClosingEventArgs.Cancel - fullName: Terminal.Gui.MenuClosingEventArgs.Cancel - nameWithType: MenuClosingEventArgs.Cancel -- uid: Terminal.Gui.MenuClosingEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.MenuClosingEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.MenuClosingEventArgs.Cancel - nameWithType: MenuClosingEventArgs.Cancel -- uid: Terminal.Gui.MenuClosingEventArgs.CurrentMenu - name: CurrentMenu - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_CurrentMenu - commentId: P:Terminal.Gui.MenuClosingEventArgs.CurrentMenu - fullName: Terminal.Gui.MenuClosingEventArgs.CurrentMenu - nameWithType: MenuClosingEventArgs.CurrentMenu -- uid: Terminal.Gui.MenuClosingEventArgs.CurrentMenu* - name: CurrentMenu - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_CurrentMenu_ - commentId: Overload:Terminal.Gui.MenuClosingEventArgs.CurrentMenu - isSpec: "True" - fullName: Terminal.Gui.MenuClosingEventArgs.CurrentMenu - nameWithType: MenuClosingEventArgs.CurrentMenu -- uid: Terminal.Gui.MenuClosingEventArgs.IsSubMenu - name: IsSubMenu - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_IsSubMenu - commentId: P:Terminal.Gui.MenuClosingEventArgs.IsSubMenu - fullName: Terminal.Gui.MenuClosingEventArgs.IsSubMenu - nameWithType: MenuClosingEventArgs.IsSubMenu -- uid: Terminal.Gui.MenuClosingEventArgs.IsSubMenu* - name: IsSubMenu - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_IsSubMenu_ - commentId: Overload:Terminal.Gui.MenuClosingEventArgs.IsSubMenu - isSpec: "True" - fullName: Terminal.Gui.MenuClosingEventArgs.IsSubMenu - nameWithType: MenuClosingEventArgs.IsSubMenu -- uid: Terminal.Gui.MenuClosingEventArgs.Reopen - name: Reopen - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_Reopen - commentId: P:Terminal.Gui.MenuClosingEventArgs.Reopen - fullName: Terminal.Gui.MenuClosingEventArgs.Reopen - nameWithType: MenuClosingEventArgs.Reopen -- uid: Terminal.Gui.MenuClosingEventArgs.Reopen* - name: Reopen - href: api/Terminal.Gui/Terminal.Gui.MenuClosingEventArgs.html#Terminal_Gui_MenuClosingEventArgs_Reopen_ - commentId: Overload:Terminal.Gui.MenuClosingEventArgs.Reopen - isSpec: "True" - fullName: Terminal.Gui.MenuClosingEventArgs.Reopen - nameWithType: MenuClosingEventArgs.Reopen -- uid: Terminal.Gui.MenuItem - name: MenuItem - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html - commentId: T:Terminal.Gui.MenuItem - fullName: Terminal.Gui.MenuItem - nameWithType: MenuItem -- uid: Terminal.Gui.MenuItem.#ctor(NStack.ustring,NStack.ustring,System.Action,System.Func{System.Boolean},Terminal.Gui.MenuItem,Terminal.Gui.Key) - name: MenuItem(ustring, ustring, Action, Func, MenuItem, Key) - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem__ctor_NStack_ustring_NStack_ustring_System_Action_System_Func_System_Boolean__Terminal_Gui_MenuItem_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.MenuItem.#ctor(NStack.ustring,NStack.ustring,System.Action,System.Func{System.Boolean},Terminal.Gui.MenuItem,Terminal.Gui.Key) - name.vb: MenuItem(ustring, ustring, Action, Func(Of Boolean), MenuItem, Key) - fullName: Terminal.Gui.MenuItem.MenuItem(NStack.ustring, NStack.ustring, System.Action, System.Func, Terminal.Gui.MenuItem, Terminal.Gui.Key) - fullName.vb: Terminal.Gui.MenuItem.MenuItem(NStack.ustring, NStack.ustring, System.Action, System.Func(Of System.Boolean), Terminal.Gui.MenuItem, Terminal.Gui.Key) - nameWithType: MenuItem.MenuItem(ustring, ustring, Action, Func, MenuItem, Key) - nameWithType.vb: MenuItem.MenuItem(ustring, ustring, Action, Func(Of Boolean), MenuItem, Key) -- uid: Terminal.Gui.MenuItem.#ctor(Terminal.Gui.Key) - name: MenuItem(Key) - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem__ctor_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.MenuItem.#ctor(Terminal.Gui.Key) - fullName: Terminal.Gui.MenuItem.MenuItem(Terminal.Gui.Key) - nameWithType: MenuItem.MenuItem(Key) -- uid: Terminal.Gui.MenuItem.#ctor* - name: MenuItem - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem__ctor_ - commentId: Overload:Terminal.Gui.MenuItem.#ctor - isSpec: "True" - fullName: Terminal.Gui.MenuItem.MenuItem - nameWithType: MenuItem.MenuItem -- uid: Terminal.Gui.MenuItem.Action - name: Action - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Action - commentId: P:Terminal.Gui.MenuItem.Action - fullName: Terminal.Gui.MenuItem.Action - nameWithType: MenuItem.Action -- uid: Terminal.Gui.MenuItem.Action* - name: Action - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Action_ - commentId: Overload:Terminal.Gui.MenuItem.Action - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Action - nameWithType: MenuItem.Action -- uid: Terminal.Gui.MenuItem.CanExecute - name: CanExecute - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_CanExecute - commentId: P:Terminal.Gui.MenuItem.CanExecute - fullName: Terminal.Gui.MenuItem.CanExecute - nameWithType: MenuItem.CanExecute -- uid: Terminal.Gui.MenuItem.CanExecute* - name: CanExecute - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_CanExecute_ - commentId: Overload:Terminal.Gui.MenuItem.CanExecute - isSpec: "True" - fullName: Terminal.Gui.MenuItem.CanExecute - nameWithType: MenuItem.CanExecute -- uid: Terminal.Gui.MenuItem.Checked - name: Checked - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Checked - commentId: P:Terminal.Gui.MenuItem.Checked - fullName: Terminal.Gui.MenuItem.Checked - nameWithType: MenuItem.Checked -- uid: Terminal.Gui.MenuItem.Checked* - name: Checked - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Checked_ - commentId: Overload:Terminal.Gui.MenuItem.Checked - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Checked - nameWithType: MenuItem.Checked -- uid: Terminal.Gui.MenuItem.CheckType - name: CheckType - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_CheckType - commentId: P:Terminal.Gui.MenuItem.CheckType - fullName: Terminal.Gui.MenuItem.CheckType - nameWithType: MenuItem.CheckType -- uid: Terminal.Gui.MenuItem.CheckType* - name: CheckType - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_CheckType_ - commentId: Overload:Terminal.Gui.MenuItem.CheckType - isSpec: "True" - fullName: Terminal.Gui.MenuItem.CheckType - nameWithType: MenuItem.CheckType -- uid: Terminal.Gui.MenuItem.Data - name: Data - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Data - commentId: P:Terminal.Gui.MenuItem.Data - fullName: Terminal.Gui.MenuItem.Data - nameWithType: MenuItem.Data -- uid: Terminal.Gui.MenuItem.Data* - name: Data - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Data_ - commentId: Overload:Terminal.Gui.MenuItem.Data - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Data - nameWithType: MenuItem.Data -- uid: Terminal.Gui.MenuItem.GetMenuBarItem - name: GetMenuBarItem() - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_GetMenuBarItem - commentId: M:Terminal.Gui.MenuItem.GetMenuBarItem - fullName: Terminal.Gui.MenuItem.GetMenuBarItem() - nameWithType: MenuItem.GetMenuBarItem() -- uid: Terminal.Gui.MenuItem.GetMenuBarItem* - name: GetMenuBarItem - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_GetMenuBarItem_ - commentId: Overload:Terminal.Gui.MenuItem.GetMenuBarItem - isSpec: "True" - fullName: Terminal.Gui.MenuItem.GetMenuBarItem - nameWithType: MenuItem.GetMenuBarItem -- uid: Terminal.Gui.MenuItem.GetMenuItem - name: GetMenuItem() - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_GetMenuItem - commentId: M:Terminal.Gui.MenuItem.GetMenuItem - fullName: Terminal.Gui.MenuItem.GetMenuItem() - nameWithType: MenuItem.GetMenuItem() -- uid: Terminal.Gui.MenuItem.GetMenuItem* - name: GetMenuItem - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_GetMenuItem_ - commentId: Overload:Terminal.Gui.MenuItem.GetMenuItem - isSpec: "True" - fullName: Terminal.Gui.MenuItem.GetMenuItem - nameWithType: MenuItem.GetMenuItem -- uid: Terminal.Gui.MenuItem.Help - name: Help - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Help - commentId: P:Terminal.Gui.MenuItem.Help - fullName: Terminal.Gui.MenuItem.Help - nameWithType: MenuItem.Help -- uid: Terminal.Gui.MenuItem.Help* - name: Help - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Help_ - commentId: Overload:Terminal.Gui.MenuItem.Help - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Help - nameWithType: MenuItem.Help -- uid: Terminal.Gui.MenuItem.HotKey - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_HotKey - commentId: F:Terminal.Gui.MenuItem.HotKey - fullName: Terminal.Gui.MenuItem.HotKey - nameWithType: MenuItem.HotKey -- uid: Terminal.Gui.MenuItem.IsEnabled - name: IsEnabled() - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_IsEnabled - commentId: M:Terminal.Gui.MenuItem.IsEnabled - fullName: Terminal.Gui.MenuItem.IsEnabled() - nameWithType: MenuItem.IsEnabled() -- uid: Terminal.Gui.MenuItem.IsEnabled* - name: IsEnabled - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_IsEnabled_ - commentId: Overload:Terminal.Gui.MenuItem.IsEnabled - isSpec: "True" - fullName: Terminal.Gui.MenuItem.IsEnabled - nameWithType: MenuItem.IsEnabled -- uid: Terminal.Gui.MenuItem.Parent - name: Parent - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Parent - commentId: P:Terminal.Gui.MenuItem.Parent - fullName: Terminal.Gui.MenuItem.Parent - nameWithType: MenuItem.Parent -- uid: Terminal.Gui.MenuItem.Parent* - name: Parent - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Parent_ - commentId: Overload:Terminal.Gui.MenuItem.Parent - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Parent - nameWithType: MenuItem.Parent -- uid: Terminal.Gui.MenuItem.Shortcut - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Shortcut - commentId: P:Terminal.Gui.MenuItem.Shortcut - fullName: Terminal.Gui.MenuItem.Shortcut - nameWithType: MenuItem.Shortcut -- uid: Terminal.Gui.MenuItem.Shortcut* - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Shortcut_ - commentId: Overload:Terminal.Gui.MenuItem.Shortcut - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Shortcut - nameWithType: MenuItem.Shortcut -- uid: Terminal.Gui.MenuItem.ShortcutTag - name: ShortcutTag - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_ShortcutTag - commentId: P:Terminal.Gui.MenuItem.ShortcutTag - fullName: Terminal.Gui.MenuItem.ShortcutTag - nameWithType: MenuItem.ShortcutTag -- uid: Terminal.Gui.MenuItem.ShortcutTag* - name: ShortcutTag - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_ShortcutTag_ - commentId: Overload:Terminal.Gui.MenuItem.ShortcutTag - isSpec: "True" - fullName: Terminal.Gui.MenuItem.ShortcutTag - nameWithType: MenuItem.ShortcutTag -- uid: Terminal.Gui.MenuItem.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Title - commentId: P:Terminal.Gui.MenuItem.Title - fullName: Terminal.Gui.MenuItem.Title - nameWithType: MenuItem.Title -- uid: Terminal.Gui.MenuItem.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.MenuItem.html#Terminal_Gui_MenuItem_Title_ - commentId: Overload:Terminal.Gui.MenuItem.Title - isSpec: "True" - fullName: Terminal.Gui.MenuItem.Title - nameWithType: MenuItem.Title -- uid: Terminal.Gui.MenuItemCheckStyle - name: MenuItemCheckStyle - href: api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html - commentId: T:Terminal.Gui.MenuItemCheckStyle - fullName: Terminal.Gui.MenuItemCheckStyle - nameWithType: MenuItemCheckStyle -- uid: Terminal.Gui.MenuItemCheckStyle.Checked - name: Checked - href: api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html#Terminal_Gui_MenuItemCheckStyle_Checked - commentId: F:Terminal.Gui.MenuItemCheckStyle.Checked - fullName: Terminal.Gui.MenuItemCheckStyle.Checked - nameWithType: MenuItemCheckStyle.Checked -- uid: Terminal.Gui.MenuItemCheckStyle.NoCheck - name: NoCheck - href: api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html#Terminal_Gui_MenuItemCheckStyle_NoCheck - commentId: F:Terminal.Gui.MenuItemCheckStyle.NoCheck - fullName: Terminal.Gui.MenuItemCheckStyle.NoCheck - nameWithType: MenuItemCheckStyle.NoCheck -- uid: Terminal.Gui.MenuItemCheckStyle.Radio - name: Radio - href: api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html#Terminal_Gui_MenuItemCheckStyle_Radio - commentId: F:Terminal.Gui.MenuItemCheckStyle.Radio - fullName: Terminal.Gui.MenuItemCheckStyle.Radio - nameWithType: MenuItemCheckStyle.Radio -- uid: Terminal.Gui.MenuOpeningEventArgs - name: MenuOpeningEventArgs - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html - commentId: T:Terminal.Gui.MenuOpeningEventArgs - fullName: Terminal.Gui.MenuOpeningEventArgs - nameWithType: MenuOpeningEventArgs -- uid: Terminal.Gui.MenuOpeningEventArgs.#ctor(Terminal.Gui.MenuBarItem) - name: MenuOpeningEventArgs(MenuBarItem) - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs__ctor_Terminal_Gui_MenuBarItem_ - commentId: M:Terminal.Gui.MenuOpeningEventArgs.#ctor(Terminal.Gui.MenuBarItem) - fullName: Terminal.Gui.MenuOpeningEventArgs.MenuOpeningEventArgs(Terminal.Gui.MenuBarItem) - nameWithType: MenuOpeningEventArgs.MenuOpeningEventArgs(MenuBarItem) -- uid: Terminal.Gui.MenuOpeningEventArgs.#ctor* - name: MenuOpeningEventArgs - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs__ctor_ - commentId: Overload:Terminal.Gui.MenuOpeningEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.MenuOpeningEventArgs.MenuOpeningEventArgs - nameWithType: MenuOpeningEventArgs.MenuOpeningEventArgs -- uid: Terminal.Gui.MenuOpeningEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs_Cancel - commentId: P:Terminal.Gui.MenuOpeningEventArgs.Cancel - fullName: Terminal.Gui.MenuOpeningEventArgs.Cancel - nameWithType: MenuOpeningEventArgs.Cancel -- uid: Terminal.Gui.MenuOpeningEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.MenuOpeningEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.MenuOpeningEventArgs.Cancel - nameWithType: MenuOpeningEventArgs.Cancel -- uid: Terminal.Gui.MenuOpeningEventArgs.CurrentMenu - name: CurrentMenu - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs_CurrentMenu - commentId: P:Terminal.Gui.MenuOpeningEventArgs.CurrentMenu - fullName: Terminal.Gui.MenuOpeningEventArgs.CurrentMenu - nameWithType: MenuOpeningEventArgs.CurrentMenu -- uid: Terminal.Gui.MenuOpeningEventArgs.CurrentMenu* - name: CurrentMenu - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs_CurrentMenu_ - commentId: Overload:Terminal.Gui.MenuOpeningEventArgs.CurrentMenu - isSpec: "True" - fullName: Terminal.Gui.MenuOpeningEventArgs.CurrentMenu - nameWithType: MenuOpeningEventArgs.CurrentMenu -- uid: Terminal.Gui.MenuOpeningEventArgs.NewMenuBarItem - name: NewMenuBarItem - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs_NewMenuBarItem - commentId: P:Terminal.Gui.MenuOpeningEventArgs.NewMenuBarItem - fullName: Terminal.Gui.MenuOpeningEventArgs.NewMenuBarItem - nameWithType: MenuOpeningEventArgs.NewMenuBarItem -- uid: Terminal.Gui.MenuOpeningEventArgs.NewMenuBarItem* - name: NewMenuBarItem - href: api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html#Terminal_Gui_MenuOpeningEventArgs_NewMenuBarItem_ - commentId: Overload:Terminal.Gui.MenuOpeningEventArgs.NewMenuBarItem - isSpec: "True" - fullName: Terminal.Gui.MenuOpeningEventArgs.NewMenuBarItem - nameWithType: MenuOpeningEventArgs.NewMenuBarItem -- uid: Terminal.Gui.MessageBox - name: MessageBox - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html - commentId: T:Terminal.Gui.MessageBox - fullName: Terminal.Gui.MessageBox - nameWithType: MessageBox -- uid: Terminal.Gui.MessageBox.Clicked - name: Clicked - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Clicked - commentId: P:Terminal.Gui.MessageBox.Clicked - fullName: Terminal.Gui.MessageBox.Clicked - nameWithType: MessageBox.Clicked -- uid: Terminal.Gui.MessageBox.Clicked* - name: Clicked - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Clicked_ - commentId: Overload:Terminal.Gui.MessageBox.Clicked - isSpec: "True" - fullName: Terminal.Gui.MessageBox.Clicked - nameWithType: MessageBox.Clicked -- uid: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring,NStack.ustring,NStack.ustring[]) - name: ErrorQuery(ustring, ustring, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_NStack_ustring_NStack_ustring_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring,NStack.ustring,NStack.ustring[]) - name.vb: ErrorQuery(ustring, ustring, ustring()) - fullName: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring, NStack.ustring, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring, NStack.ustring, NStack.ustring()) - nameWithType: MessageBox.ErrorQuery(ustring, ustring, ustring[]) - nameWithType.vb: MessageBox.ErrorQuery(ustring, ustring, ustring()) -- uid: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name: ErrorQuery(ustring, ustring, Int32, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_NStack_ustring_NStack_ustring_System_Int32_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name.vb: ErrorQuery(ustring, ustring, Int32, ustring()) - fullName: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring, NStack.ustring, System.Int32, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring, NStack.ustring, System.Int32, NStack.ustring()) - nameWithType: MessageBox.ErrorQuery(ustring, ustring, Int32, ustring[]) - nameWithType.vb: MessageBox.ErrorQuery(ustring, ustring, Int32, ustring()) -- uid: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name: ErrorQuery(ustring, ustring, Int32, Border, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_NStack_ustring_NStack_ustring_System_Int32_Terminal_Gui_Border_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name.vb: ErrorQuery(ustring, ustring, Int32, Border, ustring()) - fullName: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.ErrorQuery(NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring()) - nameWithType: MessageBox.ErrorQuery(ustring, ustring, Int32, Border, ustring[]) - nameWithType.vb: MessageBox.ErrorQuery(ustring, ustring, Int32, Border, ustring()) -- uid: Terminal.Gui.MessageBox.ErrorQuery(System.Int32,System.Int32,NStack.ustring,NStack.ustring,NStack.ustring[]) - name: ErrorQuery(Int32, Int32, ustring, ustring, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_System_Int32_System_Int32_NStack_ustring_NStack_ustring_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.ErrorQuery(System.Int32,System.Int32,NStack.ustring,NStack.ustring,NStack.ustring[]) - name.vb: ErrorQuery(Int32, Int32, ustring, ustring, ustring()) - fullName: Terminal.Gui.MessageBox.ErrorQuery(System.Int32, System.Int32, NStack.ustring, NStack.ustring, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.ErrorQuery(System.Int32, System.Int32, NStack.ustring, NStack.ustring, NStack.ustring()) - nameWithType: MessageBox.ErrorQuery(Int32, Int32, ustring, ustring, ustring[]) - nameWithType.vb: MessageBox.ErrorQuery(Int32, Int32, ustring, ustring, ustring()) -- uid: Terminal.Gui.MessageBox.ErrorQuery(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name: ErrorQuery(Int32, Int32, ustring, ustring, Int32, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_System_Int32_System_Int32_NStack_ustring_NStack_ustring_System_Int32_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.ErrorQuery(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name.vb: ErrorQuery(Int32, Int32, ustring, ustring, Int32, ustring()) - fullName: Terminal.Gui.MessageBox.ErrorQuery(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.ErrorQuery(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, NStack.ustring()) - nameWithType: MessageBox.ErrorQuery(Int32, Int32, ustring, ustring, Int32, ustring[]) - nameWithType.vb: MessageBox.ErrorQuery(Int32, Int32, ustring, ustring, Int32, ustring()) -- uid: Terminal.Gui.MessageBox.ErrorQuery(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name: ErrorQuery(Int32, Int32, ustring, ustring, Int32, Border, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_System_Int32_System_Int32_NStack_ustring_NStack_ustring_System_Int32_Terminal_Gui_Border_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.ErrorQuery(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name.vb: ErrorQuery(Int32, Int32, ustring, ustring, Int32, Border, ustring()) - fullName: Terminal.Gui.MessageBox.ErrorQuery(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.ErrorQuery(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring()) - nameWithType: MessageBox.ErrorQuery(Int32, Int32, ustring, ustring, Int32, Border, ustring[]) - nameWithType.vb: MessageBox.ErrorQuery(Int32, Int32, ustring, ustring, Int32, Border, ustring()) -- uid: Terminal.Gui.MessageBox.ErrorQuery* - name: ErrorQuery - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_ErrorQuery_ - commentId: Overload:Terminal.Gui.MessageBox.ErrorQuery - isSpec: "True" - fullName: Terminal.Gui.MessageBox.ErrorQuery - nameWithType: MessageBox.ErrorQuery -- uid: Terminal.Gui.MessageBox.Query(NStack.ustring,NStack.ustring,NStack.ustring[]) - name: Query(ustring, ustring, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_NStack_ustring_NStack_ustring_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.Query(NStack.ustring,NStack.ustring,NStack.ustring[]) - name.vb: Query(ustring, ustring, ustring()) - fullName: Terminal.Gui.MessageBox.Query(NStack.ustring, NStack.ustring, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.Query(NStack.ustring, NStack.ustring, NStack.ustring()) - nameWithType: MessageBox.Query(ustring, ustring, ustring[]) - nameWithType.vb: MessageBox.Query(ustring, ustring, ustring()) -- uid: Terminal.Gui.MessageBox.Query(NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name: Query(ustring, ustring, Int32, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_NStack_ustring_NStack_ustring_System_Int32_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.Query(NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name.vb: Query(ustring, ustring, Int32, ustring()) - fullName: Terminal.Gui.MessageBox.Query(NStack.ustring, NStack.ustring, System.Int32, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.Query(NStack.ustring, NStack.ustring, System.Int32, NStack.ustring()) - nameWithType: MessageBox.Query(ustring, ustring, Int32, ustring[]) - nameWithType.vb: MessageBox.Query(ustring, ustring, Int32, ustring()) -- uid: Terminal.Gui.MessageBox.Query(NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name: Query(ustring, ustring, Int32, Border, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_NStack_ustring_NStack_ustring_System_Int32_Terminal_Gui_Border_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.Query(NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name.vb: Query(ustring, ustring, Int32, Border, ustring()) - fullName: Terminal.Gui.MessageBox.Query(NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.Query(NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring()) - nameWithType: MessageBox.Query(ustring, ustring, Int32, Border, ustring[]) - nameWithType.vb: MessageBox.Query(ustring, ustring, Int32, Border, ustring()) -- uid: Terminal.Gui.MessageBox.Query(System.Int32,System.Int32,NStack.ustring,NStack.ustring,NStack.ustring[]) - name: Query(Int32, Int32, ustring, ustring, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_System_Int32_System_Int32_NStack_ustring_NStack_ustring_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.Query(System.Int32,System.Int32,NStack.ustring,NStack.ustring,NStack.ustring[]) - name.vb: Query(Int32, Int32, ustring, ustring, ustring()) - fullName: Terminal.Gui.MessageBox.Query(System.Int32, System.Int32, NStack.ustring, NStack.ustring, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.Query(System.Int32, System.Int32, NStack.ustring, NStack.ustring, NStack.ustring()) - nameWithType: MessageBox.Query(Int32, Int32, ustring, ustring, ustring[]) - nameWithType.vb: MessageBox.Query(Int32, Int32, ustring, ustring, ustring()) -- uid: Terminal.Gui.MessageBox.Query(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name: Query(Int32, Int32, ustring, ustring, Int32, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_System_Int32_System_Int32_NStack_ustring_NStack_ustring_System_Int32_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.Query(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,NStack.ustring[]) - name.vb: Query(Int32, Int32, ustring, ustring, Int32, ustring()) - fullName: Terminal.Gui.MessageBox.Query(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.Query(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, NStack.ustring()) - nameWithType: MessageBox.Query(Int32, Int32, ustring, ustring, Int32, ustring[]) - nameWithType.vb: MessageBox.Query(Int32, Int32, ustring, ustring, Int32, ustring()) -- uid: Terminal.Gui.MessageBox.Query(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name: Query(Int32, Int32, ustring, ustring, Int32, Border, ustring[]) - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_System_Int32_System_Int32_NStack_ustring_NStack_ustring_System_Int32_Terminal_Gui_Border_NStack_ustring___ - commentId: M:Terminal.Gui.MessageBox.Query(System.Int32,System.Int32,NStack.ustring,NStack.ustring,System.Int32,Terminal.Gui.Border,NStack.ustring[]) - name.vb: Query(Int32, Int32, ustring, ustring, Int32, Border, ustring()) - fullName: Terminal.Gui.MessageBox.Query(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring[]) - fullName.vb: Terminal.Gui.MessageBox.Query(System.Int32, System.Int32, NStack.ustring, NStack.ustring, System.Int32, Terminal.Gui.Border, NStack.ustring()) - nameWithType: MessageBox.Query(Int32, Int32, ustring, ustring, Int32, Border, ustring[]) - nameWithType.vb: MessageBox.Query(Int32, Int32, ustring, ustring, Int32, Border, ustring()) -- uid: Terminal.Gui.MessageBox.Query* - name: Query - href: api/Terminal.Gui/Terminal.Gui.MessageBox.html#Terminal_Gui_MessageBox_Query_ - commentId: Overload:Terminal.Gui.MessageBox.Query - isSpec: "True" - fullName: Terminal.Gui.MessageBox.Query - nameWithType: MessageBox.Query -- uid: Terminal.Gui.MouseEvent - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html - commentId: T:Terminal.Gui.MouseEvent - fullName: Terminal.Gui.MouseEvent - nameWithType: MouseEvent -- uid: Terminal.Gui.MouseEvent.Flags - name: Flags - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_Flags - commentId: F:Terminal.Gui.MouseEvent.Flags - fullName: Terminal.Gui.MouseEvent.Flags - nameWithType: MouseEvent.Flags -- uid: Terminal.Gui.MouseEvent.OfX - name: OfX - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_OfX - commentId: F:Terminal.Gui.MouseEvent.OfX - fullName: Terminal.Gui.MouseEvent.OfX - nameWithType: MouseEvent.OfX -- uid: Terminal.Gui.MouseEvent.OfY - name: OfY - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_OfY - commentId: F:Terminal.Gui.MouseEvent.OfY - fullName: Terminal.Gui.MouseEvent.OfY - nameWithType: MouseEvent.OfY -- uid: Terminal.Gui.MouseEvent.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_ToString - commentId: M:Terminal.Gui.MouseEvent.ToString - fullName: Terminal.Gui.MouseEvent.ToString() - nameWithType: MouseEvent.ToString() -- uid: Terminal.Gui.MouseEvent.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_ToString_ - commentId: Overload:Terminal.Gui.MouseEvent.ToString - isSpec: "True" - fullName: Terminal.Gui.MouseEvent.ToString - nameWithType: MouseEvent.ToString -- uid: Terminal.Gui.MouseEvent.View - name: View - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_View - commentId: F:Terminal.Gui.MouseEvent.View - fullName: Terminal.Gui.MouseEvent.View - nameWithType: MouseEvent.View -- uid: Terminal.Gui.MouseEvent.X - name: X - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_X - commentId: F:Terminal.Gui.MouseEvent.X - fullName: Terminal.Gui.MouseEvent.X - nameWithType: MouseEvent.X -- uid: Terminal.Gui.MouseEvent.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.MouseEvent.html#Terminal_Gui_MouseEvent_Y - commentId: F:Terminal.Gui.MouseEvent.Y - fullName: Terminal.Gui.MouseEvent.Y - nameWithType: MouseEvent.Y -- uid: Terminal.Gui.MouseFlags - name: MouseFlags - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html - commentId: T:Terminal.Gui.MouseFlags - fullName: Terminal.Gui.MouseFlags - nameWithType: MouseFlags -- uid: Terminal.Gui.MouseFlags.AllEvents - name: AllEvents - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_AllEvents - commentId: F:Terminal.Gui.MouseFlags.AllEvents - fullName: Terminal.Gui.MouseFlags.AllEvents - nameWithType: MouseFlags.AllEvents -- uid: Terminal.Gui.MouseFlags.Button1Clicked - name: Button1Clicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button1Clicked - commentId: F:Terminal.Gui.MouseFlags.Button1Clicked - fullName: Terminal.Gui.MouseFlags.Button1Clicked - nameWithType: MouseFlags.Button1Clicked -- uid: Terminal.Gui.MouseFlags.Button1DoubleClicked - name: Button1DoubleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button1DoubleClicked - commentId: F:Terminal.Gui.MouseFlags.Button1DoubleClicked - fullName: Terminal.Gui.MouseFlags.Button1DoubleClicked - nameWithType: MouseFlags.Button1DoubleClicked -- uid: Terminal.Gui.MouseFlags.Button1Pressed - name: Button1Pressed - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button1Pressed - commentId: F:Terminal.Gui.MouseFlags.Button1Pressed - fullName: Terminal.Gui.MouseFlags.Button1Pressed - nameWithType: MouseFlags.Button1Pressed -- uid: Terminal.Gui.MouseFlags.Button1Released - name: Button1Released - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button1Released - commentId: F:Terminal.Gui.MouseFlags.Button1Released - fullName: Terminal.Gui.MouseFlags.Button1Released - nameWithType: MouseFlags.Button1Released -- uid: Terminal.Gui.MouseFlags.Button1TripleClicked - name: Button1TripleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button1TripleClicked - commentId: F:Terminal.Gui.MouseFlags.Button1TripleClicked - fullName: Terminal.Gui.MouseFlags.Button1TripleClicked - nameWithType: MouseFlags.Button1TripleClicked -- uid: Terminal.Gui.MouseFlags.Button2Clicked - name: Button2Clicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button2Clicked - commentId: F:Terminal.Gui.MouseFlags.Button2Clicked - fullName: Terminal.Gui.MouseFlags.Button2Clicked - nameWithType: MouseFlags.Button2Clicked -- uid: Terminal.Gui.MouseFlags.Button2DoubleClicked - name: Button2DoubleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button2DoubleClicked - commentId: F:Terminal.Gui.MouseFlags.Button2DoubleClicked - fullName: Terminal.Gui.MouseFlags.Button2DoubleClicked - nameWithType: MouseFlags.Button2DoubleClicked -- uid: Terminal.Gui.MouseFlags.Button2Pressed - name: Button2Pressed - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button2Pressed - commentId: F:Terminal.Gui.MouseFlags.Button2Pressed - fullName: Terminal.Gui.MouseFlags.Button2Pressed - nameWithType: MouseFlags.Button2Pressed -- uid: Terminal.Gui.MouseFlags.Button2Released - name: Button2Released - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button2Released - commentId: F:Terminal.Gui.MouseFlags.Button2Released - fullName: Terminal.Gui.MouseFlags.Button2Released - nameWithType: MouseFlags.Button2Released -- uid: Terminal.Gui.MouseFlags.Button2TripleClicked - name: Button2TripleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button2TripleClicked - commentId: F:Terminal.Gui.MouseFlags.Button2TripleClicked - fullName: Terminal.Gui.MouseFlags.Button2TripleClicked - nameWithType: MouseFlags.Button2TripleClicked -- uid: Terminal.Gui.MouseFlags.Button3Clicked - name: Button3Clicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button3Clicked - commentId: F:Terminal.Gui.MouseFlags.Button3Clicked - fullName: Terminal.Gui.MouseFlags.Button3Clicked - nameWithType: MouseFlags.Button3Clicked -- uid: Terminal.Gui.MouseFlags.Button3DoubleClicked - name: Button3DoubleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button3DoubleClicked - commentId: F:Terminal.Gui.MouseFlags.Button3DoubleClicked - fullName: Terminal.Gui.MouseFlags.Button3DoubleClicked - nameWithType: MouseFlags.Button3DoubleClicked -- uid: Terminal.Gui.MouseFlags.Button3Pressed - name: Button3Pressed - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button3Pressed - commentId: F:Terminal.Gui.MouseFlags.Button3Pressed - fullName: Terminal.Gui.MouseFlags.Button3Pressed - nameWithType: MouseFlags.Button3Pressed -- uid: Terminal.Gui.MouseFlags.Button3Released - name: Button3Released - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button3Released - commentId: F:Terminal.Gui.MouseFlags.Button3Released - fullName: Terminal.Gui.MouseFlags.Button3Released - nameWithType: MouseFlags.Button3Released -- uid: Terminal.Gui.MouseFlags.Button3TripleClicked - name: Button3TripleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button3TripleClicked - commentId: F:Terminal.Gui.MouseFlags.Button3TripleClicked - fullName: Terminal.Gui.MouseFlags.Button3TripleClicked - nameWithType: MouseFlags.Button3TripleClicked -- uid: Terminal.Gui.MouseFlags.Button4Clicked - name: Button4Clicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button4Clicked - commentId: F:Terminal.Gui.MouseFlags.Button4Clicked - fullName: Terminal.Gui.MouseFlags.Button4Clicked - nameWithType: MouseFlags.Button4Clicked -- uid: Terminal.Gui.MouseFlags.Button4DoubleClicked - name: Button4DoubleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button4DoubleClicked - commentId: F:Terminal.Gui.MouseFlags.Button4DoubleClicked - fullName: Terminal.Gui.MouseFlags.Button4DoubleClicked - nameWithType: MouseFlags.Button4DoubleClicked -- uid: Terminal.Gui.MouseFlags.Button4Pressed - name: Button4Pressed - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button4Pressed - commentId: F:Terminal.Gui.MouseFlags.Button4Pressed - fullName: Terminal.Gui.MouseFlags.Button4Pressed - nameWithType: MouseFlags.Button4Pressed -- uid: Terminal.Gui.MouseFlags.Button4Released - name: Button4Released - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button4Released - commentId: F:Terminal.Gui.MouseFlags.Button4Released - fullName: Terminal.Gui.MouseFlags.Button4Released - nameWithType: MouseFlags.Button4Released -- uid: Terminal.Gui.MouseFlags.Button4TripleClicked - name: Button4TripleClicked - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_Button4TripleClicked - commentId: F:Terminal.Gui.MouseFlags.Button4TripleClicked - fullName: Terminal.Gui.MouseFlags.Button4TripleClicked - nameWithType: MouseFlags.Button4TripleClicked -- uid: Terminal.Gui.MouseFlags.ButtonAlt - name: ButtonAlt - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_ButtonAlt - commentId: F:Terminal.Gui.MouseFlags.ButtonAlt - fullName: Terminal.Gui.MouseFlags.ButtonAlt - nameWithType: MouseFlags.ButtonAlt -- uid: Terminal.Gui.MouseFlags.ButtonCtrl - name: ButtonCtrl - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_ButtonCtrl - commentId: F:Terminal.Gui.MouseFlags.ButtonCtrl - fullName: Terminal.Gui.MouseFlags.ButtonCtrl - nameWithType: MouseFlags.ButtonCtrl -- uid: Terminal.Gui.MouseFlags.ButtonShift - name: ButtonShift - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_ButtonShift - commentId: F:Terminal.Gui.MouseFlags.ButtonShift - fullName: Terminal.Gui.MouseFlags.ButtonShift - nameWithType: MouseFlags.ButtonShift -- uid: Terminal.Gui.MouseFlags.ReportMousePosition - name: ReportMousePosition - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_ReportMousePosition - commentId: F:Terminal.Gui.MouseFlags.ReportMousePosition - fullName: Terminal.Gui.MouseFlags.ReportMousePosition - nameWithType: MouseFlags.ReportMousePosition -- uid: Terminal.Gui.MouseFlags.WheeledDown - name: WheeledDown - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_WheeledDown - commentId: F:Terminal.Gui.MouseFlags.WheeledDown - fullName: Terminal.Gui.MouseFlags.WheeledDown - nameWithType: MouseFlags.WheeledDown -- uid: Terminal.Gui.MouseFlags.WheeledLeft - name: WheeledLeft - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_WheeledLeft - commentId: F:Terminal.Gui.MouseFlags.WheeledLeft - fullName: Terminal.Gui.MouseFlags.WheeledLeft - nameWithType: MouseFlags.WheeledLeft -- uid: Terminal.Gui.MouseFlags.WheeledRight - name: WheeledRight - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_WheeledRight - commentId: F:Terminal.Gui.MouseFlags.WheeledRight - fullName: Terminal.Gui.MouseFlags.WheeledRight - nameWithType: MouseFlags.WheeledRight -- uid: Terminal.Gui.MouseFlags.WheeledUp - name: WheeledUp - href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_WheeledUp - commentId: F:Terminal.Gui.MouseFlags.WheeledUp - fullName: Terminal.Gui.MouseFlags.WheeledUp - nameWithType: MouseFlags.WheeledUp -- uid: Terminal.Gui.OpenDialog - name: OpenDialog - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html - commentId: T:Terminal.Gui.OpenDialog - fullName: Terminal.Gui.OpenDialog - nameWithType: OpenDialog -- uid: Terminal.Gui.OpenDialog.#ctor - name: OpenDialog() - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog__ctor - commentId: M:Terminal.Gui.OpenDialog.#ctor - fullName: Terminal.Gui.OpenDialog.OpenDialog() - nameWithType: OpenDialog.OpenDialog() -- uid: Terminal.Gui.OpenDialog.#ctor(NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String},Terminal.Gui.OpenDialog.OpenMode) - name: OpenDialog(ustring, ustring, List, OpenDialog.OpenMode) - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog__ctor_NStack_ustring_NStack_ustring_System_Collections_Generic_List_System_String__Terminal_Gui_OpenDialog_OpenMode_ - commentId: M:Terminal.Gui.OpenDialog.#ctor(NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String},Terminal.Gui.OpenDialog.OpenMode) - name.vb: OpenDialog(ustring, ustring, List(Of String), OpenDialog.OpenMode) - fullName: Terminal.Gui.OpenDialog.OpenDialog(NStack.ustring, NStack.ustring, System.Collections.Generic.List, Terminal.Gui.OpenDialog.OpenMode) - fullName.vb: Terminal.Gui.OpenDialog.OpenDialog(NStack.ustring, NStack.ustring, System.Collections.Generic.List(Of System.String), Terminal.Gui.OpenDialog.OpenMode) - nameWithType: OpenDialog.OpenDialog(ustring, ustring, List, OpenDialog.OpenMode) - nameWithType.vb: OpenDialog.OpenDialog(ustring, ustring, List(Of String), OpenDialog.OpenMode) -- uid: Terminal.Gui.OpenDialog.#ctor* - name: OpenDialog - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog__ctor_ - commentId: Overload:Terminal.Gui.OpenDialog.#ctor - isSpec: "True" - fullName: Terminal.Gui.OpenDialog.OpenDialog - nameWithType: OpenDialog.OpenDialog -- uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection - name: AllowsMultipleSelection - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_AllowsMultipleSelection - commentId: P:Terminal.Gui.OpenDialog.AllowsMultipleSelection - fullName: Terminal.Gui.OpenDialog.AllowsMultipleSelection - nameWithType: OpenDialog.AllowsMultipleSelection -- uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection* - name: AllowsMultipleSelection - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_AllowsMultipleSelection_ - commentId: Overload:Terminal.Gui.OpenDialog.AllowsMultipleSelection - isSpec: "True" - fullName: Terminal.Gui.OpenDialog.AllowsMultipleSelection - nameWithType: OpenDialog.AllowsMultipleSelection -- uid: Terminal.Gui.OpenDialog.CanChooseDirectories - name: CanChooseDirectories - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseDirectories - commentId: P:Terminal.Gui.OpenDialog.CanChooseDirectories - fullName: Terminal.Gui.OpenDialog.CanChooseDirectories - nameWithType: OpenDialog.CanChooseDirectories -- uid: Terminal.Gui.OpenDialog.CanChooseDirectories* - name: CanChooseDirectories - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseDirectories_ - commentId: Overload:Terminal.Gui.OpenDialog.CanChooseDirectories - isSpec: "True" - fullName: Terminal.Gui.OpenDialog.CanChooseDirectories - nameWithType: OpenDialog.CanChooseDirectories -- uid: Terminal.Gui.OpenDialog.CanChooseFiles - name: CanChooseFiles - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseFiles - commentId: P:Terminal.Gui.OpenDialog.CanChooseFiles - fullName: Terminal.Gui.OpenDialog.CanChooseFiles - nameWithType: OpenDialog.CanChooseFiles -- uid: Terminal.Gui.OpenDialog.CanChooseFiles* - name: CanChooseFiles - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseFiles_ - commentId: Overload:Terminal.Gui.OpenDialog.CanChooseFiles - isSpec: "True" - fullName: Terminal.Gui.OpenDialog.CanChooseFiles - nameWithType: OpenDialog.CanChooseFiles -- uid: Terminal.Gui.OpenDialog.FilePaths - name: FilePaths - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_FilePaths - commentId: P:Terminal.Gui.OpenDialog.FilePaths - fullName: Terminal.Gui.OpenDialog.FilePaths - nameWithType: OpenDialog.FilePaths -- uid: Terminal.Gui.OpenDialog.FilePaths* - name: FilePaths - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_FilePaths_ - commentId: Overload:Terminal.Gui.OpenDialog.FilePaths - isSpec: "True" - fullName: Terminal.Gui.OpenDialog.FilePaths - nameWithType: OpenDialog.FilePaths -- uid: Terminal.Gui.OpenDialog.OpenMode - name: OpenDialog.OpenMode - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html - commentId: T:Terminal.Gui.OpenDialog.OpenMode - fullName: Terminal.Gui.OpenDialog.OpenMode - nameWithType: OpenDialog.OpenMode -- uid: Terminal.Gui.OpenDialog.OpenMode.Directory - name: Directory - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html#Terminal_Gui_OpenDialog_OpenMode_Directory - commentId: F:Terminal.Gui.OpenDialog.OpenMode.Directory - fullName: Terminal.Gui.OpenDialog.OpenMode.Directory - nameWithType: OpenDialog.OpenMode.Directory -- uid: Terminal.Gui.OpenDialog.OpenMode.File - name: File - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html#Terminal_Gui_OpenDialog_OpenMode_File - commentId: F:Terminal.Gui.OpenDialog.OpenMode.File - fullName: Terminal.Gui.OpenDialog.OpenMode.File - nameWithType: OpenDialog.OpenMode.File -- uid: Terminal.Gui.OpenDialog.OpenMode.Mixed - name: Mixed - href: api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html#Terminal_Gui_OpenDialog_OpenMode_Mixed - commentId: F:Terminal.Gui.OpenDialog.OpenMode.Mixed - fullName: Terminal.Gui.OpenDialog.OpenMode.Mixed - nameWithType: OpenDialog.OpenMode.Mixed -- uid: Terminal.Gui.PanelView - name: PanelView - href: api/Terminal.Gui/Terminal.Gui.PanelView.html - commentId: T:Terminal.Gui.PanelView - fullName: Terminal.Gui.PanelView - nameWithType: PanelView -- uid: Terminal.Gui.PanelView.#ctor - name: PanelView() - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView__ctor - commentId: M:Terminal.Gui.PanelView.#ctor - fullName: Terminal.Gui.PanelView.PanelView() - nameWithType: PanelView.PanelView() -- uid: Terminal.Gui.PanelView.#ctor(Terminal.Gui.View) - name: PanelView(View) - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView__ctor_Terminal_Gui_View_ - commentId: M:Terminal.Gui.PanelView.#ctor(Terminal.Gui.View) - fullName: Terminal.Gui.PanelView.PanelView(Terminal.Gui.View) - nameWithType: PanelView.PanelView(View) -- uid: Terminal.Gui.PanelView.#ctor* - name: PanelView - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView__ctor_ - commentId: Overload:Terminal.Gui.PanelView.#ctor - isSpec: "True" - fullName: Terminal.Gui.PanelView.PanelView - nameWithType: PanelView.PanelView -- uid: Terminal.Gui.PanelView.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.PanelView.Add(Terminal.Gui.View) - fullName: Terminal.Gui.PanelView.Add(Terminal.Gui.View) - nameWithType: PanelView.Add(View) -- uid: Terminal.Gui.PanelView.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Add_ - commentId: Overload:Terminal.Gui.PanelView.Add - isSpec: "True" - fullName: Terminal.Gui.PanelView.Add - nameWithType: PanelView.Add -- uid: Terminal.Gui.PanelView.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Border - commentId: P:Terminal.Gui.PanelView.Border - fullName: Terminal.Gui.PanelView.Border - nameWithType: PanelView.Border -- uid: Terminal.Gui.PanelView.Border* - name: Border - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Border_ - commentId: Overload:Terminal.Gui.PanelView.Border - isSpec: "True" - fullName: Terminal.Gui.PanelView.Border - nameWithType: PanelView.Border -- uid: Terminal.Gui.PanelView.Child - name: Child - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Child - commentId: P:Terminal.Gui.PanelView.Child - fullName: Terminal.Gui.PanelView.Child - nameWithType: PanelView.Child -- uid: Terminal.Gui.PanelView.Child* - name: Child - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Child_ - commentId: Overload:Terminal.Gui.PanelView.Child - isSpec: "True" - fullName: Terminal.Gui.PanelView.Child - nameWithType: PanelView.Child -- uid: Terminal.Gui.PanelView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.PanelView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.PanelView.Redraw(Terminal.Gui.Rect) - nameWithType: PanelView.Redraw(Rect) -- uid: Terminal.Gui.PanelView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Redraw_ - commentId: Overload:Terminal.Gui.PanelView.Redraw - isSpec: "True" - fullName: Terminal.Gui.PanelView.Redraw - nameWithType: PanelView.Redraw -- uid: Terminal.Gui.PanelView.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.PanelView.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.PanelView.Remove(Terminal.Gui.View) - nameWithType: PanelView.Remove(View) -- uid: Terminal.Gui.PanelView.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_Remove_ - commentId: Overload:Terminal.Gui.PanelView.Remove - isSpec: "True" - fullName: Terminal.Gui.PanelView.Remove - nameWithType: PanelView.Remove -- uid: Terminal.Gui.PanelView.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_RemoveAll - commentId: M:Terminal.Gui.PanelView.RemoveAll - fullName: Terminal.Gui.PanelView.RemoveAll() - nameWithType: PanelView.RemoveAll() -- uid: Terminal.Gui.PanelView.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_RemoveAll_ - commentId: Overload:Terminal.Gui.PanelView.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.PanelView.RemoveAll - nameWithType: PanelView.RemoveAll -- uid: Terminal.Gui.PanelView.UsePanelFrame - name: UsePanelFrame - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_UsePanelFrame - commentId: P:Terminal.Gui.PanelView.UsePanelFrame - fullName: Terminal.Gui.PanelView.UsePanelFrame - nameWithType: PanelView.UsePanelFrame -- uid: Terminal.Gui.PanelView.UsePanelFrame* - name: UsePanelFrame - href: api/Terminal.Gui/Terminal.Gui.PanelView.html#Terminal_Gui_PanelView_UsePanelFrame_ - commentId: Overload:Terminal.Gui.PanelView.UsePanelFrame - isSpec: "True" - fullName: Terminal.Gui.PanelView.UsePanelFrame - nameWithType: PanelView.UsePanelFrame -- uid: Terminal.Gui.Point - name: Point - href: api/Terminal.Gui/Terminal.Gui.Point.html - commentId: T:Terminal.Gui.Point - fullName: Terminal.Gui.Point - nameWithType: Point -- uid: Terminal.Gui.Point.#ctor(System.Int32,System.Int32) - name: Point(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point__ctor_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Point.#ctor(System.Int32,System.Int32) - fullName: Terminal.Gui.Point.Point(System.Int32, System.Int32) - nameWithType: Point.Point(Int32, Int32) -- uid: Terminal.Gui.Point.#ctor(Terminal.Gui.Size) - name: Point(Size) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point__ctor_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Point.#ctor(Terminal.Gui.Size) - fullName: Terminal.Gui.Point.Point(Terminal.Gui.Size) - nameWithType: Point.Point(Size) -- uid: Terminal.Gui.Point.#ctor* - name: Point - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point__ctor_ - commentId: Overload:Terminal.Gui.Point.#ctor - isSpec: "True" - fullName: Terminal.Gui.Point.Point - nameWithType: Point.Point -- uid: Terminal.Gui.Point.Add(Terminal.Gui.Point,Terminal.Gui.Size) - name: Add(Point, Size) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Add_Terminal_Gui_Point_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Point.Add(Terminal.Gui.Point,Terminal.Gui.Size) - fullName: Terminal.Gui.Point.Add(Terminal.Gui.Point, Terminal.Gui.Size) - nameWithType: Point.Add(Point, Size) -- uid: Terminal.Gui.Point.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Add_ - commentId: Overload:Terminal.Gui.Point.Add - isSpec: "True" - fullName: Terminal.Gui.Point.Add - nameWithType: Point.Add -- uid: Terminal.Gui.Point.Empty - name: Empty - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Empty - commentId: F:Terminal.Gui.Point.Empty - fullName: Terminal.Gui.Point.Empty - nameWithType: Point.Empty -- uid: Terminal.Gui.Point.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Equals_System_Object_ - commentId: M:Terminal.Gui.Point.Equals(System.Object) - fullName: Terminal.Gui.Point.Equals(System.Object) - nameWithType: Point.Equals(Object) -- uid: Terminal.Gui.Point.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Equals_ - commentId: Overload:Terminal.Gui.Point.Equals - isSpec: "True" - fullName: Terminal.Gui.Point.Equals - nameWithType: Point.Equals -- uid: Terminal.Gui.Point.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_GetHashCode - commentId: M:Terminal.Gui.Point.GetHashCode - fullName: Terminal.Gui.Point.GetHashCode() - nameWithType: Point.GetHashCode() -- uid: Terminal.Gui.Point.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_GetHashCode_ - commentId: Overload:Terminal.Gui.Point.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.Point.GetHashCode - nameWithType: Point.GetHashCode -- uid: Terminal.Gui.Point.IsEmpty - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_IsEmpty - commentId: P:Terminal.Gui.Point.IsEmpty - fullName: Terminal.Gui.Point.IsEmpty - nameWithType: Point.IsEmpty -- uid: Terminal.Gui.Point.IsEmpty* - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_IsEmpty_ - commentId: Overload:Terminal.Gui.Point.IsEmpty - isSpec: "True" - fullName: Terminal.Gui.Point.IsEmpty - nameWithType: Point.IsEmpty -- uid: Terminal.Gui.Point.Offset(System.Int32,System.Int32) - name: Offset(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Offset_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Point.Offset(System.Int32,System.Int32) - fullName: Terminal.Gui.Point.Offset(System.Int32, System.Int32) - nameWithType: Point.Offset(Int32, Int32) -- uid: Terminal.Gui.Point.Offset(Terminal.Gui.Point) - name: Offset(Point) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Offset_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Point.Offset(Terminal.Gui.Point) - fullName: Terminal.Gui.Point.Offset(Terminal.Gui.Point) - nameWithType: Point.Offset(Point) -- uid: Terminal.Gui.Point.Offset* - name: Offset - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Offset_ - commentId: Overload:Terminal.Gui.Point.Offset - isSpec: "True" - fullName: Terminal.Gui.Point.Offset - nameWithType: Point.Offset -- uid: Terminal.Gui.Point.op_Addition(Terminal.Gui.Point,Terminal.Gui.Size) - name: Addition(Point, Size) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Addition_Terminal_Gui_Point_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Point.op_Addition(Terminal.Gui.Point,Terminal.Gui.Size) - fullName: Terminal.Gui.Point.Addition(Terminal.Gui.Point, Terminal.Gui.Size) - nameWithType: Point.Addition(Point, Size) -- uid: Terminal.Gui.Point.op_Addition* - name: Addition - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Addition_ - commentId: Overload:Terminal.Gui.Point.op_Addition - isSpec: "True" - fullName: Terminal.Gui.Point.Addition - nameWithType: Point.Addition -- uid: Terminal.Gui.Point.op_Equality(Terminal.Gui.Point,Terminal.Gui.Point) - name: Equality(Point, Point) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Equality_Terminal_Gui_Point_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Point.op_Equality(Terminal.Gui.Point,Terminal.Gui.Point) - fullName: Terminal.Gui.Point.Equality(Terminal.Gui.Point, Terminal.Gui.Point) - nameWithType: Point.Equality(Point, Point) -- uid: Terminal.Gui.Point.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Equality_ - commentId: Overload:Terminal.Gui.Point.op_Equality - isSpec: "True" - fullName: Terminal.Gui.Point.Equality - nameWithType: Point.Equality -- uid: Terminal.Gui.Point.op_Explicit(Terminal.Gui.Point)~Terminal.Gui.Size - name: Explicit(Point to Size) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Explicit_Terminal_Gui_Point__Terminal_Gui_Size - commentId: M:Terminal.Gui.Point.op_Explicit(Terminal.Gui.Point)~Terminal.Gui.Size - name.vb: Narrowing(Point to Size) - fullName: Terminal.Gui.Point.Explicit(Terminal.Gui.Point to Terminal.Gui.Size) - fullName.vb: Terminal.Gui.Point.Narrowing(Terminal.Gui.Point to Terminal.Gui.Size) - nameWithType: Point.Explicit(Point to Size) - nameWithType.vb: Point.Narrowing(Point to Size) -- uid: Terminal.Gui.Point.op_Explicit* - name: Explicit - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Explicit_ - commentId: Overload:Terminal.Gui.Point.op_Explicit - isSpec: "True" - name.vb: Narrowing - fullName: Terminal.Gui.Point.Explicit - fullName.vb: Terminal.Gui.Point.Narrowing - nameWithType: Point.Explicit - nameWithType.vb: Point.Narrowing -- uid: Terminal.Gui.Point.op_Inequality(Terminal.Gui.Point,Terminal.Gui.Point) - name: Inequality(Point, Point) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Inequality_Terminal_Gui_Point_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Point.op_Inequality(Terminal.Gui.Point,Terminal.Gui.Point) - fullName: Terminal.Gui.Point.Inequality(Terminal.Gui.Point, Terminal.Gui.Point) - nameWithType: Point.Inequality(Point, Point) -- uid: Terminal.Gui.Point.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Inequality_ - commentId: Overload:Terminal.Gui.Point.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.Point.Inequality - nameWithType: Point.Inequality -- uid: Terminal.Gui.Point.op_Subtraction(Terminal.Gui.Point,Terminal.Gui.Size) - name: Subtraction(Point, Size) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Subtraction_Terminal_Gui_Point_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Point.op_Subtraction(Terminal.Gui.Point,Terminal.Gui.Size) - fullName: Terminal.Gui.Point.Subtraction(Terminal.Gui.Point, Terminal.Gui.Size) - nameWithType: Point.Subtraction(Point, Size) -- uid: Terminal.Gui.Point.op_Subtraction* - name: Subtraction - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_op_Subtraction_ - commentId: Overload:Terminal.Gui.Point.op_Subtraction - isSpec: "True" - fullName: Terminal.Gui.Point.Subtraction - nameWithType: Point.Subtraction -- uid: Terminal.Gui.Point.Subtract(Terminal.Gui.Point,Terminal.Gui.Size) - name: Subtract(Point, Size) - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Subtract_Terminal_Gui_Point_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Point.Subtract(Terminal.Gui.Point,Terminal.Gui.Size) - fullName: Terminal.Gui.Point.Subtract(Terminal.Gui.Point, Terminal.Gui.Size) - nameWithType: Point.Subtract(Point, Size) -- uid: Terminal.Gui.Point.Subtract* - name: Subtract - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Subtract_ - commentId: Overload:Terminal.Gui.Point.Subtract - isSpec: "True" - fullName: Terminal.Gui.Point.Subtract - nameWithType: Point.Subtract -- uid: Terminal.Gui.Point.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_ToString - commentId: M:Terminal.Gui.Point.ToString - fullName: Terminal.Gui.Point.ToString() - nameWithType: Point.ToString() -- uid: Terminal.Gui.Point.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_ToString_ - commentId: Overload:Terminal.Gui.Point.ToString - isSpec: "True" - fullName: Terminal.Gui.Point.ToString - nameWithType: Point.ToString -- uid: Terminal.Gui.Point.X - name: X - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_X - commentId: F:Terminal.Gui.Point.X - fullName: Terminal.Gui.Point.X - nameWithType: Point.X -- uid: Terminal.Gui.Point.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.Point.html#Terminal_Gui_Point_Y - commentId: F:Terminal.Gui.Point.Y - fullName: Terminal.Gui.Point.Y - nameWithType: Point.Y -- uid: Terminal.Gui.PointF - name: PointF - href: api/Terminal.Gui/Terminal.Gui.PointF.html - commentId: T:Terminal.Gui.PointF - fullName: Terminal.Gui.PointF - nameWithType: PointF -- uid: Terminal.Gui.PointF.#ctor(System.Single,System.Single) - name: PointF(Single, Single) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF__ctor_System_Single_System_Single_ - commentId: M:Terminal.Gui.PointF.#ctor(System.Single,System.Single) - fullName: Terminal.Gui.PointF.PointF(System.Single, System.Single) - nameWithType: PointF.PointF(Single, Single) -- uid: Terminal.Gui.PointF.#ctor* - name: PointF - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF__ctor_ - commentId: Overload:Terminal.Gui.PointF.#ctor - isSpec: "True" - fullName: Terminal.Gui.PointF.PointF - nameWithType: PointF.PointF -- uid: Terminal.Gui.PointF.Add(Terminal.Gui.PointF,Terminal.Gui.Size) - name: Add(PointF, Size) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Add_Terminal_Gui_PointF_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.PointF.Add(Terminal.Gui.PointF,Terminal.Gui.Size) - fullName: Terminal.Gui.PointF.Add(Terminal.Gui.PointF, Terminal.Gui.Size) - nameWithType: PointF.Add(PointF, Size) -- uid: Terminal.Gui.PointF.Add(Terminal.Gui.PointF,Terminal.Gui.SizeF) - name: Add(PointF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Add_Terminal_Gui_PointF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.PointF.Add(Terminal.Gui.PointF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.PointF.Add(Terminal.Gui.PointF, Terminal.Gui.SizeF) - nameWithType: PointF.Add(PointF, SizeF) -- uid: Terminal.Gui.PointF.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Add_ - commentId: Overload:Terminal.Gui.PointF.Add - isSpec: "True" - fullName: Terminal.Gui.PointF.Add - nameWithType: PointF.Add -- uid: Terminal.Gui.PointF.Empty - name: Empty - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Empty - commentId: F:Terminal.Gui.PointF.Empty - fullName: Terminal.Gui.PointF.Empty - nameWithType: PointF.Empty -- uid: Terminal.Gui.PointF.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Equals_System_Object_ - commentId: M:Terminal.Gui.PointF.Equals(System.Object) - fullName: Terminal.Gui.PointF.Equals(System.Object) - nameWithType: PointF.Equals(Object) -- uid: Terminal.Gui.PointF.Equals(Terminal.Gui.PointF) - name: Equals(PointF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Equals_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.PointF.Equals(Terminal.Gui.PointF) - fullName: Terminal.Gui.PointF.Equals(Terminal.Gui.PointF) - nameWithType: PointF.Equals(PointF) -- uid: Terminal.Gui.PointF.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Equals_ - commentId: Overload:Terminal.Gui.PointF.Equals - isSpec: "True" - fullName: Terminal.Gui.PointF.Equals - nameWithType: PointF.Equals -- uid: Terminal.Gui.PointF.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_GetHashCode - commentId: M:Terminal.Gui.PointF.GetHashCode - fullName: Terminal.Gui.PointF.GetHashCode() - nameWithType: PointF.GetHashCode() -- uid: Terminal.Gui.PointF.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_GetHashCode_ - commentId: Overload:Terminal.Gui.PointF.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.PointF.GetHashCode - nameWithType: PointF.GetHashCode -- uid: Terminal.Gui.PointF.IsEmpty - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_IsEmpty - commentId: P:Terminal.Gui.PointF.IsEmpty - fullName: Terminal.Gui.PointF.IsEmpty - nameWithType: PointF.IsEmpty -- uid: Terminal.Gui.PointF.IsEmpty* - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_IsEmpty_ - commentId: Overload:Terminal.Gui.PointF.IsEmpty - isSpec: "True" - fullName: Terminal.Gui.PointF.IsEmpty - nameWithType: PointF.IsEmpty -- uid: Terminal.Gui.PointF.op_Addition(Terminal.Gui.PointF,Terminal.Gui.Size) - name: Addition(PointF, Size) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Addition_Terminal_Gui_PointF_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.PointF.op_Addition(Terminal.Gui.PointF,Terminal.Gui.Size) - fullName: Terminal.Gui.PointF.Addition(Terminal.Gui.PointF, Terminal.Gui.Size) - nameWithType: PointF.Addition(PointF, Size) -- uid: Terminal.Gui.PointF.op_Addition(Terminal.Gui.PointF,Terminal.Gui.SizeF) - name: Addition(PointF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Addition_Terminal_Gui_PointF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.PointF.op_Addition(Terminal.Gui.PointF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.PointF.Addition(Terminal.Gui.PointF, Terminal.Gui.SizeF) - nameWithType: PointF.Addition(PointF, SizeF) -- uid: Terminal.Gui.PointF.op_Addition* - name: Addition - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Addition_ - commentId: Overload:Terminal.Gui.PointF.op_Addition - isSpec: "True" - fullName: Terminal.Gui.PointF.Addition - nameWithType: PointF.Addition -- uid: Terminal.Gui.PointF.op_Equality(Terminal.Gui.PointF,Terminal.Gui.PointF) - name: Equality(PointF, PointF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Equality_Terminal_Gui_PointF_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.PointF.op_Equality(Terminal.Gui.PointF,Terminal.Gui.PointF) - fullName: Terminal.Gui.PointF.Equality(Terminal.Gui.PointF, Terminal.Gui.PointF) - nameWithType: PointF.Equality(PointF, PointF) -- uid: Terminal.Gui.PointF.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Equality_ - commentId: Overload:Terminal.Gui.PointF.op_Equality - isSpec: "True" - fullName: Terminal.Gui.PointF.Equality - nameWithType: PointF.Equality -- uid: Terminal.Gui.PointF.op_Inequality(Terminal.Gui.PointF,Terminal.Gui.PointF) - name: Inequality(PointF, PointF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Inequality_Terminal_Gui_PointF_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.PointF.op_Inequality(Terminal.Gui.PointF,Terminal.Gui.PointF) - fullName: Terminal.Gui.PointF.Inequality(Terminal.Gui.PointF, Terminal.Gui.PointF) - nameWithType: PointF.Inequality(PointF, PointF) -- uid: Terminal.Gui.PointF.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Inequality_ - commentId: Overload:Terminal.Gui.PointF.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.PointF.Inequality - nameWithType: PointF.Inequality -- uid: Terminal.Gui.PointF.op_Subtraction(Terminal.Gui.PointF,Terminal.Gui.Size) - name: Subtraction(PointF, Size) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Subtraction_Terminal_Gui_PointF_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.PointF.op_Subtraction(Terminal.Gui.PointF,Terminal.Gui.Size) - fullName: Terminal.Gui.PointF.Subtraction(Terminal.Gui.PointF, Terminal.Gui.Size) - nameWithType: PointF.Subtraction(PointF, Size) -- uid: Terminal.Gui.PointF.op_Subtraction(Terminal.Gui.PointF,Terminal.Gui.SizeF) - name: Subtraction(PointF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Subtraction_Terminal_Gui_PointF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.PointF.op_Subtraction(Terminal.Gui.PointF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.PointF.Subtraction(Terminal.Gui.PointF, Terminal.Gui.SizeF) - nameWithType: PointF.Subtraction(PointF, SizeF) -- uid: Terminal.Gui.PointF.op_Subtraction* - name: Subtraction - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_op_Subtraction_ - commentId: Overload:Terminal.Gui.PointF.op_Subtraction - isSpec: "True" - fullName: Terminal.Gui.PointF.Subtraction - nameWithType: PointF.Subtraction -- uid: Terminal.Gui.PointF.Subtract(Terminal.Gui.PointF,Terminal.Gui.Size) - name: Subtract(PointF, Size) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Subtract_Terminal_Gui_PointF_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.PointF.Subtract(Terminal.Gui.PointF,Terminal.Gui.Size) - fullName: Terminal.Gui.PointF.Subtract(Terminal.Gui.PointF, Terminal.Gui.Size) - nameWithType: PointF.Subtract(PointF, Size) -- uid: Terminal.Gui.PointF.Subtract(Terminal.Gui.PointF,Terminal.Gui.SizeF) - name: Subtract(PointF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Subtract_Terminal_Gui_PointF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.PointF.Subtract(Terminal.Gui.PointF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.PointF.Subtract(Terminal.Gui.PointF, Terminal.Gui.SizeF) - nameWithType: PointF.Subtract(PointF, SizeF) -- uid: Terminal.Gui.PointF.Subtract* - name: Subtract - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Subtract_ - commentId: Overload:Terminal.Gui.PointF.Subtract - isSpec: "True" - fullName: Terminal.Gui.PointF.Subtract - nameWithType: PointF.Subtract -- uid: Terminal.Gui.PointF.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_ToString - commentId: M:Terminal.Gui.PointF.ToString - fullName: Terminal.Gui.PointF.ToString() - nameWithType: PointF.ToString() -- uid: Terminal.Gui.PointF.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_ToString_ - commentId: Overload:Terminal.Gui.PointF.ToString - isSpec: "True" - fullName: Terminal.Gui.PointF.ToString - nameWithType: PointF.ToString -- uid: Terminal.Gui.PointF.X - name: X - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_X - commentId: P:Terminal.Gui.PointF.X - fullName: Terminal.Gui.PointF.X - nameWithType: PointF.X -- uid: Terminal.Gui.PointF.X* - name: X - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_X_ - commentId: Overload:Terminal.Gui.PointF.X - isSpec: "True" - fullName: Terminal.Gui.PointF.X - nameWithType: PointF.X -- uid: Terminal.Gui.PointF.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Y - commentId: P:Terminal.Gui.PointF.Y - fullName: Terminal.Gui.PointF.Y - nameWithType: PointF.Y -- uid: Terminal.Gui.PointF.Y* - name: Y - href: api/Terminal.Gui/Terminal.Gui.PointF.html#Terminal_Gui_PointF_Y_ - commentId: Overload:Terminal.Gui.PointF.Y - isSpec: "True" - fullName: Terminal.Gui.PointF.Y - nameWithType: PointF.Y -- uid: Terminal.Gui.Pos - name: Pos - href: api/Terminal.Gui/Terminal.Gui.Pos.html - commentId: T:Terminal.Gui.Pos - fullName: Terminal.Gui.Pos - nameWithType: Pos -- uid: Terminal.Gui.Pos.AnchorEnd(System.Int32) - name: AnchorEnd(Int32) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_AnchorEnd_System_Int32_ - commentId: M:Terminal.Gui.Pos.AnchorEnd(System.Int32) - fullName: Terminal.Gui.Pos.AnchorEnd(System.Int32) - nameWithType: Pos.AnchorEnd(Int32) -- uid: Terminal.Gui.Pos.AnchorEnd* - name: AnchorEnd - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_AnchorEnd_ - commentId: Overload:Terminal.Gui.Pos.AnchorEnd - isSpec: "True" - fullName: Terminal.Gui.Pos.AnchorEnd - nameWithType: Pos.AnchorEnd -- uid: Terminal.Gui.Pos.At(System.Int32) - name: At(Int32) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_At_System_Int32_ - commentId: M:Terminal.Gui.Pos.At(System.Int32) - fullName: Terminal.Gui.Pos.At(System.Int32) - nameWithType: Pos.At(Int32) -- uid: Terminal.Gui.Pos.At* - name: At - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_At_ - commentId: Overload:Terminal.Gui.Pos.At - isSpec: "True" - fullName: Terminal.Gui.Pos.At - nameWithType: Pos.At -- uid: Terminal.Gui.Pos.Bottom(Terminal.Gui.View) - name: Bottom(View) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Bottom_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Pos.Bottom(Terminal.Gui.View) - fullName: Terminal.Gui.Pos.Bottom(Terminal.Gui.View) - nameWithType: Pos.Bottom(View) -- uid: Terminal.Gui.Pos.Bottom* - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Bottom_ - commentId: Overload:Terminal.Gui.Pos.Bottom - isSpec: "True" - fullName: Terminal.Gui.Pos.Bottom - nameWithType: Pos.Bottom -- uid: Terminal.Gui.Pos.Center - name: Center() - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Center - commentId: M:Terminal.Gui.Pos.Center - fullName: Terminal.Gui.Pos.Center() - nameWithType: Pos.Center() -- uid: Terminal.Gui.Pos.Center* - name: Center - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Center_ - commentId: Overload:Terminal.Gui.Pos.Center - isSpec: "True" - fullName: Terminal.Gui.Pos.Center - nameWithType: Pos.Center -- uid: Terminal.Gui.Pos.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Equals_System_Object_ - commentId: M:Terminal.Gui.Pos.Equals(System.Object) - fullName: Terminal.Gui.Pos.Equals(System.Object) - nameWithType: Pos.Equals(Object) -- uid: Terminal.Gui.Pos.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Equals_ - commentId: Overload:Terminal.Gui.Pos.Equals - isSpec: "True" - fullName: Terminal.Gui.Pos.Equals - nameWithType: Pos.Equals -- uid: Terminal.Gui.Pos.Function(System.Func{System.Int32}) - name: Function(Func) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Function_System_Func_System_Int32__ - commentId: M:Terminal.Gui.Pos.Function(System.Func{System.Int32}) - name.vb: Function(Func(Of Int32)) - fullName: Terminal.Gui.Pos.Function(System.Func) - fullName.vb: Terminal.Gui.Pos.Function(System.Func(Of System.Int32)) - nameWithType: Pos.Function(Func) - nameWithType.vb: Pos.Function(Func(Of Int32)) -- uid: Terminal.Gui.Pos.Function* - name: Function - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Function_ - commentId: Overload:Terminal.Gui.Pos.Function - isSpec: "True" - fullName: Terminal.Gui.Pos.Function - nameWithType: Pos.Function -- uid: Terminal.Gui.Pos.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_GetHashCode - commentId: M:Terminal.Gui.Pos.GetHashCode - fullName: Terminal.Gui.Pos.GetHashCode() - nameWithType: Pos.GetHashCode() -- uid: Terminal.Gui.Pos.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_GetHashCode_ - commentId: Overload:Terminal.Gui.Pos.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.Pos.GetHashCode - nameWithType: Pos.GetHashCode -- uid: Terminal.Gui.Pos.Left(Terminal.Gui.View) - name: Left(View) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Left_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Pos.Left(Terminal.Gui.View) - fullName: Terminal.Gui.Pos.Left(Terminal.Gui.View) - nameWithType: Pos.Left(View) -- uid: Terminal.Gui.Pos.Left* - name: Left - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Left_ - commentId: Overload:Terminal.Gui.Pos.Left - isSpec: "True" - fullName: Terminal.Gui.Pos.Left - nameWithType: Pos.Left -- uid: Terminal.Gui.Pos.op_Addition(Terminal.Gui.Pos,Terminal.Gui.Pos) - name: Addition(Pos, Pos) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_op_Addition_Terminal_Gui_Pos_Terminal_Gui_Pos_ - commentId: M:Terminal.Gui.Pos.op_Addition(Terminal.Gui.Pos,Terminal.Gui.Pos) - fullName: Terminal.Gui.Pos.Addition(Terminal.Gui.Pos, Terminal.Gui.Pos) - nameWithType: Pos.Addition(Pos, Pos) -- uid: Terminal.Gui.Pos.op_Addition* - name: Addition - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_op_Addition_ - commentId: Overload:Terminal.Gui.Pos.op_Addition - isSpec: "True" - fullName: Terminal.Gui.Pos.Addition - nameWithType: Pos.Addition -- uid: Terminal.Gui.Pos.op_Implicit(System.Int32)~Terminal.Gui.Pos - name: Implicit(Int32 to Pos) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_op_Implicit_System_Int32__Terminal_Gui_Pos - commentId: M:Terminal.Gui.Pos.op_Implicit(System.Int32)~Terminal.Gui.Pos - name.vb: Widening(Int32 to Pos) - fullName: Terminal.Gui.Pos.Implicit(System.Int32 to Terminal.Gui.Pos) - fullName.vb: Terminal.Gui.Pos.Widening(System.Int32 to Terminal.Gui.Pos) - nameWithType: Pos.Implicit(Int32 to Pos) - nameWithType.vb: Pos.Widening(Int32 to Pos) -- uid: Terminal.Gui.Pos.op_Implicit* - name: Implicit - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_op_Implicit_ - commentId: Overload:Terminal.Gui.Pos.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: Terminal.Gui.Pos.Implicit - fullName.vb: Terminal.Gui.Pos.Widening - nameWithType: Pos.Implicit - nameWithType.vb: Pos.Widening -- uid: Terminal.Gui.Pos.op_Subtraction(Terminal.Gui.Pos,Terminal.Gui.Pos) - name: Subtraction(Pos, Pos) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_op_Subtraction_Terminal_Gui_Pos_Terminal_Gui_Pos_ - commentId: M:Terminal.Gui.Pos.op_Subtraction(Terminal.Gui.Pos,Terminal.Gui.Pos) - fullName: Terminal.Gui.Pos.Subtraction(Terminal.Gui.Pos, Terminal.Gui.Pos) - nameWithType: Pos.Subtraction(Pos, Pos) -- uid: Terminal.Gui.Pos.op_Subtraction* - name: Subtraction - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_op_Subtraction_ - commentId: Overload:Terminal.Gui.Pos.op_Subtraction - isSpec: "True" - fullName: Terminal.Gui.Pos.Subtraction - nameWithType: Pos.Subtraction -- uid: Terminal.Gui.Pos.Percent(System.Single) - name: Percent(Single) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Percent_System_Single_ - commentId: M:Terminal.Gui.Pos.Percent(System.Single) - fullName: Terminal.Gui.Pos.Percent(System.Single) - nameWithType: Pos.Percent(Single) -- uid: Terminal.Gui.Pos.Percent* - name: Percent - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Percent_ - commentId: Overload:Terminal.Gui.Pos.Percent - isSpec: "True" - fullName: Terminal.Gui.Pos.Percent - nameWithType: Pos.Percent -- uid: Terminal.Gui.Pos.Right(Terminal.Gui.View) - name: Right(View) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Right_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Pos.Right(Terminal.Gui.View) - fullName: Terminal.Gui.Pos.Right(Terminal.Gui.View) - nameWithType: Pos.Right(View) -- uid: Terminal.Gui.Pos.Right* - name: Right - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Right_ - commentId: Overload:Terminal.Gui.Pos.Right - isSpec: "True" - fullName: Terminal.Gui.Pos.Right - nameWithType: Pos.Right -- uid: Terminal.Gui.Pos.Top(Terminal.Gui.View) - name: Top(View) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Top_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Pos.Top(Terminal.Gui.View) - fullName: Terminal.Gui.Pos.Top(Terminal.Gui.View) - nameWithType: Pos.Top(View) -- uid: Terminal.Gui.Pos.Top* - name: Top - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Top_ - commentId: Overload:Terminal.Gui.Pos.Top - isSpec: "True" - fullName: Terminal.Gui.Pos.Top - nameWithType: Pos.Top -- uid: Terminal.Gui.Pos.X(Terminal.Gui.View) - name: X(View) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_X_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Pos.X(Terminal.Gui.View) - fullName: Terminal.Gui.Pos.X(Terminal.Gui.View) - nameWithType: Pos.X(View) -- uid: Terminal.Gui.Pos.X* - name: X - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_X_ - commentId: Overload:Terminal.Gui.Pos.X - isSpec: "True" - fullName: Terminal.Gui.Pos.X - nameWithType: Pos.X -- uid: Terminal.Gui.Pos.Y(Terminal.Gui.View) - name: Y(View) - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Y_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Pos.Y(Terminal.Gui.View) - fullName: Terminal.Gui.Pos.Y(Terminal.Gui.View) - nameWithType: Pos.Y(View) -- uid: Terminal.Gui.Pos.Y* - name: Y - href: api/Terminal.Gui/Terminal.Gui.Pos.html#Terminal_Gui_Pos_Y_ - commentId: Overload:Terminal.Gui.Pos.Y - isSpec: "True" - fullName: Terminal.Gui.Pos.Y - nameWithType: Pos.Y -- uid: Terminal.Gui.ProgressBar - name: ProgressBar - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html - commentId: T:Terminal.Gui.ProgressBar - fullName: Terminal.Gui.ProgressBar - nameWithType: ProgressBar -- uid: Terminal.Gui.ProgressBar.#ctor - name: ProgressBar() - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar__ctor - commentId: M:Terminal.Gui.ProgressBar.#ctor - fullName: Terminal.Gui.ProgressBar.ProgressBar() - nameWithType: ProgressBar.ProgressBar() -- uid: Terminal.Gui.ProgressBar.#ctor(Terminal.Gui.Rect) - name: ProgressBar(Rect) - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ProgressBar.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.ProgressBar.ProgressBar(Terminal.Gui.Rect) - nameWithType: ProgressBar.ProgressBar(Rect) -- uid: Terminal.Gui.ProgressBar.#ctor* - name: ProgressBar - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar__ctor_ - commentId: Overload:Terminal.Gui.ProgressBar.#ctor - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.ProgressBar - nameWithType: ProgressBar.ProgressBar -- uid: Terminal.Gui.ProgressBar.BidirectionalMarquee - name: BidirectionalMarquee - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_BidirectionalMarquee - commentId: P:Terminal.Gui.ProgressBar.BidirectionalMarquee - fullName: Terminal.Gui.ProgressBar.BidirectionalMarquee - nameWithType: ProgressBar.BidirectionalMarquee -- uid: Terminal.Gui.ProgressBar.BidirectionalMarquee* - name: BidirectionalMarquee - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_BidirectionalMarquee_ - commentId: Overload:Terminal.Gui.ProgressBar.BidirectionalMarquee - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.BidirectionalMarquee - nameWithType: ProgressBar.BidirectionalMarquee -- uid: Terminal.Gui.ProgressBar.Fraction - name: Fraction - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Fraction - commentId: P:Terminal.Gui.ProgressBar.Fraction - fullName: Terminal.Gui.ProgressBar.Fraction - nameWithType: ProgressBar.Fraction -- uid: Terminal.Gui.ProgressBar.Fraction* - name: Fraction - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Fraction_ - commentId: Overload:Terminal.Gui.ProgressBar.Fraction - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.Fraction - nameWithType: ProgressBar.Fraction -- uid: Terminal.Gui.ProgressBar.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ProgressBar.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.ProgressBar.OnEnter(Terminal.Gui.View) - nameWithType: ProgressBar.OnEnter(View) -- uid: Terminal.Gui.ProgressBar.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_OnEnter_ - commentId: Overload:Terminal.Gui.ProgressBar.OnEnter - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.OnEnter - nameWithType: ProgressBar.OnEnter -- uid: Terminal.Gui.ProgressBar.ProgressBarFormat - name: ProgressBarFormat - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_ProgressBarFormat - commentId: P:Terminal.Gui.ProgressBar.ProgressBarFormat - fullName: Terminal.Gui.ProgressBar.ProgressBarFormat - nameWithType: ProgressBar.ProgressBarFormat -- uid: Terminal.Gui.ProgressBar.ProgressBarFormat* - name: ProgressBarFormat - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_ProgressBarFormat_ - commentId: Overload:Terminal.Gui.ProgressBar.ProgressBarFormat - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.ProgressBarFormat - nameWithType: ProgressBar.ProgressBarFormat -- uid: Terminal.Gui.ProgressBar.ProgressBarStyle - name: ProgressBarStyle - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_ProgressBarStyle - commentId: P:Terminal.Gui.ProgressBar.ProgressBarStyle - fullName: Terminal.Gui.ProgressBar.ProgressBarStyle - nameWithType: ProgressBar.ProgressBarStyle -- uid: Terminal.Gui.ProgressBar.ProgressBarStyle* - name: ProgressBarStyle - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_ProgressBarStyle_ - commentId: Overload:Terminal.Gui.ProgressBar.ProgressBarStyle - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.ProgressBarStyle - nameWithType: ProgressBar.ProgressBarStyle -- uid: Terminal.Gui.ProgressBar.Pulse - name: Pulse() - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Pulse - commentId: M:Terminal.Gui.ProgressBar.Pulse - fullName: Terminal.Gui.ProgressBar.Pulse() - nameWithType: ProgressBar.Pulse() -- uid: Terminal.Gui.ProgressBar.Pulse* - name: Pulse - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Pulse_ - commentId: Overload:Terminal.Gui.ProgressBar.Pulse - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.Pulse - nameWithType: ProgressBar.Pulse -- uid: Terminal.Gui.ProgressBar.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ProgressBar.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.ProgressBar.Redraw(Terminal.Gui.Rect) - nameWithType: ProgressBar.Redraw(Rect) -- uid: Terminal.Gui.ProgressBar.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Redraw_ - commentId: Overload:Terminal.Gui.ProgressBar.Redraw - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.Redraw - nameWithType: ProgressBar.Redraw -- uid: Terminal.Gui.ProgressBar.SegmentCharacter - name: SegmentCharacter - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_SegmentCharacter - commentId: P:Terminal.Gui.ProgressBar.SegmentCharacter - fullName: Terminal.Gui.ProgressBar.SegmentCharacter - nameWithType: ProgressBar.SegmentCharacter -- uid: Terminal.Gui.ProgressBar.SegmentCharacter* - name: SegmentCharacter - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_SegmentCharacter_ - commentId: Overload:Terminal.Gui.ProgressBar.SegmentCharacter - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.SegmentCharacter - nameWithType: ProgressBar.SegmentCharacter -- uid: Terminal.Gui.ProgressBar.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Text - commentId: P:Terminal.Gui.ProgressBar.Text - fullName: Terminal.Gui.ProgressBar.Text - nameWithType: ProgressBar.Text -- uid: Terminal.Gui.ProgressBar.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.ProgressBar.html#Terminal_Gui_ProgressBar_Text_ - commentId: Overload:Terminal.Gui.ProgressBar.Text - isSpec: "True" - fullName: Terminal.Gui.ProgressBar.Text - nameWithType: ProgressBar.Text -- uid: Terminal.Gui.ProgressBarFormat - name: ProgressBarFormat - href: api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html - commentId: T:Terminal.Gui.ProgressBarFormat - fullName: Terminal.Gui.ProgressBarFormat - nameWithType: ProgressBarFormat -- uid: Terminal.Gui.ProgressBarFormat.Framed - name: Framed - href: api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html#Terminal_Gui_ProgressBarFormat_Framed - commentId: F:Terminal.Gui.ProgressBarFormat.Framed - fullName: Terminal.Gui.ProgressBarFormat.Framed - nameWithType: ProgressBarFormat.Framed -- uid: Terminal.Gui.ProgressBarFormat.FramedPlusPercentage - name: FramedPlusPercentage - href: api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html#Terminal_Gui_ProgressBarFormat_FramedPlusPercentage - commentId: F:Terminal.Gui.ProgressBarFormat.FramedPlusPercentage - fullName: Terminal.Gui.ProgressBarFormat.FramedPlusPercentage - nameWithType: ProgressBarFormat.FramedPlusPercentage -- uid: Terminal.Gui.ProgressBarFormat.FramedProgressPadded - name: FramedProgressPadded - href: api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html#Terminal_Gui_ProgressBarFormat_FramedProgressPadded - commentId: F:Terminal.Gui.ProgressBarFormat.FramedProgressPadded - fullName: Terminal.Gui.ProgressBarFormat.FramedProgressPadded - nameWithType: ProgressBarFormat.FramedProgressPadded -- uid: Terminal.Gui.ProgressBarFormat.Simple - name: Simple - href: api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html#Terminal_Gui_ProgressBarFormat_Simple - commentId: F:Terminal.Gui.ProgressBarFormat.Simple - fullName: Terminal.Gui.ProgressBarFormat.Simple - nameWithType: ProgressBarFormat.Simple -- uid: Terminal.Gui.ProgressBarFormat.SimplePlusPercentage - name: SimplePlusPercentage - href: api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html#Terminal_Gui_ProgressBarFormat_SimplePlusPercentage - commentId: F:Terminal.Gui.ProgressBarFormat.SimplePlusPercentage - fullName: Terminal.Gui.ProgressBarFormat.SimplePlusPercentage - nameWithType: ProgressBarFormat.SimplePlusPercentage -- uid: Terminal.Gui.ProgressBarStyle - name: ProgressBarStyle - href: api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html - commentId: T:Terminal.Gui.ProgressBarStyle - fullName: Terminal.Gui.ProgressBarStyle - nameWithType: ProgressBarStyle -- uid: Terminal.Gui.ProgressBarStyle.Blocks - name: Blocks - href: api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html#Terminal_Gui_ProgressBarStyle_Blocks - commentId: F:Terminal.Gui.ProgressBarStyle.Blocks - fullName: Terminal.Gui.ProgressBarStyle.Blocks - nameWithType: ProgressBarStyle.Blocks -- uid: Terminal.Gui.ProgressBarStyle.Continuous - name: Continuous - href: api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html#Terminal_Gui_ProgressBarStyle_Continuous - commentId: F:Terminal.Gui.ProgressBarStyle.Continuous - fullName: Terminal.Gui.ProgressBarStyle.Continuous - nameWithType: ProgressBarStyle.Continuous -- uid: Terminal.Gui.ProgressBarStyle.MarqueeBlocks - name: MarqueeBlocks - href: api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html#Terminal_Gui_ProgressBarStyle_MarqueeBlocks - commentId: F:Terminal.Gui.ProgressBarStyle.MarqueeBlocks - fullName: Terminal.Gui.ProgressBarStyle.MarqueeBlocks - nameWithType: ProgressBarStyle.MarqueeBlocks -- uid: Terminal.Gui.ProgressBarStyle.MarqueeContinuous - name: MarqueeContinuous - href: api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html#Terminal_Gui_ProgressBarStyle_MarqueeContinuous - commentId: F:Terminal.Gui.ProgressBarStyle.MarqueeContinuous - fullName: Terminal.Gui.ProgressBarStyle.MarqueeContinuous - nameWithType: ProgressBarStyle.MarqueeContinuous -- uid: Terminal.Gui.RadioGroup - name: RadioGroup - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html - commentId: T:Terminal.Gui.RadioGroup - fullName: Terminal.Gui.RadioGroup - nameWithType: RadioGroup -- uid: Terminal.Gui.RadioGroup.#ctor - name: RadioGroup() - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup__ctor - commentId: M:Terminal.Gui.RadioGroup.#ctor - fullName: Terminal.Gui.RadioGroup.RadioGroup() - nameWithType: RadioGroup.RadioGroup() -- uid: Terminal.Gui.RadioGroup.#ctor(NStack.ustring[],System.Int32) - name: RadioGroup(ustring[], Int32) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup__ctor_NStack_ustring___System_Int32_ - commentId: M:Terminal.Gui.RadioGroup.#ctor(NStack.ustring[],System.Int32) - name.vb: RadioGroup(ustring(), Int32) - fullName: Terminal.Gui.RadioGroup.RadioGroup(NStack.ustring[], System.Int32) - fullName.vb: Terminal.Gui.RadioGroup.RadioGroup(NStack.ustring(), System.Int32) - nameWithType: RadioGroup.RadioGroup(ustring[], Int32) - nameWithType.vb: RadioGroup.RadioGroup(ustring(), Int32) -- uid: Terminal.Gui.RadioGroup.#ctor(System.Int32,System.Int32,NStack.ustring[],System.Int32) - name: RadioGroup(Int32, Int32, ustring[], Int32) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup__ctor_System_Int32_System_Int32_NStack_ustring___System_Int32_ - commentId: M:Terminal.Gui.RadioGroup.#ctor(System.Int32,System.Int32,NStack.ustring[],System.Int32) - name.vb: RadioGroup(Int32, Int32, ustring(), Int32) - fullName: Terminal.Gui.RadioGroup.RadioGroup(System.Int32, System.Int32, NStack.ustring[], System.Int32) - fullName.vb: Terminal.Gui.RadioGroup.RadioGroup(System.Int32, System.Int32, NStack.ustring(), System.Int32) - nameWithType: RadioGroup.RadioGroup(Int32, Int32, ustring[], Int32) - nameWithType.vb: RadioGroup.RadioGroup(Int32, Int32, ustring(), Int32) -- uid: Terminal.Gui.RadioGroup.#ctor(Terminal.Gui.Rect,NStack.ustring[],System.Int32) - name: RadioGroup(Rect, ustring[], Int32) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup__ctor_Terminal_Gui_Rect_NStack_ustring___System_Int32_ - commentId: M:Terminal.Gui.RadioGroup.#ctor(Terminal.Gui.Rect,NStack.ustring[],System.Int32) - name.vb: RadioGroup(Rect, ustring(), Int32) - fullName: Terminal.Gui.RadioGroup.RadioGroup(Terminal.Gui.Rect, NStack.ustring[], System.Int32) - fullName.vb: Terminal.Gui.RadioGroup.RadioGroup(Terminal.Gui.Rect, NStack.ustring(), System.Int32) - nameWithType: RadioGroup.RadioGroup(Rect, ustring[], Int32) - nameWithType.vb: RadioGroup.RadioGroup(Rect, ustring(), Int32) -- uid: Terminal.Gui.RadioGroup.#ctor* - name: RadioGroup - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup__ctor_ - commentId: Overload:Terminal.Gui.RadioGroup.#ctor - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.RadioGroup - nameWithType: RadioGroup.RadioGroup -- uid: Terminal.Gui.RadioGroup.DisplayMode - name: DisplayMode - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_DisplayMode - commentId: P:Terminal.Gui.RadioGroup.DisplayMode - fullName: Terminal.Gui.RadioGroup.DisplayMode - nameWithType: RadioGroup.DisplayMode -- uid: Terminal.Gui.RadioGroup.DisplayMode* - name: DisplayMode - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_DisplayMode_ - commentId: Overload:Terminal.Gui.RadioGroup.DisplayMode - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.DisplayMode - nameWithType: RadioGroup.DisplayMode -- uid: Terminal.Gui.RadioGroup.HorizontalSpace - name: HorizontalSpace - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_HorizontalSpace - commentId: P:Terminal.Gui.RadioGroup.HorizontalSpace - fullName: Terminal.Gui.RadioGroup.HorizontalSpace - nameWithType: RadioGroup.HorizontalSpace -- uid: Terminal.Gui.RadioGroup.HorizontalSpace* - name: HorizontalSpace - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_HorizontalSpace_ - commentId: Overload:Terminal.Gui.RadioGroup.HorizontalSpace - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.HorizontalSpace - nameWithType: RadioGroup.HorizontalSpace -- uid: Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: RadioGroup.MouseEvent(MouseEvent) -- uid: Terminal.Gui.RadioGroup.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_MouseEvent_ - commentId: Overload:Terminal.Gui.RadioGroup.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.MouseEvent - nameWithType: RadioGroup.MouseEvent -- uid: Terminal.Gui.RadioGroup.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.RadioGroup.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.RadioGroup.OnEnter(Terminal.Gui.View) - nameWithType: RadioGroup.OnEnter(View) -- uid: Terminal.Gui.RadioGroup.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_OnEnter_ - commentId: Overload:Terminal.Gui.RadioGroup.OnEnter - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.OnEnter - nameWithType: RadioGroup.OnEnter -- uid: Terminal.Gui.RadioGroup.OnSelectedItemChanged(System.Int32,System.Int32) - name: OnSelectedItemChanged(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_OnSelectedItemChanged_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.RadioGroup.OnSelectedItemChanged(System.Int32,System.Int32) - fullName: Terminal.Gui.RadioGroup.OnSelectedItemChanged(System.Int32, System.Int32) - nameWithType: RadioGroup.OnSelectedItemChanged(Int32, Int32) -- uid: Terminal.Gui.RadioGroup.OnSelectedItemChanged* - name: OnSelectedItemChanged - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_OnSelectedItemChanged_ - commentId: Overload:Terminal.Gui.RadioGroup.OnSelectedItemChanged - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.OnSelectedItemChanged - nameWithType: RadioGroup.OnSelectedItemChanged -- uid: Terminal.Gui.RadioGroup.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_PositionCursor - commentId: M:Terminal.Gui.RadioGroup.PositionCursor - fullName: Terminal.Gui.RadioGroup.PositionCursor() - nameWithType: RadioGroup.PositionCursor() -- uid: Terminal.Gui.RadioGroup.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_PositionCursor_ - commentId: Overload:Terminal.Gui.RadioGroup.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.PositionCursor - nameWithType: RadioGroup.PositionCursor -- uid: Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) - name: ProcessColdKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessColdKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) - nameWithType: RadioGroup.ProcessColdKey(KeyEvent) -- uid: Terminal.Gui.RadioGroup.ProcessColdKey* - name: ProcessColdKey - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessColdKey_ - commentId: Overload:Terminal.Gui.RadioGroup.ProcessColdKey - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.ProcessColdKey - nameWithType: RadioGroup.ProcessColdKey -- uid: Terminal.Gui.RadioGroup.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.RadioGroup.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.RadioGroup.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: RadioGroup.ProcessKey(KeyEvent) -- uid: Terminal.Gui.RadioGroup.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessKey_ - commentId: Overload:Terminal.Gui.RadioGroup.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.ProcessKey - nameWithType: RadioGroup.ProcessKey -- uid: Terminal.Gui.RadioGroup.RadioLabels - name: RadioLabels - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_RadioLabels - commentId: P:Terminal.Gui.RadioGroup.RadioLabels - fullName: Terminal.Gui.RadioGroup.RadioLabels - nameWithType: RadioGroup.RadioLabels -- uid: Terminal.Gui.RadioGroup.RadioLabels* - name: RadioLabels - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_RadioLabels_ - commentId: Overload:Terminal.Gui.RadioGroup.RadioLabels - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.RadioLabels - nameWithType: RadioGroup.RadioLabels -- uid: Terminal.Gui.RadioGroup.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.RadioGroup.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.RadioGroup.Redraw(Terminal.Gui.Rect) - nameWithType: RadioGroup.Redraw(Rect) -- uid: Terminal.Gui.RadioGroup.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_Redraw_ - commentId: Overload:Terminal.Gui.RadioGroup.Redraw - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.Redraw - nameWithType: RadioGroup.Redraw -- uid: Terminal.Gui.RadioGroup.Refresh - name: Refresh() - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_Refresh - commentId: M:Terminal.Gui.RadioGroup.Refresh - fullName: Terminal.Gui.RadioGroup.Refresh() - nameWithType: RadioGroup.Refresh() -- uid: Terminal.Gui.RadioGroup.Refresh* - name: Refresh - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_Refresh_ - commentId: Overload:Terminal.Gui.RadioGroup.Refresh - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.Refresh - nameWithType: RadioGroup.Refresh -- uid: Terminal.Gui.RadioGroup.SelectedItem - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_SelectedItem - commentId: P:Terminal.Gui.RadioGroup.SelectedItem - fullName: Terminal.Gui.RadioGroup.SelectedItem - nameWithType: RadioGroup.SelectedItem -- uid: Terminal.Gui.RadioGroup.SelectedItem* - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_SelectedItem_ - commentId: Overload:Terminal.Gui.RadioGroup.SelectedItem - isSpec: "True" - fullName: Terminal.Gui.RadioGroup.SelectedItem - nameWithType: RadioGroup.SelectedItem -- uid: Terminal.Gui.RadioGroup.SelectedItemChanged - name: SelectedItemChanged - href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_SelectedItemChanged - commentId: E:Terminal.Gui.RadioGroup.SelectedItemChanged - fullName: Terminal.Gui.RadioGroup.SelectedItemChanged - nameWithType: RadioGroup.SelectedItemChanged -- uid: Terminal.Gui.Rect - name: Rect - href: api/Terminal.Gui/Terminal.Gui.Rect.html - commentId: T:Terminal.Gui.Rect - fullName: Terminal.Gui.Rect - nameWithType: Rect -- uid: Terminal.Gui.Rect.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) - name: Rect(Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect__ctor_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Rect.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.Rect.Rect(System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: Rect.Rect(Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.Rect.#ctor(Terminal.Gui.Point,Terminal.Gui.Size) - name: Rect(Point, Size) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect__ctor_Terminal_Gui_Point_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Rect.#ctor(Terminal.Gui.Point,Terminal.Gui.Size) - fullName: Terminal.Gui.Rect.Rect(Terminal.Gui.Point, Terminal.Gui.Size) - nameWithType: Rect.Rect(Point, Size) -- uid: Terminal.Gui.Rect.#ctor* - name: Rect - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect__ctor_ - commentId: Overload:Terminal.Gui.Rect.#ctor - isSpec: "True" - fullName: Terminal.Gui.Rect.Rect - nameWithType: Rect.Rect -- uid: Terminal.Gui.Rect.Bottom - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Bottom - commentId: P:Terminal.Gui.Rect.Bottom - fullName: Terminal.Gui.Rect.Bottom - nameWithType: Rect.Bottom -- uid: Terminal.Gui.Rect.Bottom* - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Bottom_ - commentId: Overload:Terminal.Gui.Rect.Bottom - isSpec: "True" - fullName: Terminal.Gui.Rect.Bottom - nameWithType: Rect.Bottom -- uid: Terminal.Gui.Rect.Contains(System.Int32,System.Int32) - name: Contains(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Contains_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Rect.Contains(System.Int32,System.Int32) - fullName: Terminal.Gui.Rect.Contains(System.Int32, System.Int32) - nameWithType: Rect.Contains(Int32, Int32) -- uid: Terminal.Gui.Rect.Contains(Terminal.Gui.Point) - name: Contains(Point) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Contains_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Rect.Contains(Terminal.Gui.Point) - fullName: Terminal.Gui.Rect.Contains(Terminal.Gui.Point) - nameWithType: Rect.Contains(Point) -- uid: Terminal.Gui.Rect.Contains(Terminal.Gui.Rect) - name: Contains(Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Contains_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.Contains(Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.Contains(Terminal.Gui.Rect) - nameWithType: Rect.Contains(Rect) -- uid: Terminal.Gui.Rect.Contains* - name: Contains - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Contains_ - commentId: Overload:Terminal.Gui.Rect.Contains - isSpec: "True" - fullName: Terminal.Gui.Rect.Contains - nameWithType: Rect.Contains -- uid: Terminal.Gui.Rect.Empty - name: Empty - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Empty - commentId: F:Terminal.Gui.Rect.Empty - fullName: Terminal.Gui.Rect.Empty - nameWithType: Rect.Empty -- uid: Terminal.Gui.Rect.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Equals_System_Object_ - commentId: M:Terminal.Gui.Rect.Equals(System.Object) - fullName: Terminal.Gui.Rect.Equals(System.Object) - nameWithType: Rect.Equals(Object) -- uid: Terminal.Gui.Rect.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Equals_ - commentId: Overload:Terminal.Gui.Rect.Equals - isSpec: "True" - fullName: Terminal.Gui.Rect.Equals - nameWithType: Rect.Equals -- uid: Terminal.Gui.Rect.FromLTRB(System.Int32,System.Int32,System.Int32,System.Int32) - name: FromLTRB(Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_FromLTRB_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Rect.FromLTRB(System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.Rect.FromLTRB(System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: Rect.FromLTRB(Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.Rect.FromLTRB* - name: FromLTRB - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_FromLTRB_ - commentId: Overload:Terminal.Gui.Rect.FromLTRB - isSpec: "True" - fullName: Terminal.Gui.Rect.FromLTRB - nameWithType: Rect.FromLTRB -- uid: Terminal.Gui.Rect.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_GetHashCode - commentId: M:Terminal.Gui.Rect.GetHashCode - fullName: Terminal.Gui.Rect.GetHashCode() - nameWithType: Rect.GetHashCode() -- uid: Terminal.Gui.Rect.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_GetHashCode_ - commentId: Overload:Terminal.Gui.Rect.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.Rect.GetHashCode - nameWithType: Rect.GetHashCode -- uid: Terminal.Gui.Rect.Height - name: Height - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Height - commentId: P:Terminal.Gui.Rect.Height - fullName: Terminal.Gui.Rect.Height - nameWithType: Rect.Height -- uid: Terminal.Gui.Rect.Height* - name: Height - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Height_ - commentId: Overload:Terminal.Gui.Rect.Height - isSpec: "True" - fullName: Terminal.Gui.Rect.Height - nameWithType: Rect.Height -- uid: Terminal.Gui.Rect.Inflate(System.Int32,System.Int32) - name: Inflate(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Inflate_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Rect.Inflate(System.Int32,System.Int32) - fullName: Terminal.Gui.Rect.Inflate(System.Int32, System.Int32) - nameWithType: Rect.Inflate(Int32, Int32) -- uid: Terminal.Gui.Rect.Inflate(Terminal.Gui.Rect,System.Int32,System.Int32) - name: Inflate(Rect, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Inflate_Terminal_Gui_Rect_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Rect.Inflate(Terminal.Gui.Rect,System.Int32,System.Int32) - fullName: Terminal.Gui.Rect.Inflate(Terminal.Gui.Rect, System.Int32, System.Int32) - nameWithType: Rect.Inflate(Rect, Int32, Int32) -- uid: Terminal.Gui.Rect.Inflate(Terminal.Gui.Size) - name: Inflate(Size) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Inflate_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Rect.Inflate(Terminal.Gui.Size) - fullName: Terminal.Gui.Rect.Inflate(Terminal.Gui.Size) - nameWithType: Rect.Inflate(Size) -- uid: Terminal.Gui.Rect.Inflate* - name: Inflate - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Inflate_ - commentId: Overload:Terminal.Gui.Rect.Inflate - isSpec: "True" - fullName: Terminal.Gui.Rect.Inflate - nameWithType: Rect.Inflate -- uid: Terminal.Gui.Rect.Intersect(Terminal.Gui.Rect) - name: Intersect(Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Intersect_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.Intersect(Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.Intersect(Terminal.Gui.Rect) - nameWithType: Rect.Intersect(Rect) -- uid: Terminal.Gui.Rect.Intersect(Terminal.Gui.Rect,Terminal.Gui.Rect) - name: Intersect(Rect, Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Intersect_Terminal_Gui_Rect_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.Intersect(Terminal.Gui.Rect,Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.Intersect(Terminal.Gui.Rect, Terminal.Gui.Rect) - nameWithType: Rect.Intersect(Rect, Rect) -- uid: Terminal.Gui.Rect.Intersect* - name: Intersect - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Intersect_ - commentId: Overload:Terminal.Gui.Rect.Intersect - isSpec: "True" - fullName: Terminal.Gui.Rect.Intersect - nameWithType: Rect.Intersect -- uid: Terminal.Gui.Rect.IntersectsWith(Terminal.Gui.Rect) - name: IntersectsWith(Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_IntersectsWith_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.IntersectsWith(Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.IntersectsWith(Terminal.Gui.Rect) - nameWithType: Rect.IntersectsWith(Rect) -- uid: Terminal.Gui.Rect.IntersectsWith* - name: IntersectsWith - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_IntersectsWith_ - commentId: Overload:Terminal.Gui.Rect.IntersectsWith - isSpec: "True" - fullName: Terminal.Gui.Rect.IntersectsWith - nameWithType: Rect.IntersectsWith -- uid: Terminal.Gui.Rect.IsEmpty - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_IsEmpty - commentId: P:Terminal.Gui.Rect.IsEmpty - fullName: Terminal.Gui.Rect.IsEmpty - nameWithType: Rect.IsEmpty -- uid: Terminal.Gui.Rect.IsEmpty* - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_IsEmpty_ - commentId: Overload:Terminal.Gui.Rect.IsEmpty - isSpec: "True" - fullName: Terminal.Gui.Rect.IsEmpty - nameWithType: Rect.IsEmpty -- uid: Terminal.Gui.Rect.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Left - commentId: P:Terminal.Gui.Rect.Left - fullName: Terminal.Gui.Rect.Left - nameWithType: Rect.Left -- uid: Terminal.Gui.Rect.Left* - name: Left - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Left_ - commentId: Overload:Terminal.Gui.Rect.Left - isSpec: "True" - fullName: Terminal.Gui.Rect.Left - nameWithType: Rect.Left -- uid: Terminal.Gui.Rect.Location - name: Location - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Location - commentId: P:Terminal.Gui.Rect.Location - fullName: Terminal.Gui.Rect.Location - nameWithType: Rect.Location -- uid: Terminal.Gui.Rect.Location* - name: Location - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Location_ - commentId: Overload:Terminal.Gui.Rect.Location - isSpec: "True" - fullName: Terminal.Gui.Rect.Location - nameWithType: Rect.Location -- uid: Terminal.Gui.Rect.Offset(System.Int32,System.Int32) - name: Offset(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Offset_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Rect.Offset(System.Int32,System.Int32) - fullName: Terminal.Gui.Rect.Offset(System.Int32, System.Int32) - nameWithType: Rect.Offset(Int32, Int32) -- uid: Terminal.Gui.Rect.Offset(Terminal.Gui.Point) - name: Offset(Point) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Offset_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Rect.Offset(Terminal.Gui.Point) - fullName: Terminal.Gui.Rect.Offset(Terminal.Gui.Point) - nameWithType: Rect.Offset(Point) -- uid: Terminal.Gui.Rect.Offset* - name: Offset - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Offset_ - commentId: Overload:Terminal.Gui.Rect.Offset - isSpec: "True" - fullName: Terminal.Gui.Rect.Offset - nameWithType: Rect.Offset -- uid: Terminal.Gui.Rect.op_Equality(Terminal.Gui.Rect,Terminal.Gui.Rect) - name: Equality(Rect, Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_op_Equality_Terminal_Gui_Rect_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.op_Equality(Terminal.Gui.Rect,Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.Equality(Terminal.Gui.Rect, Terminal.Gui.Rect) - nameWithType: Rect.Equality(Rect, Rect) -- uid: Terminal.Gui.Rect.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_op_Equality_ - commentId: Overload:Terminal.Gui.Rect.op_Equality - isSpec: "True" - fullName: Terminal.Gui.Rect.Equality - nameWithType: Rect.Equality -- uid: Terminal.Gui.Rect.op_Inequality(Terminal.Gui.Rect,Terminal.Gui.Rect) - name: Inequality(Rect, Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_op_Inequality_Terminal_Gui_Rect_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.op_Inequality(Terminal.Gui.Rect,Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.Inequality(Terminal.Gui.Rect, Terminal.Gui.Rect) - nameWithType: Rect.Inequality(Rect, Rect) -- uid: Terminal.Gui.Rect.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_op_Inequality_ - commentId: Overload:Terminal.Gui.Rect.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.Rect.Inequality - nameWithType: Rect.Inequality -- uid: Terminal.Gui.Rect.Right - name: Right - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Right - commentId: P:Terminal.Gui.Rect.Right - fullName: Terminal.Gui.Rect.Right - nameWithType: Rect.Right -- uid: Terminal.Gui.Rect.Right* - name: Right - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Right_ - commentId: Overload:Terminal.Gui.Rect.Right - isSpec: "True" - fullName: Terminal.Gui.Rect.Right - nameWithType: Rect.Right -- uid: Terminal.Gui.Rect.Size - name: Size - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Size - commentId: P:Terminal.Gui.Rect.Size - fullName: Terminal.Gui.Rect.Size - nameWithType: Rect.Size -- uid: Terminal.Gui.Rect.Size* - name: Size - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Size_ - commentId: Overload:Terminal.Gui.Rect.Size - isSpec: "True" - fullName: Terminal.Gui.Rect.Size - nameWithType: Rect.Size -- uid: Terminal.Gui.Rect.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Top - commentId: P:Terminal.Gui.Rect.Top - fullName: Terminal.Gui.Rect.Top - nameWithType: Rect.Top -- uid: Terminal.Gui.Rect.Top* - name: Top - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Top_ - commentId: Overload:Terminal.Gui.Rect.Top - isSpec: "True" - fullName: Terminal.Gui.Rect.Top - nameWithType: Rect.Top -- uid: Terminal.Gui.Rect.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_ToString - commentId: M:Terminal.Gui.Rect.ToString - fullName: Terminal.Gui.Rect.ToString() - nameWithType: Rect.ToString() -- uid: Terminal.Gui.Rect.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_ToString_ - commentId: Overload:Terminal.Gui.Rect.ToString - isSpec: "True" - fullName: Terminal.Gui.Rect.ToString - nameWithType: Rect.ToString -- uid: Terminal.Gui.Rect.Union(Terminal.Gui.Rect,Terminal.Gui.Rect) - name: Union(Rect, Rect) - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Union_Terminal_Gui_Rect_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Rect.Union(Terminal.Gui.Rect,Terminal.Gui.Rect) - fullName: Terminal.Gui.Rect.Union(Terminal.Gui.Rect, Terminal.Gui.Rect) - nameWithType: Rect.Union(Rect, Rect) -- uid: Terminal.Gui.Rect.Union* - name: Union - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Union_ - commentId: Overload:Terminal.Gui.Rect.Union - isSpec: "True" - fullName: Terminal.Gui.Rect.Union - nameWithType: Rect.Union -- uid: Terminal.Gui.Rect.Width - name: Width - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Width - commentId: P:Terminal.Gui.Rect.Width - fullName: Terminal.Gui.Rect.Width - nameWithType: Rect.Width -- uid: Terminal.Gui.Rect.Width* - name: Width - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Width_ - commentId: Overload:Terminal.Gui.Rect.Width - isSpec: "True" - fullName: Terminal.Gui.Rect.Width - nameWithType: Rect.Width -- uid: Terminal.Gui.Rect.X - name: X - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_X - commentId: F:Terminal.Gui.Rect.X - fullName: Terminal.Gui.Rect.X - nameWithType: Rect.X -- uid: Terminal.Gui.Rect.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.Rect.html#Terminal_Gui_Rect_Y - commentId: F:Terminal.Gui.Rect.Y - fullName: Terminal.Gui.Rect.Y - nameWithType: Rect.Y -- uid: Terminal.Gui.RectangleF - name: RectangleF - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html - commentId: T:Terminal.Gui.RectangleF - fullName: Terminal.Gui.RectangleF - nameWithType: RectangleF -- uid: Terminal.Gui.RectangleF.#ctor(System.Single,System.Single,System.Single,System.Single) - name: RectangleF(Single, Single, Single, Single) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF__ctor_System_Single_System_Single_System_Single_System_Single_ - commentId: M:Terminal.Gui.RectangleF.#ctor(System.Single,System.Single,System.Single,System.Single) - fullName: Terminal.Gui.RectangleF.RectangleF(System.Single, System.Single, System.Single, System.Single) - nameWithType: RectangleF.RectangleF(Single, Single, Single, Single) -- uid: Terminal.Gui.RectangleF.#ctor(Terminal.Gui.PointF,Terminal.Gui.SizeF) - name: RectangleF(PointF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF__ctor_Terminal_Gui_PointF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.RectangleF.#ctor(Terminal.Gui.PointF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.RectangleF.RectangleF(Terminal.Gui.PointF, Terminal.Gui.SizeF) - nameWithType: RectangleF.RectangleF(PointF, SizeF) -- uid: Terminal.Gui.RectangleF.#ctor* - name: RectangleF - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF__ctor_ - commentId: Overload:Terminal.Gui.RectangleF.#ctor - isSpec: "True" - fullName: Terminal.Gui.RectangleF.RectangleF - nameWithType: RectangleF.RectangleF -- uid: Terminal.Gui.RectangleF.Bottom - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Bottom - commentId: P:Terminal.Gui.RectangleF.Bottom - fullName: Terminal.Gui.RectangleF.Bottom - nameWithType: RectangleF.Bottom -- uid: Terminal.Gui.RectangleF.Bottom* - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Bottom_ - commentId: Overload:Terminal.Gui.RectangleF.Bottom - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Bottom - nameWithType: RectangleF.Bottom -- uid: Terminal.Gui.RectangleF.Contains(System.Single,System.Single) - name: Contains(Single, Single) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Contains_System_Single_System_Single_ - commentId: M:Terminal.Gui.RectangleF.Contains(System.Single,System.Single) - fullName: Terminal.Gui.RectangleF.Contains(System.Single, System.Single) - nameWithType: RectangleF.Contains(Single, Single) -- uid: Terminal.Gui.RectangleF.Contains(Terminal.Gui.PointF) - name: Contains(PointF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Contains_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.RectangleF.Contains(Terminal.Gui.PointF) - fullName: Terminal.Gui.RectangleF.Contains(Terminal.Gui.PointF) - nameWithType: RectangleF.Contains(PointF) -- uid: Terminal.Gui.RectangleF.Contains(Terminal.Gui.RectangleF) - name: Contains(RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Contains_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.Contains(Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Contains(Terminal.Gui.RectangleF) - nameWithType: RectangleF.Contains(RectangleF) -- uid: Terminal.Gui.RectangleF.Contains* - name: Contains - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Contains_ - commentId: Overload:Terminal.Gui.RectangleF.Contains - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Contains - nameWithType: RectangleF.Contains -- uid: Terminal.Gui.RectangleF.Empty - name: Empty - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Empty - commentId: F:Terminal.Gui.RectangleF.Empty - fullName: Terminal.Gui.RectangleF.Empty - nameWithType: RectangleF.Empty -- uid: Terminal.Gui.RectangleF.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Equals_System_Object_ - commentId: M:Terminal.Gui.RectangleF.Equals(System.Object) - fullName: Terminal.Gui.RectangleF.Equals(System.Object) - nameWithType: RectangleF.Equals(Object) -- uid: Terminal.Gui.RectangleF.Equals(Terminal.Gui.RectangleF) - name: Equals(RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Equals_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.Equals(Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Equals(Terminal.Gui.RectangleF) - nameWithType: RectangleF.Equals(RectangleF) -- uid: Terminal.Gui.RectangleF.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Equals_ - commentId: Overload:Terminal.Gui.RectangleF.Equals - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Equals - nameWithType: RectangleF.Equals -- uid: Terminal.Gui.RectangleF.FromLTRB(System.Single,System.Single,System.Single,System.Single) - name: FromLTRB(Single, Single, Single, Single) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_FromLTRB_System_Single_System_Single_System_Single_System_Single_ - commentId: M:Terminal.Gui.RectangleF.FromLTRB(System.Single,System.Single,System.Single,System.Single) - fullName: Terminal.Gui.RectangleF.FromLTRB(System.Single, System.Single, System.Single, System.Single) - nameWithType: RectangleF.FromLTRB(Single, Single, Single, Single) -- uid: Terminal.Gui.RectangleF.FromLTRB* - name: FromLTRB - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_FromLTRB_ - commentId: Overload:Terminal.Gui.RectangleF.FromLTRB - isSpec: "True" - fullName: Terminal.Gui.RectangleF.FromLTRB - nameWithType: RectangleF.FromLTRB -- uid: Terminal.Gui.RectangleF.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_GetHashCode - commentId: M:Terminal.Gui.RectangleF.GetHashCode - fullName: Terminal.Gui.RectangleF.GetHashCode() - nameWithType: RectangleF.GetHashCode() -- uid: Terminal.Gui.RectangleF.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_GetHashCode_ - commentId: Overload:Terminal.Gui.RectangleF.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.RectangleF.GetHashCode - nameWithType: RectangleF.GetHashCode -- uid: Terminal.Gui.RectangleF.Height - name: Height - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Height - commentId: P:Terminal.Gui.RectangleF.Height - fullName: Terminal.Gui.RectangleF.Height - nameWithType: RectangleF.Height -- uid: Terminal.Gui.RectangleF.Height* - name: Height - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Height_ - commentId: Overload:Terminal.Gui.RectangleF.Height - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Height - nameWithType: RectangleF.Height -- uid: Terminal.Gui.RectangleF.Inflate(System.Single,System.Single) - name: Inflate(Single, Single) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Inflate_System_Single_System_Single_ - commentId: M:Terminal.Gui.RectangleF.Inflate(System.Single,System.Single) - fullName: Terminal.Gui.RectangleF.Inflate(System.Single, System.Single) - nameWithType: RectangleF.Inflate(Single, Single) -- uid: Terminal.Gui.RectangleF.Inflate(Terminal.Gui.RectangleF,System.Single,System.Single) - name: Inflate(RectangleF, Single, Single) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Inflate_Terminal_Gui_RectangleF_System_Single_System_Single_ - commentId: M:Terminal.Gui.RectangleF.Inflate(Terminal.Gui.RectangleF,System.Single,System.Single) - fullName: Terminal.Gui.RectangleF.Inflate(Terminal.Gui.RectangleF, System.Single, System.Single) - nameWithType: RectangleF.Inflate(RectangleF, Single, Single) -- uid: Terminal.Gui.RectangleF.Inflate(Terminal.Gui.SizeF) - name: Inflate(SizeF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Inflate_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.RectangleF.Inflate(Terminal.Gui.SizeF) - fullName: Terminal.Gui.RectangleF.Inflate(Terminal.Gui.SizeF) - nameWithType: RectangleF.Inflate(SizeF) -- uid: Terminal.Gui.RectangleF.Inflate* - name: Inflate - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Inflate_ - commentId: Overload:Terminal.Gui.RectangleF.Inflate - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Inflate - nameWithType: RectangleF.Inflate -- uid: Terminal.Gui.RectangleF.Intersect(Terminal.Gui.RectangleF) - name: Intersect(RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Intersect_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.Intersect(Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Intersect(Terminal.Gui.RectangleF) - nameWithType: RectangleF.Intersect(RectangleF) -- uid: Terminal.Gui.RectangleF.Intersect(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - name: Intersect(RectangleF, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Intersect_Terminal_Gui_RectangleF_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.Intersect(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Intersect(Terminal.Gui.RectangleF, Terminal.Gui.RectangleF) - nameWithType: RectangleF.Intersect(RectangleF, RectangleF) -- uid: Terminal.Gui.RectangleF.Intersect* - name: Intersect - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Intersect_ - commentId: Overload:Terminal.Gui.RectangleF.Intersect - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Intersect - nameWithType: RectangleF.Intersect -- uid: Terminal.Gui.RectangleF.IntersectsWith(Terminal.Gui.RectangleF) - name: IntersectsWith(RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_IntersectsWith_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.IntersectsWith(Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.IntersectsWith(Terminal.Gui.RectangleF) - nameWithType: RectangleF.IntersectsWith(RectangleF) -- uid: Terminal.Gui.RectangleF.IntersectsWith* - name: IntersectsWith - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_IntersectsWith_ - commentId: Overload:Terminal.Gui.RectangleF.IntersectsWith - isSpec: "True" - fullName: Terminal.Gui.RectangleF.IntersectsWith - nameWithType: RectangleF.IntersectsWith -- uid: Terminal.Gui.RectangleF.IsEmpty - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_IsEmpty - commentId: P:Terminal.Gui.RectangleF.IsEmpty - fullName: Terminal.Gui.RectangleF.IsEmpty - nameWithType: RectangleF.IsEmpty -- uid: Terminal.Gui.RectangleF.IsEmpty* - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_IsEmpty_ - commentId: Overload:Terminal.Gui.RectangleF.IsEmpty - isSpec: "True" - fullName: Terminal.Gui.RectangleF.IsEmpty - nameWithType: RectangleF.IsEmpty -- uid: Terminal.Gui.RectangleF.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Left - commentId: P:Terminal.Gui.RectangleF.Left - fullName: Terminal.Gui.RectangleF.Left - nameWithType: RectangleF.Left -- uid: Terminal.Gui.RectangleF.Left* - name: Left - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Left_ - commentId: Overload:Terminal.Gui.RectangleF.Left - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Left - nameWithType: RectangleF.Left -- uid: Terminal.Gui.RectangleF.Location - name: Location - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Location - commentId: P:Terminal.Gui.RectangleF.Location - fullName: Terminal.Gui.RectangleF.Location - nameWithType: RectangleF.Location -- uid: Terminal.Gui.RectangleF.Location* - name: Location - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Location_ - commentId: Overload:Terminal.Gui.RectangleF.Location - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Location - nameWithType: RectangleF.Location -- uid: Terminal.Gui.RectangleF.Offset(System.Single,System.Single) - name: Offset(Single, Single) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Offset_System_Single_System_Single_ - commentId: M:Terminal.Gui.RectangleF.Offset(System.Single,System.Single) - fullName: Terminal.Gui.RectangleF.Offset(System.Single, System.Single) - nameWithType: RectangleF.Offset(Single, Single) -- uid: Terminal.Gui.RectangleF.Offset(Terminal.Gui.PointF) - name: Offset(PointF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Offset_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.RectangleF.Offset(Terminal.Gui.PointF) - fullName: Terminal.Gui.RectangleF.Offset(Terminal.Gui.PointF) - nameWithType: RectangleF.Offset(PointF) -- uid: Terminal.Gui.RectangleF.Offset* - name: Offset - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Offset_ - commentId: Overload:Terminal.Gui.RectangleF.Offset - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Offset - nameWithType: RectangleF.Offset -- uid: Terminal.Gui.RectangleF.op_Equality(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - name: Equality(RectangleF, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_op_Equality_Terminal_Gui_RectangleF_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.op_Equality(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Equality(Terminal.Gui.RectangleF, Terminal.Gui.RectangleF) - nameWithType: RectangleF.Equality(RectangleF, RectangleF) -- uid: Terminal.Gui.RectangleF.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_op_Equality_ - commentId: Overload:Terminal.Gui.RectangleF.op_Equality - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Equality - nameWithType: RectangleF.Equality -- uid: Terminal.Gui.RectangleF.op_Implicit(Terminal.Gui.Rect)~Terminal.Gui.RectangleF - name: Implicit(Rect to RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_op_Implicit_Terminal_Gui_Rect__Terminal_Gui_RectangleF - commentId: M:Terminal.Gui.RectangleF.op_Implicit(Terminal.Gui.Rect)~Terminal.Gui.RectangleF - name.vb: Widening(Rect to RectangleF) - fullName: Terminal.Gui.RectangleF.Implicit(Terminal.Gui.Rect to Terminal.Gui.RectangleF) - fullName.vb: Terminal.Gui.RectangleF.Widening(Terminal.Gui.Rect to Terminal.Gui.RectangleF) - nameWithType: RectangleF.Implicit(Rect to RectangleF) - nameWithType.vb: RectangleF.Widening(Rect to RectangleF) -- uid: Terminal.Gui.RectangleF.op_Implicit* - name: Implicit - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_op_Implicit_ - commentId: Overload:Terminal.Gui.RectangleF.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: Terminal.Gui.RectangleF.Implicit - fullName.vb: Terminal.Gui.RectangleF.Widening - nameWithType: RectangleF.Implicit - nameWithType.vb: RectangleF.Widening -- uid: Terminal.Gui.RectangleF.op_Inequality(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - name: Inequality(RectangleF, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_op_Inequality_Terminal_Gui_RectangleF_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.op_Inequality(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Inequality(Terminal.Gui.RectangleF, Terminal.Gui.RectangleF) - nameWithType: RectangleF.Inequality(RectangleF, RectangleF) -- uid: Terminal.Gui.RectangleF.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_op_Inequality_ - commentId: Overload:Terminal.Gui.RectangleF.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Inequality - nameWithType: RectangleF.Inequality -- uid: Terminal.Gui.RectangleF.Right - name: Right - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Right - commentId: P:Terminal.Gui.RectangleF.Right - fullName: Terminal.Gui.RectangleF.Right - nameWithType: RectangleF.Right -- uid: Terminal.Gui.RectangleF.Right* - name: Right - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Right_ - commentId: Overload:Terminal.Gui.RectangleF.Right - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Right - nameWithType: RectangleF.Right -- uid: Terminal.Gui.RectangleF.Size - name: Size - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Size - commentId: P:Terminal.Gui.RectangleF.Size - fullName: Terminal.Gui.RectangleF.Size - nameWithType: RectangleF.Size -- uid: Terminal.Gui.RectangleF.Size* - name: Size - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Size_ - commentId: Overload:Terminal.Gui.RectangleF.Size - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Size - nameWithType: RectangleF.Size -- uid: Terminal.Gui.RectangleF.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Top - commentId: P:Terminal.Gui.RectangleF.Top - fullName: Terminal.Gui.RectangleF.Top - nameWithType: RectangleF.Top -- uid: Terminal.Gui.RectangleF.Top* - name: Top - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Top_ - commentId: Overload:Terminal.Gui.RectangleF.Top - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Top - nameWithType: RectangleF.Top -- uid: Terminal.Gui.RectangleF.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_ToString - commentId: M:Terminal.Gui.RectangleF.ToString - fullName: Terminal.Gui.RectangleF.ToString() - nameWithType: RectangleF.ToString() -- uid: Terminal.Gui.RectangleF.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_ToString_ - commentId: Overload:Terminal.Gui.RectangleF.ToString - isSpec: "True" - fullName: Terminal.Gui.RectangleF.ToString - nameWithType: RectangleF.ToString -- uid: Terminal.Gui.RectangleF.Union(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - name: Union(RectangleF, RectangleF) - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Union_Terminal_Gui_RectangleF_Terminal_Gui_RectangleF_ - commentId: M:Terminal.Gui.RectangleF.Union(Terminal.Gui.RectangleF,Terminal.Gui.RectangleF) - fullName: Terminal.Gui.RectangleF.Union(Terminal.Gui.RectangleF, Terminal.Gui.RectangleF) - nameWithType: RectangleF.Union(RectangleF, RectangleF) -- uid: Terminal.Gui.RectangleF.Union* - name: Union - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Union_ - commentId: Overload:Terminal.Gui.RectangleF.Union - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Union - nameWithType: RectangleF.Union -- uid: Terminal.Gui.RectangleF.Width - name: Width - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Width - commentId: P:Terminal.Gui.RectangleF.Width - fullName: Terminal.Gui.RectangleF.Width - nameWithType: RectangleF.Width -- uid: Terminal.Gui.RectangleF.Width* - name: Width - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Width_ - commentId: Overload:Terminal.Gui.RectangleF.Width - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Width - nameWithType: RectangleF.Width -- uid: Terminal.Gui.RectangleF.X - name: X - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_X - commentId: P:Terminal.Gui.RectangleF.X - fullName: Terminal.Gui.RectangleF.X - nameWithType: RectangleF.X -- uid: Terminal.Gui.RectangleF.X* - name: X - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_X_ - commentId: Overload:Terminal.Gui.RectangleF.X - isSpec: "True" - fullName: Terminal.Gui.RectangleF.X - nameWithType: RectangleF.X -- uid: Terminal.Gui.RectangleF.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Y - commentId: P:Terminal.Gui.RectangleF.Y - fullName: Terminal.Gui.RectangleF.Y - nameWithType: RectangleF.Y -- uid: Terminal.Gui.RectangleF.Y* - name: Y - href: api/Terminal.Gui/Terminal.Gui.RectangleF.html#Terminal_Gui_RectangleF_Y_ - commentId: Overload:Terminal.Gui.RectangleF.Y - isSpec: "True" - fullName: Terminal.Gui.RectangleF.Y - nameWithType: RectangleF.Y -- uid: Terminal.Gui.Responder - name: Responder - href: api/Terminal.Gui/Terminal.Gui.Responder.html - commentId: T:Terminal.Gui.Responder - fullName: Terminal.Gui.Responder - nameWithType: Responder -- uid: Terminal.Gui.Responder.CanFocus - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_CanFocus - commentId: P:Terminal.Gui.Responder.CanFocus - fullName: Terminal.Gui.Responder.CanFocus - nameWithType: Responder.CanFocus -- uid: Terminal.Gui.Responder.CanFocus* - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_CanFocus_ - commentId: Overload:Terminal.Gui.Responder.CanFocus - isSpec: "True" - fullName: Terminal.Gui.Responder.CanFocus - nameWithType: Responder.CanFocus -- uid: Terminal.Gui.Responder.Dispose - name: Dispose() - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Dispose - commentId: M:Terminal.Gui.Responder.Dispose - fullName: Terminal.Gui.Responder.Dispose() - nameWithType: Responder.Dispose() -- uid: Terminal.Gui.Responder.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Dispose_System_Boolean_ - commentId: M:Terminal.Gui.Responder.Dispose(System.Boolean) - fullName: Terminal.Gui.Responder.Dispose(System.Boolean) - nameWithType: Responder.Dispose(Boolean) -- uid: Terminal.Gui.Responder.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Dispose_ - commentId: Overload:Terminal.Gui.Responder.Dispose - isSpec: "True" - fullName: Terminal.Gui.Responder.Dispose - nameWithType: Responder.Dispose -- uid: Terminal.Gui.Responder.Enabled - name: Enabled - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Enabled - commentId: P:Terminal.Gui.Responder.Enabled - fullName: Terminal.Gui.Responder.Enabled - nameWithType: Responder.Enabled -- uid: Terminal.Gui.Responder.Enabled* - name: Enabled - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Enabled_ - commentId: Overload:Terminal.Gui.Responder.Enabled - isSpec: "True" - fullName: Terminal.Gui.Responder.Enabled - nameWithType: Responder.Enabled -- uid: Terminal.Gui.Responder.HasFocus - name: HasFocus - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_HasFocus - commentId: P:Terminal.Gui.Responder.HasFocus - fullName: Terminal.Gui.Responder.HasFocus - nameWithType: Responder.HasFocus -- uid: Terminal.Gui.Responder.HasFocus* - name: HasFocus - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_HasFocus_ - commentId: Overload:Terminal.Gui.Responder.HasFocus - isSpec: "True" - fullName: Terminal.Gui.Responder.HasFocus - nameWithType: Responder.HasFocus -- uid: Terminal.Gui.Responder.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Responder.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Responder.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: Responder.MouseEvent(MouseEvent) -- uid: Terminal.Gui.Responder.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_MouseEvent_ - commentId: Overload:Terminal.Gui.Responder.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.Responder.MouseEvent - nameWithType: Responder.MouseEvent -- uid: Terminal.Gui.Responder.OnCanFocusChanged - name: OnCanFocusChanged() - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnCanFocusChanged - commentId: M:Terminal.Gui.Responder.OnCanFocusChanged - fullName: Terminal.Gui.Responder.OnCanFocusChanged() - nameWithType: Responder.OnCanFocusChanged() -- uid: Terminal.Gui.Responder.OnCanFocusChanged* - name: OnCanFocusChanged - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnCanFocusChanged_ - commentId: Overload:Terminal.Gui.Responder.OnCanFocusChanged - isSpec: "True" - fullName: Terminal.Gui.Responder.OnCanFocusChanged - nameWithType: Responder.OnCanFocusChanged -- uid: Terminal.Gui.Responder.OnEnabledChanged - name: OnEnabledChanged() - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnEnabledChanged - commentId: M:Terminal.Gui.Responder.OnEnabledChanged - fullName: Terminal.Gui.Responder.OnEnabledChanged() - nameWithType: Responder.OnEnabledChanged() -- uid: Terminal.Gui.Responder.OnEnabledChanged* - name: OnEnabledChanged - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnEnabledChanged_ - commentId: Overload:Terminal.Gui.Responder.OnEnabledChanged - isSpec: "True" - fullName: Terminal.Gui.Responder.OnEnabledChanged - nameWithType: Responder.OnEnabledChanged -- uid: Terminal.Gui.Responder.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Responder.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.Responder.OnEnter(Terminal.Gui.View) - nameWithType: Responder.OnEnter(View) -- uid: Terminal.Gui.Responder.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnEnter_ - commentId: Overload:Terminal.Gui.Responder.OnEnter - isSpec: "True" - fullName: Terminal.Gui.Responder.OnEnter - nameWithType: Responder.OnEnter -- uid: Terminal.Gui.Responder.OnKeyDown(Terminal.Gui.KeyEvent) - name: OnKeyDown(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnKeyDown_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Responder.OnKeyDown(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Responder.OnKeyDown(Terminal.Gui.KeyEvent) - nameWithType: Responder.OnKeyDown(KeyEvent) -- uid: Terminal.Gui.Responder.OnKeyDown* - name: OnKeyDown - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnKeyDown_ - commentId: Overload:Terminal.Gui.Responder.OnKeyDown - isSpec: "True" - fullName: Terminal.Gui.Responder.OnKeyDown - nameWithType: Responder.OnKeyDown -- uid: Terminal.Gui.Responder.OnKeyUp(Terminal.Gui.KeyEvent) - name: OnKeyUp(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnKeyUp_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Responder.OnKeyUp(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Responder.OnKeyUp(Terminal.Gui.KeyEvent) - nameWithType: Responder.OnKeyUp(KeyEvent) -- uid: Terminal.Gui.Responder.OnKeyUp* - name: OnKeyUp - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnKeyUp_ - commentId: Overload:Terminal.Gui.Responder.OnKeyUp - isSpec: "True" - fullName: Terminal.Gui.Responder.OnKeyUp - nameWithType: Responder.OnKeyUp -- uid: Terminal.Gui.Responder.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Responder.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.Responder.OnLeave(Terminal.Gui.View) - nameWithType: Responder.OnLeave(View) -- uid: Terminal.Gui.Responder.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnLeave_ - commentId: Overload:Terminal.Gui.Responder.OnLeave - isSpec: "True" - fullName: Terminal.Gui.Responder.OnLeave - nameWithType: Responder.OnLeave -- uid: Terminal.Gui.Responder.OnMouseEnter(Terminal.Gui.MouseEvent) - name: OnMouseEnter(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnMouseEnter_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Responder.OnMouseEnter(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Responder.OnMouseEnter(Terminal.Gui.MouseEvent) - nameWithType: Responder.OnMouseEnter(MouseEvent) -- uid: Terminal.Gui.Responder.OnMouseEnter* - name: OnMouseEnter - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnMouseEnter_ - commentId: Overload:Terminal.Gui.Responder.OnMouseEnter - isSpec: "True" - fullName: Terminal.Gui.Responder.OnMouseEnter - nameWithType: Responder.OnMouseEnter -- uid: Terminal.Gui.Responder.OnMouseLeave(Terminal.Gui.MouseEvent) - name: OnMouseLeave(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnMouseLeave_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Responder.OnMouseLeave(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Responder.OnMouseLeave(Terminal.Gui.MouseEvent) - nameWithType: Responder.OnMouseLeave(MouseEvent) -- uid: Terminal.Gui.Responder.OnMouseLeave* - name: OnMouseLeave - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnMouseLeave_ - commentId: Overload:Terminal.Gui.Responder.OnMouseLeave - isSpec: "True" - fullName: Terminal.Gui.Responder.OnMouseLeave - nameWithType: Responder.OnMouseLeave -- uid: Terminal.Gui.Responder.OnVisibleChanged - name: OnVisibleChanged() - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnVisibleChanged - commentId: M:Terminal.Gui.Responder.OnVisibleChanged - fullName: Terminal.Gui.Responder.OnVisibleChanged() - nameWithType: Responder.OnVisibleChanged() -- uid: Terminal.Gui.Responder.OnVisibleChanged* - name: OnVisibleChanged - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_OnVisibleChanged_ - commentId: Overload:Terminal.Gui.Responder.OnVisibleChanged - isSpec: "True" - fullName: Terminal.Gui.Responder.OnVisibleChanged - nameWithType: Responder.OnVisibleChanged -- uid: Terminal.Gui.Responder.ProcessColdKey(Terminal.Gui.KeyEvent) - name: ProcessColdKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessColdKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Responder.ProcessColdKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Responder.ProcessColdKey(Terminal.Gui.KeyEvent) - nameWithType: Responder.ProcessColdKey(KeyEvent) -- uid: Terminal.Gui.Responder.ProcessColdKey* - name: ProcessColdKey - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessColdKey_ - commentId: Overload:Terminal.Gui.Responder.ProcessColdKey - isSpec: "True" - fullName: Terminal.Gui.Responder.ProcessColdKey - nameWithType: Responder.ProcessColdKey -- uid: Terminal.Gui.Responder.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Responder.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Responder.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: Responder.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.Responder.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessHotKey_ - commentId: Overload:Terminal.Gui.Responder.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.Responder.ProcessHotKey - nameWithType: Responder.ProcessHotKey -- uid: Terminal.Gui.Responder.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Responder.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Responder.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: Responder.ProcessKey(KeyEvent) -- uid: Terminal.Gui.Responder.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessKey_ - commentId: Overload:Terminal.Gui.Responder.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.Responder.ProcessKey - nameWithType: Responder.ProcessKey -- uid: Terminal.Gui.Responder.Visible - name: Visible - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Visible - commentId: P:Terminal.Gui.Responder.Visible - fullName: Terminal.Gui.Responder.Visible - nameWithType: Responder.Visible -- uid: Terminal.Gui.Responder.Visible* - name: Visible - href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_Visible_ - commentId: Overload:Terminal.Gui.Responder.Visible - isSpec: "True" - fullName: Terminal.Gui.Responder.Visible - nameWithType: Responder.Visible -- uid: Terminal.Gui.SaveDialog - name: SaveDialog - href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html - commentId: T:Terminal.Gui.SaveDialog - fullName: Terminal.Gui.SaveDialog - nameWithType: SaveDialog -- uid: Terminal.Gui.SaveDialog.#ctor - name: SaveDialog() - href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog__ctor - commentId: M:Terminal.Gui.SaveDialog.#ctor - fullName: Terminal.Gui.SaveDialog.SaveDialog() - nameWithType: SaveDialog.SaveDialog() -- uid: Terminal.Gui.SaveDialog.#ctor(NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name: SaveDialog(ustring, ustring, List) - href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog__ctor_NStack_ustring_NStack_ustring_System_Collections_Generic_List_System_String__ - commentId: M:Terminal.Gui.SaveDialog.#ctor(NStack.ustring,NStack.ustring,System.Collections.Generic.List{System.String}) - name.vb: SaveDialog(ustring, ustring, List(Of String)) - fullName: Terminal.Gui.SaveDialog.SaveDialog(NStack.ustring, NStack.ustring, System.Collections.Generic.List) - fullName.vb: Terminal.Gui.SaveDialog.SaveDialog(NStack.ustring, NStack.ustring, System.Collections.Generic.List(Of System.String)) - nameWithType: SaveDialog.SaveDialog(ustring, ustring, List) - nameWithType.vb: SaveDialog.SaveDialog(ustring, ustring, List(Of String)) -- uid: Terminal.Gui.SaveDialog.#ctor* - name: SaveDialog - href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog__ctor_ - commentId: Overload:Terminal.Gui.SaveDialog.#ctor - isSpec: "True" - fullName: Terminal.Gui.SaveDialog.SaveDialog - nameWithType: SaveDialog.SaveDialog -- uid: Terminal.Gui.SaveDialog.FileName - name: FileName - href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog_FileName - commentId: P:Terminal.Gui.SaveDialog.FileName - fullName: Terminal.Gui.SaveDialog.FileName - nameWithType: SaveDialog.FileName -- uid: Terminal.Gui.SaveDialog.FileName* - name: FileName - href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog_FileName_ - commentId: Overload:Terminal.Gui.SaveDialog.FileName - isSpec: "True" - fullName: Terminal.Gui.SaveDialog.FileName - nameWithType: SaveDialog.FileName -- uid: Terminal.Gui.ScrollBarView - name: ScrollBarView - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html - commentId: T:Terminal.Gui.ScrollBarView - fullName: Terminal.Gui.ScrollBarView - nameWithType: ScrollBarView -- uid: Terminal.Gui.ScrollBarView.#ctor - name: ScrollBarView() - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView__ctor - commentId: M:Terminal.Gui.ScrollBarView.#ctor - fullName: Terminal.Gui.ScrollBarView.ScrollBarView() - nameWithType: ScrollBarView.ScrollBarView() -- uid: Terminal.Gui.ScrollBarView.#ctor(System.Int32,System.Int32,System.Boolean) - name: ScrollBarView(Int32, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView__ctor_System_Int32_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.ScrollBarView.#ctor(System.Int32,System.Int32,System.Boolean) - fullName: Terminal.Gui.ScrollBarView.ScrollBarView(System.Int32, System.Int32, System.Boolean) - nameWithType: ScrollBarView.ScrollBarView(Int32, Int32, Boolean) -- uid: Terminal.Gui.ScrollBarView.#ctor(Terminal.Gui.Rect) - name: ScrollBarView(Rect) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ScrollBarView.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.ScrollBarView.ScrollBarView(Terminal.Gui.Rect) - nameWithType: ScrollBarView.ScrollBarView(Rect) -- uid: Terminal.Gui.ScrollBarView.#ctor(Terminal.Gui.Rect,System.Int32,System.Int32,System.Boolean) - name: ScrollBarView(Rect, Int32, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView__ctor_Terminal_Gui_Rect_System_Int32_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.ScrollBarView.#ctor(Terminal.Gui.Rect,System.Int32,System.Int32,System.Boolean) - fullName: Terminal.Gui.ScrollBarView.ScrollBarView(Terminal.Gui.Rect, System.Int32, System.Int32, System.Boolean) - nameWithType: ScrollBarView.ScrollBarView(Rect, Int32, Int32, Boolean) -- uid: Terminal.Gui.ScrollBarView.#ctor(Terminal.Gui.View,System.Boolean,System.Boolean) - name: ScrollBarView(View, Boolean, Boolean) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView__ctor_Terminal_Gui_View_System_Boolean_System_Boolean_ - commentId: M:Terminal.Gui.ScrollBarView.#ctor(Terminal.Gui.View,System.Boolean,System.Boolean) - fullName: Terminal.Gui.ScrollBarView.ScrollBarView(Terminal.Gui.View, System.Boolean, System.Boolean) - nameWithType: ScrollBarView.ScrollBarView(View, Boolean, Boolean) -- uid: Terminal.Gui.ScrollBarView.#ctor* - name: ScrollBarView - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView__ctor_ - commentId: Overload:Terminal.Gui.ScrollBarView.#ctor - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.ScrollBarView - nameWithType: ScrollBarView.ScrollBarView -- uid: Terminal.Gui.ScrollBarView.AutoHideScrollBars - name: AutoHideScrollBars - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_AutoHideScrollBars - commentId: P:Terminal.Gui.ScrollBarView.AutoHideScrollBars - fullName: Terminal.Gui.ScrollBarView.AutoHideScrollBars - nameWithType: ScrollBarView.AutoHideScrollBars -- uid: Terminal.Gui.ScrollBarView.AutoHideScrollBars* - name: AutoHideScrollBars - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_AutoHideScrollBars_ - commentId: Overload:Terminal.Gui.ScrollBarView.AutoHideScrollBars - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.AutoHideScrollBars - nameWithType: ScrollBarView.AutoHideScrollBars -- uid: Terminal.Gui.ScrollBarView.ChangedPosition - name: ChangedPosition - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_ChangedPosition - commentId: E:Terminal.Gui.ScrollBarView.ChangedPosition - fullName: Terminal.Gui.ScrollBarView.ChangedPosition - nameWithType: ScrollBarView.ChangedPosition -- uid: Terminal.Gui.ScrollBarView.Host - name: Host - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Host - commentId: P:Terminal.Gui.ScrollBarView.Host - fullName: Terminal.Gui.ScrollBarView.Host - nameWithType: ScrollBarView.Host -- uid: Terminal.Gui.ScrollBarView.Host* - name: Host - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Host_ - commentId: Overload:Terminal.Gui.ScrollBarView.Host - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.Host - nameWithType: ScrollBarView.Host -- uid: Terminal.Gui.ScrollBarView.IsVertical - name: IsVertical - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_IsVertical - commentId: P:Terminal.Gui.ScrollBarView.IsVertical - fullName: Terminal.Gui.ScrollBarView.IsVertical - nameWithType: ScrollBarView.IsVertical -- uid: Terminal.Gui.ScrollBarView.IsVertical* - name: IsVertical - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_IsVertical_ - commentId: Overload:Terminal.Gui.ScrollBarView.IsVertical - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.IsVertical - nameWithType: ScrollBarView.IsVertical -- uid: Terminal.Gui.ScrollBarView.KeepContentAlwaysInViewport - name: KeepContentAlwaysInViewport - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_KeepContentAlwaysInViewport - commentId: P:Terminal.Gui.ScrollBarView.KeepContentAlwaysInViewport - fullName: Terminal.Gui.ScrollBarView.KeepContentAlwaysInViewport - nameWithType: ScrollBarView.KeepContentAlwaysInViewport -- uid: Terminal.Gui.ScrollBarView.KeepContentAlwaysInViewport* - name: KeepContentAlwaysInViewport - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_KeepContentAlwaysInViewport_ - commentId: Overload:Terminal.Gui.ScrollBarView.KeepContentAlwaysInViewport - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.KeepContentAlwaysInViewport - nameWithType: ScrollBarView.KeepContentAlwaysInViewport -- uid: Terminal.Gui.ScrollBarView.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.ScrollBarView.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.ScrollBarView.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: ScrollBarView.MouseEvent(MouseEvent) -- uid: Terminal.Gui.ScrollBarView.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_MouseEvent_ - commentId: Overload:Terminal.Gui.ScrollBarView.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.MouseEvent - nameWithType: ScrollBarView.MouseEvent -- uid: Terminal.Gui.ScrollBarView.OnChangedPosition - name: OnChangedPosition() - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_OnChangedPosition - commentId: M:Terminal.Gui.ScrollBarView.OnChangedPosition - fullName: Terminal.Gui.ScrollBarView.OnChangedPosition() - nameWithType: ScrollBarView.OnChangedPosition() -- uid: Terminal.Gui.ScrollBarView.OnChangedPosition* - name: OnChangedPosition - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_OnChangedPosition_ - commentId: Overload:Terminal.Gui.ScrollBarView.OnChangedPosition - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.OnChangedPosition - nameWithType: ScrollBarView.OnChangedPosition -- uid: Terminal.Gui.ScrollBarView.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ScrollBarView.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.ScrollBarView.OnEnter(Terminal.Gui.View) - nameWithType: ScrollBarView.OnEnter(View) -- uid: Terminal.Gui.ScrollBarView.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_OnEnter_ - commentId: Overload:Terminal.Gui.ScrollBarView.OnEnter - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.OnEnter - nameWithType: ScrollBarView.OnEnter -- uid: Terminal.Gui.ScrollBarView.OtherScrollBarView - name: OtherScrollBarView - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_OtherScrollBarView - commentId: P:Terminal.Gui.ScrollBarView.OtherScrollBarView - fullName: Terminal.Gui.ScrollBarView.OtherScrollBarView - nameWithType: ScrollBarView.OtherScrollBarView -- uid: Terminal.Gui.ScrollBarView.OtherScrollBarView* - name: OtherScrollBarView - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_OtherScrollBarView_ - commentId: Overload:Terminal.Gui.ScrollBarView.OtherScrollBarView - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.OtherScrollBarView - nameWithType: ScrollBarView.OtherScrollBarView -- uid: Terminal.Gui.ScrollBarView.Position - name: Position - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Position - commentId: P:Terminal.Gui.ScrollBarView.Position - fullName: Terminal.Gui.ScrollBarView.Position - nameWithType: ScrollBarView.Position -- uid: Terminal.Gui.ScrollBarView.Position* - name: Position - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Position_ - commentId: Overload:Terminal.Gui.ScrollBarView.Position - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.Position - nameWithType: ScrollBarView.Position -- uid: Terminal.Gui.ScrollBarView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ScrollBarView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.ScrollBarView.Redraw(Terminal.Gui.Rect) - nameWithType: ScrollBarView.Redraw(Rect) -- uid: Terminal.Gui.ScrollBarView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Redraw_ - commentId: Overload:Terminal.Gui.ScrollBarView.Redraw - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.Redraw - nameWithType: ScrollBarView.Redraw -- uid: Terminal.Gui.ScrollBarView.Refresh - name: Refresh() - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Refresh - commentId: M:Terminal.Gui.ScrollBarView.Refresh - fullName: Terminal.Gui.ScrollBarView.Refresh() - nameWithType: ScrollBarView.Refresh() -- uid: Terminal.Gui.ScrollBarView.Refresh* - name: Refresh - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Refresh_ - commentId: Overload:Terminal.Gui.ScrollBarView.Refresh - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.Refresh - nameWithType: ScrollBarView.Refresh -- uid: Terminal.Gui.ScrollBarView.ShowScrollIndicator - name: ShowScrollIndicator - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_ShowScrollIndicator - commentId: P:Terminal.Gui.ScrollBarView.ShowScrollIndicator - fullName: Terminal.Gui.ScrollBarView.ShowScrollIndicator - nameWithType: ScrollBarView.ShowScrollIndicator -- uid: Terminal.Gui.ScrollBarView.ShowScrollIndicator* - name: ShowScrollIndicator - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_ShowScrollIndicator_ - commentId: Overload:Terminal.Gui.ScrollBarView.ShowScrollIndicator - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.ShowScrollIndicator - nameWithType: ScrollBarView.ShowScrollIndicator -- uid: Terminal.Gui.ScrollBarView.Size - name: Size - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Size - commentId: P:Terminal.Gui.ScrollBarView.Size - fullName: Terminal.Gui.ScrollBarView.Size - nameWithType: ScrollBarView.Size -- uid: Terminal.Gui.ScrollBarView.Size* - name: Size - href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html#Terminal_Gui_ScrollBarView_Size_ - commentId: Overload:Terminal.Gui.ScrollBarView.Size - isSpec: "True" - fullName: Terminal.Gui.ScrollBarView.Size - nameWithType: ScrollBarView.Size -- uid: Terminal.Gui.ScrollView - name: ScrollView - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html - commentId: T:Terminal.Gui.ScrollView - fullName: Terminal.Gui.ScrollView - nameWithType: ScrollView -- uid: Terminal.Gui.ScrollView.#ctor - name: ScrollView() - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView__ctor - commentId: M:Terminal.Gui.ScrollView.#ctor - fullName: Terminal.Gui.ScrollView.ScrollView() - nameWithType: ScrollView.ScrollView() -- uid: Terminal.Gui.ScrollView.#ctor(Terminal.Gui.Rect) - name: ScrollView(Rect) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ScrollView.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.ScrollView.ScrollView(Terminal.Gui.Rect) - nameWithType: ScrollView.ScrollView(Rect) -- uid: Terminal.Gui.ScrollView.#ctor* - name: ScrollView - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView__ctor_ - commentId: Overload:Terminal.Gui.ScrollView.#ctor - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ScrollView - nameWithType: ScrollView.ScrollView -- uid: Terminal.Gui.ScrollView.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ScrollView.Add(Terminal.Gui.View) - fullName: Terminal.Gui.ScrollView.Add(Terminal.Gui.View) - nameWithType: ScrollView.Add(View) -- uid: Terminal.Gui.ScrollView.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_Add_ - commentId: Overload:Terminal.Gui.ScrollView.Add - isSpec: "True" - fullName: Terminal.Gui.ScrollView.Add - nameWithType: ScrollView.Add -- uid: Terminal.Gui.ScrollView.AutoHideScrollBars - name: AutoHideScrollBars - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_AutoHideScrollBars - commentId: P:Terminal.Gui.ScrollView.AutoHideScrollBars - fullName: Terminal.Gui.ScrollView.AutoHideScrollBars - nameWithType: ScrollView.AutoHideScrollBars -- uid: Terminal.Gui.ScrollView.AutoHideScrollBars* - name: AutoHideScrollBars - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_AutoHideScrollBars_ - commentId: Overload:Terminal.Gui.ScrollView.AutoHideScrollBars - isSpec: "True" - fullName: Terminal.Gui.ScrollView.AutoHideScrollBars - nameWithType: ScrollView.AutoHideScrollBars -- uid: Terminal.Gui.ScrollView.ContentOffset - name: ContentOffset - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ContentOffset - commentId: P:Terminal.Gui.ScrollView.ContentOffset - fullName: Terminal.Gui.ScrollView.ContentOffset - nameWithType: ScrollView.ContentOffset -- uid: Terminal.Gui.ScrollView.ContentOffset* - name: ContentOffset - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ContentOffset_ - commentId: Overload:Terminal.Gui.ScrollView.ContentOffset - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ContentOffset - nameWithType: ScrollView.ContentOffset -- uid: Terminal.Gui.ScrollView.ContentSize - name: ContentSize - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ContentSize - commentId: P:Terminal.Gui.ScrollView.ContentSize - fullName: Terminal.Gui.ScrollView.ContentSize - nameWithType: ScrollView.ContentSize -- uid: Terminal.Gui.ScrollView.ContentSize* - name: ContentSize - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ContentSize_ - commentId: Overload:Terminal.Gui.ScrollView.ContentSize - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ContentSize - nameWithType: ScrollView.ContentSize -- uid: Terminal.Gui.ScrollView.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_Dispose_System_Boolean_ - commentId: M:Terminal.Gui.ScrollView.Dispose(System.Boolean) - fullName: Terminal.Gui.ScrollView.Dispose(System.Boolean) - nameWithType: ScrollView.Dispose(Boolean) -- uid: Terminal.Gui.ScrollView.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_Dispose_ - commentId: Overload:Terminal.Gui.ScrollView.Dispose - isSpec: "True" - fullName: Terminal.Gui.ScrollView.Dispose - nameWithType: ScrollView.Dispose -- uid: Terminal.Gui.ScrollView.KeepContentAlwaysInViewport - name: KeepContentAlwaysInViewport - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_KeepContentAlwaysInViewport - commentId: P:Terminal.Gui.ScrollView.KeepContentAlwaysInViewport - fullName: Terminal.Gui.ScrollView.KeepContentAlwaysInViewport - nameWithType: ScrollView.KeepContentAlwaysInViewport -- uid: Terminal.Gui.ScrollView.KeepContentAlwaysInViewport* - name: KeepContentAlwaysInViewport - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_KeepContentAlwaysInViewport_ - commentId: Overload:Terminal.Gui.ScrollView.KeepContentAlwaysInViewport - isSpec: "True" - fullName: Terminal.Gui.ScrollView.KeepContentAlwaysInViewport - nameWithType: ScrollView.KeepContentAlwaysInViewport -- uid: Terminal.Gui.ScrollView.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.ScrollView.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.ScrollView.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: ScrollView.MouseEvent(MouseEvent) -- uid: Terminal.Gui.ScrollView.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_MouseEvent_ - commentId: Overload:Terminal.Gui.ScrollView.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.ScrollView.MouseEvent - nameWithType: ScrollView.MouseEvent -- uid: Terminal.Gui.ScrollView.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ScrollView.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.ScrollView.OnEnter(Terminal.Gui.View) - nameWithType: ScrollView.OnEnter(View) -- uid: Terminal.Gui.ScrollView.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_OnEnter_ - commentId: Overload:Terminal.Gui.ScrollView.OnEnter - isSpec: "True" - fullName: Terminal.Gui.ScrollView.OnEnter - nameWithType: ScrollView.OnEnter -- uid: Terminal.Gui.ScrollView.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_PositionCursor - commentId: M:Terminal.Gui.ScrollView.PositionCursor - fullName: Terminal.Gui.ScrollView.PositionCursor() - nameWithType: ScrollView.PositionCursor() -- uid: Terminal.Gui.ScrollView.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_PositionCursor_ - commentId: Overload:Terminal.Gui.ScrollView.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.ScrollView.PositionCursor - nameWithType: ScrollView.PositionCursor -- uid: Terminal.Gui.ScrollView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.ScrollView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.ScrollView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: ScrollView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.ScrollView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ProcessKey_ - commentId: Overload:Terminal.Gui.ScrollView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ProcessKey - nameWithType: ScrollView.ProcessKey -- uid: Terminal.Gui.ScrollView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.ScrollView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.ScrollView.Redraw(Terminal.Gui.Rect) - nameWithType: ScrollView.Redraw(Rect) -- uid: Terminal.Gui.ScrollView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_Redraw_ - commentId: Overload:Terminal.Gui.ScrollView.Redraw - isSpec: "True" - fullName: Terminal.Gui.ScrollView.Redraw - nameWithType: ScrollView.Redraw -- uid: Terminal.Gui.ScrollView.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_RemoveAll - commentId: M:Terminal.Gui.ScrollView.RemoveAll - fullName: Terminal.Gui.ScrollView.RemoveAll() - nameWithType: ScrollView.RemoveAll() -- uid: Terminal.Gui.ScrollView.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_RemoveAll_ - commentId: Overload:Terminal.Gui.ScrollView.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.ScrollView.RemoveAll - nameWithType: ScrollView.RemoveAll -- uid: Terminal.Gui.ScrollView.ScrollDown(System.Int32) - name: ScrollDown(Int32) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollDown_System_Int32_ - commentId: M:Terminal.Gui.ScrollView.ScrollDown(System.Int32) - fullName: Terminal.Gui.ScrollView.ScrollDown(System.Int32) - nameWithType: ScrollView.ScrollDown(Int32) -- uid: Terminal.Gui.ScrollView.ScrollDown* - name: ScrollDown - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollDown_ - commentId: Overload:Terminal.Gui.ScrollView.ScrollDown - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ScrollDown - nameWithType: ScrollView.ScrollDown -- uid: Terminal.Gui.ScrollView.ScrollLeft(System.Int32) - name: ScrollLeft(Int32) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollLeft_System_Int32_ - commentId: M:Terminal.Gui.ScrollView.ScrollLeft(System.Int32) - fullName: Terminal.Gui.ScrollView.ScrollLeft(System.Int32) - nameWithType: ScrollView.ScrollLeft(Int32) -- uid: Terminal.Gui.ScrollView.ScrollLeft* - name: ScrollLeft - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollLeft_ - commentId: Overload:Terminal.Gui.ScrollView.ScrollLeft - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ScrollLeft - nameWithType: ScrollView.ScrollLeft -- uid: Terminal.Gui.ScrollView.ScrollRight(System.Int32) - name: ScrollRight(Int32) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollRight_System_Int32_ - commentId: M:Terminal.Gui.ScrollView.ScrollRight(System.Int32) - fullName: Terminal.Gui.ScrollView.ScrollRight(System.Int32) - nameWithType: ScrollView.ScrollRight(Int32) -- uid: Terminal.Gui.ScrollView.ScrollRight* - name: ScrollRight - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollRight_ - commentId: Overload:Terminal.Gui.ScrollView.ScrollRight - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ScrollRight - nameWithType: ScrollView.ScrollRight -- uid: Terminal.Gui.ScrollView.ScrollUp(System.Int32) - name: ScrollUp(Int32) - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollUp_System_Int32_ - commentId: M:Terminal.Gui.ScrollView.ScrollUp(System.Int32) - fullName: Terminal.Gui.ScrollView.ScrollUp(System.Int32) - nameWithType: ScrollView.ScrollUp(Int32) -- uid: Terminal.Gui.ScrollView.ScrollUp* - name: ScrollUp - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ScrollUp_ - commentId: Overload:Terminal.Gui.ScrollView.ScrollUp - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ScrollUp - nameWithType: ScrollView.ScrollUp -- uid: Terminal.Gui.ScrollView.ShowHorizontalScrollIndicator - name: ShowHorizontalScrollIndicator - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ShowHorizontalScrollIndicator - commentId: P:Terminal.Gui.ScrollView.ShowHorizontalScrollIndicator - fullName: Terminal.Gui.ScrollView.ShowHorizontalScrollIndicator - nameWithType: ScrollView.ShowHorizontalScrollIndicator -- uid: Terminal.Gui.ScrollView.ShowHorizontalScrollIndicator* - name: ShowHorizontalScrollIndicator - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ShowHorizontalScrollIndicator_ - commentId: Overload:Terminal.Gui.ScrollView.ShowHorizontalScrollIndicator - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ShowHorizontalScrollIndicator - nameWithType: ScrollView.ShowHorizontalScrollIndicator -- uid: Terminal.Gui.ScrollView.ShowVerticalScrollIndicator - name: ShowVerticalScrollIndicator - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ShowVerticalScrollIndicator - commentId: P:Terminal.Gui.ScrollView.ShowVerticalScrollIndicator - fullName: Terminal.Gui.ScrollView.ShowVerticalScrollIndicator - nameWithType: ScrollView.ShowVerticalScrollIndicator -- uid: Terminal.Gui.ScrollView.ShowVerticalScrollIndicator* - name: ShowVerticalScrollIndicator - href: api/Terminal.Gui/Terminal.Gui.ScrollView.html#Terminal_Gui_ScrollView_ShowVerticalScrollIndicator_ - commentId: Overload:Terminal.Gui.ScrollView.ShowVerticalScrollIndicator - isSpec: "True" - fullName: Terminal.Gui.ScrollView.ShowVerticalScrollIndicator - nameWithType: ScrollView.ShowVerticalScrollIndicator -- uid: Terminal.Gui.SelectedItemChangedArgs - name: SelectedItemChangedArgs - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html - commentId: T:Terminal.Gui.SelectedItemChangedArgs - fullName: Terminal.Gui.SelectedItemChangedArgs - nameWithType: SelectedItemChangedArgs -- uid: Terminal.Gui.SelectedItemChangedArgs.#ctor(System.Int32,System.Int32) - name: SelectedItemChangedArgs(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html#Terminal_Gui_SelectedItemChangedArgs__ctor_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.SelectedItemChangedArgs.#ctor(System.Int32,System.Int32) - fullName: Terminal.Gui.SelectedItemChangedArgs.SelectedItemChangedArgs(System.Int32, System.Int32) - nameWithType: SelectedItemChangedArgs.SelectedItemChangedArgs(Int32, Int32) -- uid: Terminal.Gui.SelectedItemChangedArgs.#ctor* - name: SelectedItemChangedArgs - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html#Terminal_Gui_SelectedItemChangedArgs__ctor_ - commentId: Overload:Terminal.Gui.SelectedItemChangedArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.SelectedItemChangedArgs.SelectedItemChangedArgs - nameWithType: SelectedItemChangedArgs.SelectedItemChangedArgs -- uid: Terminal.Gui.SelectedItemChangedArgs.PreviousSelectedItem - name: PreviousSelectedItem - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html#Terminal_Gui_SelectedItemChangedArgs_PreviousSelectedItem - commentId: P:Terminal.Gui.SelectedItemChangedArgs.PreviousSelectedItem - fullName: Terminal.Gui.SelectedItemChangedArgs.PreviousSelectedItem - nameWithType: SelectedItemChangedArgs.PreviousSelectedItem -- uid: Terminal.Gui.SelectedItemChangedArgs.PreviousSelectedItem* - name: PreviousSelectedItem - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html#Terminal_Gui_SelectedItemChangedArgs_PreviousSelectedItem_ - commentId: Overload:Terminal.Gui.SelectedItemChangedArgs.PreviousSelectedItem - isSpec: "True" - fullName: Terminal.Gui.SelectedItemChangedArgs.PreviousSelectedItem - nameWithType: SelectedItemChangedArgs.PreviousSelectedItem -- uid: Terminal.Gui.SelectedItemChangedArgs.SelectedItem - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html#Terminal_Gui_SelectedItemChangedArgs_SelectedItem - commentId: P:Terminal.Gui.SelectedItemChangedArgs.SelectedItem - fullName: Terminal.Gui.SelectedItemChangedArgs.SelectedItem - nameWithType: SelectedItemChangedArgs.SelectedItem -- uid: Terminal.Gui.SelectedItemChangedArgs.SelectedItem* - name: SelectedItem - href: api/Terminal.Gui/Terminal.Gui.SelectedItemChangedArgs.html#Terminal_Gui_SelectedItemChangedArgs_SelectedItem_ - commentId: Overload:Terminal.Gui.SelectedItemChangedArgs.SelectedItem - isSpec: "True" - fullName: Terminal.Gui.SelectedItemChangedArgs.SelectedItem - nameWithType: SelectedItemChangedArgs.SelectedItem -- uid: Terminal.Gui.ShortcutHelper - name: ShortcutHelper - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html - commentId: T:Terminal.Gui.ShortcutHelper - fullName: Terminal.Gui.ShortcutHelper - nameWithType: ShortcutHelper -- uid: Terminal.Gui.ShortcutHelper.CheckKeysFlagRange(Terminal.Gui.Key,Terminal.Gui.Key,Terminal.Gui.Key) - name: CheckKeysFlagRange(Key, Key, Key) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_CheckKeysFlagRange_Terminal_Gui_Key_Terminal_Gui_Key_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.ShortcutHelper.CheckKeysFlagRange(Terminal.Gui.Key,Terminal.Gui.Key,Terminal.Gui.Key) - fullName: Terminal.Gui.ShortcutHelper.CheckKeysFlagRange(Terminal.Gui.Key, Terminal.Gui.Key, Terminal.Gui.Key) - nameWithType: ShortcutHelper.CheckKeysFlagRange(Key, Key, Key) -- uid: Terminal.Gui.ShortcutHelper.CheckKeysFlagRange* - name: CheckKeysFlagRange - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_CheckKeysFlagRange_ - commentId: Overload:Terminal.Gui.ShortcutHelper.CheckKeysFlagRange - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.CheckKeysFlagRange - nameWithType: ShortcutHelper.CheckKeysFlagRange -- uid: Terminal.Gui.ShortcutHelper.FindAndOpenByShortcut(Terminal.Gui.KeyEvent,Terminal.Gui.View) - name: FindAndOpenByShortcut(KeyEvent, View) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_FindAndOpenByShortcut_Terminal_Gui_KeyEvent_Terminal_Gui_View_ - commentId: M:Terminal.Gui.ShortcutHelper.FindAndOpenByShortcut(Terminal.Gui.KeyEvent,Terminal.Gui.View) - fullName: Terminal.Gui.ShortcutHelper.FindAndOpenByShortcut(Terminal.Gui.KeyEvent, Terminal.Gui.View) - nameWithType: ShortcutHelper.FindAndOpenByShortcut(KeyEvent, View) -- uid: Terminal.Gui.ShortcutHelper.FindAndOpenByShortcut* - name: FindAndOpenByShortcut - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_FindAndOpenByShortcut_ - commentId: Overload:Terminal.Gui.ShortcutHelper.FindAndOpenByShortcut - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.FindAndOpenByShortcut - nameWithType: ShortcutHelper.FindAndOpenByShortcut -- uid: Terminal.Gui.ShortcutHelper.GetKeyToString(Terminal.Gui.Key,Terminal.Gui.Key@) - name: GetKeyToString(Key, out Key) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetKeyToString_Terminal_Gui_Key_Terminal_Gui_Key__ - commentId: M:Terminal.Gui.ShortcutHelper.GetKeyToString(Terminal.Gui.Key,Terminal.Gui.Key@) - name.vb: GetKeyToString(Key, ByRef Key) - fullName: Terminal.Gui.ShortcutHelper.GetKeyToString(Terminal.Gui.Key, out Terminal.Gui.Key) - fullName.vb: Terminal.Gui.ShortcutHelper.GetKeyToString(Terminal.Gui.Key, ByRef Terminal.Gui.Key) - nameWithType: ShortcutHelper.GetKeyToString(Key, out Key) - nameWithType.vb: ShortcutHelper.GetKeyToString(Key, ByRef Key) -- uid: Terminal.Gui.ShortcutHelper.GetKeyToString* - name: GetKeyToString - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetKeyToString_ - commentId: Overload:Terminal.Gui.ShortcutHelper.GetKeyToString - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.GetKeyToString - nameWithType: ShortcutHelper.GetKeyToString -- uid: Terminal.Gui.ShortcutHelper.GetModifiersKey(Terminal.Gui.KeyEvent) - name: GetModifiersKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetModifiersKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.ShortcutHelper.GetModifiersKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.ShortcutHelper.GetModifiersKey(Terminal.Gui.KeyEvent) - nameWithType: ShortcutHelper.GetModifiersKey(KeyEvent) -- uid: Terminal.Gui.ShortcutHelper.GetModifiersKey* - name: GetModifiersKey - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetModifiersKey_ - commentId: Overload:Terminal.Gui.ShortcutHelper.GetModifiersKey - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.GetModifiersKey - nameWithType: ShortcutHelper.GetModifiersKey -- uid: Terminal.Gui.ShortcutHelper.GetShortcutFromTag(NStack.ustring,NStack.ustring) - name: GetShortcutFromTag(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetShortcutFromTag_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.ShortcutHelper.GetShortcutFromTag(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.ShortcutHelper.GetShortcutFromTag(NStack.ustring, NStack.ustring) - nameWithType: ShortcutHelper.GetShortcutFromTag(ustring, ustring) -- uid: Terminal.Gui.ShortcutHelper.GetShortcutFromTag* - name: GetShortcutFromTag - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetShortcutFromTag_ - commentId: Overload:Terminal.Gui.ShortcutHelper.GetShortcutFromTag - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.GetShortcutFromTag - nameWithType: ShortcutHelper.GetShortcutFromTag -- uid: Terminal.Gui.ShortcutHelper.GetShortcutTag(Terminal.Gui.Key,NStack.ustring) - name: GetShortcutTag(Key, ustring) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetShortcutTag_Terminal_Gui_Key_NStack_ustring_ - commentId: M:Terminal.Gui.ShortcutHelper.GetShortcutTag(Terminal.Gui.Key,NStack.ustring) - fullName: Terminal.Gui.ShortcutHelper.GetShortcutTag(Terminal.Gui.Key, NStack.ustring) - nameWithType: ShortcutHelper.GetShortcutTag(Key, ustring) -- uid: Terminal.Gui.ShortcutHelper.GetShortcutTag* - name: GetShortcutTag - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_GetShortcutTag_ - commentId: Overload:Terminal.Gui.ShortcutHelper.GetShortcutTag - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.GetShortcutTag - nameWithType: ShortcutHelper.GetShortcutTag -- uid: Terminal.Gui.ShortcutHelper.PostShortcutValidation(Terminal.Gui.Key) - name: PostShortcutValidation(Key) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_PostShortcutValidation_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.ShortcutHelper.PostShortcutValidation(Terminal.Gui.Key) - fullName: Terminal.Gui.ShortcutHelper.PostShortcutValidation(Terminal.Gui.Key) - nameWithType: ShortcutHelper.PostShortcutValidation(Key) -- uid: Terminal.Gui.ShortcutHelper.PostShortcutValidation* - name: PostShortcutValidation - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_PostShortcutValidation_ - commentId: Overload:Terminal.Gui.ShortcutHelper.PostShortcutValidation - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.PostShortcutValidation - nameWithType: ShortcutHelper.PostShortcutValidation -- uid: Terminal.Gui.ShortcutHelper.PreShortcutValidation(Terminal.Gui.Key) - name: PreShortcutValidation(Key) - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_PreShortcutValidation_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.ShortcutHelper.PreShortcutValidation(Terminal.Gui.Key) - fullName: Terminal.Gui.ShortcutHelper.PreShortcutValidation(Terminal.Gui.Key) - nameWithType: ShortcutHelper.PreShortcutValidation(Key) -- uid: Terminal.Gui.ShortcutHelper.PreShortcutValidation* - name: PreShortcutValidation - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_PreShortcutValidation_ - commentId: Overload:Terminal.Gui.ShortcutHelper.PreShortcutValidation - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.PreShortcutValidation - nameWithType: ShortcutHelper.PreShortcutValidation -- uid: Terminal.Gui.ShortcutHelper.Shortcut - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_Shortcut - commentId: P:Terminal.Gui.ShortcutHelper.Shortcut - fullName: Terminal.Gui.ShortcutHelper.Shortcut - nameWithType: ShortcutHelper.Shortcut -- uid: Terminal.Gui.ShortcutHelper.Shortcut* - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_Shortcut_ - commentId: Overload:Terminal.Gui.ShortcutHelper.Shortcut - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.Shortcut - nameWithType: ShortcutHelper.Shortcut -- uid: Terminal.Gui.ShortcutHelper.ShortcutAction - name: ShortcutAction - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_ShortcutAction - commentId: P:Terminal.Gui.ShortcutHelper.ShortcutAction - fullName: Terminal.Gui.ShortcutHelper.ShortcutAction - nameWithType: ShortcutHelper.ShortcutAction -- uid: Terminal.Gui.ShortcutHelper.ShortcutAction* - name: ShortcutAction - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_ShortcutAction_ - commentId: Overload:Terminal.Gui.ShortcutHelper.ShortcutAction - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.ShortcutAction - nameWithType: ShortcutHelper.ShortcutAction -- uid: Terminal.Gui.ShortcutHelper.ShortcutTag - name: ShortcutTag - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_ShortcutTag - commentId: P:Terminal.Gui.ShortcutHelper.ShortcutTag - fullName: Terminal.Gui.ShortcutHelper.ShortcutTag - nameWithType: ShortcutHelper.ShortcutTag -- uid: Terminal.Gui.ShortcutHelper.ShortcutTag* - name: ShortcutTag - href: api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html#Terminal_Gui_ShortcutHelper_ShortcutTag_ - commentId: Overload:Terminal.Gui.ShortcutHelper.ShortcutTag - isSpec: "True" - fullName: Terminal.Gui.ShortcutHelper.ShortcutTag - nameWithType: ShortcutHelper.ShortcutTag -- uid: Terminal.Gui.Size - name: Size - href: api/Terminal.Gui/Terminal.Gui.Size.html - commentId: T:Terminal.Gui.Size - fullName: Terminal.Gui.Size - nameWithType: Size -- uid: Terminal.Gui.Size.#ctor(System.Int32,System.Int32) - name: Size(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size__ctor_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Size.#ctor(System.Int32,System.Int32) - fullName: Terminal.Gui.Size.Size(System.Int32, System.Int32) - nameWithType: Size.Size(Int32, Int32) -- uid: Terminal.Gui.Size.#ctor(Terminal.Gui.Point) - name: Size(Point) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size__ctor_Terminal_Gui_Point_ - commentId: M:Terminal.Gui.Size.#ctor(Terminal.Gui.Point) - fullName: Terminal.Gui.Size.Size(Terminal.Gui.Point) - nameWithType: Size.Size(Point) -- uid: Terminal.Gui.Size.#ctor* - name: Size - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size__ctor_ - commentId: Overload:Terminal.Gui.Size.#ctor - isSpec: "True" - fullName: Terminal.Gui.Size.Size - nameWithType: Size.Size -- uid: Terminal.Gui.Size.Add(Terminal.Gui.Size,Terminal.Gui.Size) - name: Add(Size, Size) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Add_Terminal_Gui_Size_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Size.Add(Terminal.Gui.Size,Terminal.Gui.Size) - fullName: Terminal.Gui.Size.Add(Terminal.Gui.Size, Terminal.Gui.Size) - nameWithType: Size.Add(Size, Size) -- uid: Terminal.Gui.Size.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Add_ - commentId: Overload:Terminal.Gui.Size.Add - isSpec: "True" - fullName: Terminal.Gui.Size.Add - nameWithType: Size.Add -- uid: Terminal.Gui.Size.Empty - name: Empty - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Empty - commentId: F:Terminal.Gui.Size.Empty - fullName: Terminal.Gui.Size.Empty - nameWithType: Size.Empty -- uid: Terminal.Gui.Size.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Equals_System_Object_ - commentId: M:Terminal.Gui.Size.Equals(System.Object) - fullName: Terminal.Gui.Size.Equals(System.Object) - nameWithType: Size.Equals(Object) -- uid: Terminal.Gui.Size.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Equals_ - commentId: Overload:Terminal.Gui.Size.Equals - isSpec: "True" - fullName: Terminal.Gui.Size.Equals - nameWithType: Size.Equals -- uid: Terminal.Gui.Size.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_GetHashCode - commentId: M:Terminal.Gui.Size.GetHashCode - fullName: Terminal.Gui.Size.GetHashCode() - nameWithType: Size.GetHashCode() -- uid: Terminal.Gui.Size.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_GetHashCode_ - commentId: Overload:Terminal.Gui.Size.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.Size.GetHashCode - nameWithType: Size.GetHashCode -- uid: Terminal.Gui.Size.Height - name: Height - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Height - commentId: P:Terminal.Gui.Size.Height - fullName: Terminal.Gui.Size.Height - nameWithType: Size.Height -- uid: Terminal.Gui.Size.Height* - name: Height - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Height_ - commentId: Overload:Terminal.Gui.Size.Height - isSpec: "True" - fullName: Terminal.Gui.Size.Height - nameWithType: Size.Height -- uid: Terminal.Gui.Size.IsEmpty - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_IsEmpty - commentId: P:Terminal.Gui.Size.IsEmpty - fullName: Terminal.Gui.Size.IsEmpty - nameWithType: Size.IsEmpty -- uid: Terminal.Gui.Size.IsEmpty* - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_IsEmpty_ - commentId: Overload:Terminal.Gui.Size.IsEmpty - isSpec: "True" - fullName: Terminal.Gui.Size.IsEmpty - nameWithType: Size.IsEmpty -- uid: Terminal.Gui.Size.op_Addition(Terminal.Gui.Size,Terminal.Gui.Size) - name: Addition(Size, Size) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Addition_Terminal_Gui_Size_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Size.op_Addition(Terminal.Gui.Size,Terminal.Gui.Size) - fullName: Terminal.Gui.Size.Addition(Terminal.Gui.Size, Terminal.Gui.Size) - nameWithType: Size.Addition(Size, Size) -- uid: Terminal.Gui.Size.op_Addition* - name: Addition - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Addition_ - commentId: Overload:Terminal.Gui.Size.op_Addition - isSpec: "True" - fullName: Terminal.Gui.Size.Addition - nameWithType: Size.Addition -- uid: Terminal.Gui.Size.op_Equality(Terminal.Gui.Size,Terminal.Gui.Size) - name: Equality(Size, Size) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Equality_Terminal_Gui_Size_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Size.op_Equality(Terminal.Gui.Size,Terminal.Gui.Size) - fullName: Terminal.Gui.Size.Equality(Terminal.Gui.Size, Terminal.Gui.Size) - nameWithType: Size.Equality(Size, Size) -- uid: Terminal.Gui.Size.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Equality_ - commentId: Overload:Terminal.Gui.Size.op_Equality - isSpec: "True" - fullName: Terminal.Gui.Size.Equality - nameWithType: Size.Equality -- uid: Terminal.Gui.Size.op_Explicit(Terminal.Gui.Size)~Terminal.Gui.Point - name: Explicit(Size to Point) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Explicit_Terminal_Gui_Size__Terminal_Gui_Point - commentId: M:Terminal.Gui.Size.op_Explicit(Terminal.Gui.Size)~Terminal.Gui.Point - name.vb: Narrowing(Size to Point) - fullName: Terminal.Gui.Size.Explicit(Terminal.Gui.Size to Terminal.Gui.Point) - fullName.vb: Terminal.Gui.Size.Narrowing(Terminal.Gui.Size to Terminal.Gui.Point) - nameWithType: Size.Explicit(Size to Point) - nameWithType.vb: Size.Narrowing(Size to Point) -- uid: Terminal.Gui.Size.op_Explicit* - name: Explicit - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Explicit_ - commentId: Overload:Terminal.Gui.Size.op_Explicit - isSpec: "True" - name.vb: Narrowing - fullName: Terminal.Gui.Size.Explicit - fullName.vb: Terminal.Gui.Size.Narrowing - nameWithType: Size.Explicit - nameWithType.vb: Size.Narrowing -- uid: Terminal.Gui.Size.op_Inequality(Terminal.Gui.Size,Terminal.Gui.Size) - name: Inequality(Size, Size) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Inequality_Terminal_Gui_Size_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Size.op_Inequality(Terminal.Gui.Size,Terminal.Gui.Size) - fullName: Terminal.Gui.Size.Inequality(Terminal.Gui.Size, Terminal.Gui.Size) - nameWithType: Size.Inequality(Size, Size) -- uid: Terminal.Gui.Size.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Inequality_ - commentId: Overload:Terminal.Gui.Size.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.Size.Inequality - nameWithType: Size.Inequality -- uid: Terminal.Gui.Size.op_Subtraction(Terminal.Gui.Size,Terminal.Gui.Size) - name: Subtraction(Size, Size) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Subtraction_Terminal_Gui_Size_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Size.op_Subtraction(Terminal.Gui.Size,Terminal.Gui.Size) - fullName: Terminal.Gui.Size.Subtraction(Terminal.Gui.Size, Terminal.Gui.Size) - nameWithType: Size.Subtraction(Size, Size) -- uid: Terminal.Gui.Size.op_Subtraction* - name: Subtraction - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_op_Subtraction_ - commentId: Overload:Terminal.Gui.Size.op_Subtraction - isSpec: "True" - fullName: Terminal.Gui.Size.Subtraction - nameWithType: Size.Subtraction -- uid: Terminal.Gui.Size.Subtract(Terminal.Gui.Size,Terminal.Gui.Size) - name: Subtract(Size, Size) - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Subtract_Terminal_Gui_Size_Terminal_Gui_Size_ - commentId: M:Terminal.Gui.Size.Subtract(Terminal.Gui.Size,Terminal.Gui.Size) - fullName: Terminal.Gui.Size.Subtract(Terminal.Gui.Size, Terminal.Gui.Size) - nameWithType: Size.Subtract(Size, Size) -- uid: Terminal.Gui.Size.Subtract* - name: Subtract - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Subtract_ - commentId: Overload:Terminal.Gui.Size.Subtract - isSpec: "True" - fullName: Terminal.Gui.Size.Subtract - nameWithType: Size.Subtract -- uid: Terminal.Gui.Size.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_ToString - commentId: M:Terminal.Gui.Size.ToString - fullName: Terminal.Gui.Size.ToString() - nameWithType: Size.ToString() -- uid: Terminal.Gui.Size.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_ToString_ - commentId: Overload:Terminal.Gui.Size.ToString - isSpec: "True" - fullName: Terminal.Gui.Size.ToString - nameWithType: Size.ToString -- uid: Terminal.Gui.Size.Width - name: Width - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Width - commentId: P:Terminal.Gui.Size.Width - fullName: Terminal.Gui.Size.Width - nameWithType: Size.Width -- uid: Terminal.Gui.Size.Width* - name: Width - href: api/Terminal.Gui/Terminal.Gui.Size.html#Terminal_Gui_Size_Width_ - commentId: Overload:Terminal.Gui.Size.Width - isSpec: "True" - fullName: Terminal.Gui.Size.Width - nameWithType: Size.Width -- uid: Terminal.Gui.SizeF - name: SizeF - href: api/Terminal.Gui/Terminal.Gui.SizeF.html - commentId: T:Terminal.Gui.SizeF - fullName: Terminal.Gui.SizeF - nameWithType: SizeF -- uid: Terminal.Gui.SizeF.#ctor(System.Single,System.Single) - name: SizeF(Single, Single) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF__ctor_System_Single_System_Single_ - commentId: M:Terminal.Gui.SizeF.#ctor(System.Single,System.Single) - fullName: Terminal.Gui.SizeF.SizeF(System.Single, System.Single) - nameWithType: SizeF.SizeF(Single, Single) -- uid: Terminal.Gui.SizeF.#ctor(Terminal.Gui.PointF) - name: SizeF(PointF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF__ctor_Terminal_Gui_PointF_ - commentId: M:Terminal.Gui.SizeF.#ctor(Terminal.Gui.PointF) - fullName: Terminal.Gui.SizeF.SizeF(Terminal.Gui.PointF) - nameWithType: SizeF.SizeF(PointF) -- uid: Terminal.Gui.SizeF.#ctor(Terminal.Gui.SizeF) - name: SizeF(SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF__ctor_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.#ctor(Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.SizeF(Terminal.Gui.SizeF) - nameWithType: SizeF.SizeF(SizeF) -- uid: Terminal.Gui.SizeF.#ctor* - name: SizeF - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF__ctor_ - commentId: Overload:Terminal.Gui.SizeF.#ctor - isSpec: "True" - fullName: Terminal.Gui.SizeF.SizeF - nameWithType: SizeF.SizeF -- uid: Terminal.Gui.SizeF.Add(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - name: Add(SizeF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Add_Terminal_Gui_SizeF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.Add(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Add(Terminal.Gui.SizeF, Terminal.Gui.SizeF) - nameWithType: SizeF.Add(SizeF, SizeF) -- uid: Terminal.Gui.SizeF.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Add_ - commentId: Overload:Terminal.Gui.SizeF.Add - isSpec: "True" - fullName: Terminal.Gui.SizeF.Add - nameWithType: SizeF.Add -- uid: Terminal.Gui.SizeF.Empty - name: Empty - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Empty - commentId: F:Terminal.Gui.SizeF.Empty - fullName: Terminal.Gui.SizeF.Empty - nameWithType: SizeF.Empty -- uid: Terminal.Gui.SizeF.Equals(System.Object) - name: Equals(Object) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Equals_System_Object_ - commentId: M:Terminal.Gui.SizeF.Equals(System.Object) - fullName: Terminal.Gui.SizeF.Equals(System.Object) - nameWithType: SizeF.Equals(Object) -- uid: Terminal.Gui.SizeF.Equals(Terminal.Gui.SizeF) - name: Equals(SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Equals_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.Equals(Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Equals(Terminal.Gui.SizeF) - nameWithType: SizeF.Equals(SizeF) -- uid: Terminal.Gui.SizeF.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Equals_ - commentId: Overload:Terminal.Gui.SizeF.Equals - isSpec: "True" - fullName: Terminal.Gui.SizeF.Equals - nameWithType: SizeF.Equals -- uid: Terminal.Gui.SizeF.GetHashCode - name: GetHashCode() - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_GetHashCode - commentId: M:Terminal.Gui.SizeF.GetHashCode - fullName: Terminal.Gui.SizeF.GetHashCode() - nameWithType: SizeF.GetHashCode() -- uid: Terminal.Gui.SizeF.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_GetHashCode_ - commentId: Overload:Terminal.Gui.SizeF.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.SizeF.GetHashCode - nameWithType: SizeF.GetHashCode -- uid: Terminal.Gui.SizeF.Height - name: Height - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Height - commentId: P:Terminal.Gui.SizeF.Height - fullName: Terminal.Gui.SizeF.Height - nameWithType: SizeF.Height -- uid: Terminal.Gui.SizeF.Height* - name: Height - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Height_ - commentId: Overload:Terminal.Gui.SizeF.Height - isSpec: "True" - fullName: Terminal.Gui.SizeF.Height - nameWithType: SizeF.Height -- uid: Terminal.Gui.SizeF.IsEmpty - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_IsEmpty - commentId: P:Terminal.Gui.SizeF.IsEmpty - fullName: Terminal.Gui.SizeF.IsEmpty - nameWithType: SizeF.IsEmpty -- uid: Terminal.Gui.SizeF.IsEmpty* - name: IsEmpty - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_IsEmpty_ - commentId: Overload:Terminal.Gui.SizeF.IsEmpty - isSpec: "True" - fullName: Terminal.Gui.SizeF.IsEmpty - nameWithType: SizeF.IsEmpty -- uid: Terminal.Gui.SizeF.op_Addition(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - name: Addition(SizeF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Addition_Terminal_Gui_SizeF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.op_Addition(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Addition(Terminal.Gui.SizeF, Terminal.Gui.SizeF) - nameWithType: SizeF.Addition(SizeF, SizeF) -- uid: Terminal.Gui.SizeF.op_Addition* - name: Addition - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Addition_ - commentId: Overload:Terminal.Gui.SizeF.op_Addition - isSpec: "True" - fullName: Terminal.Gui.SizeF.Addition - nameWithType: SizeF.Addition -- uid: Terminal.Gui.SizeF.op_Division(Terminal.Gui.SizeF,System.Single) - name: Division(SizeF, Single) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Division_Terminal_Gui_SizeF_System_Single_ - commentId: M:Terminal.Gui.SizeF.op_Division(Terminal.Gui.SizeF,System.Single) - fullName: Terminal.Gui.SizeF.Division(Terminal.Gui.SizeF, System.Single) - nameWithType: SizeF.Division(SizeF, Single) -- uid: Terminal.Gui.SizeF.op_Division* - name: Division - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Division_ - commentId: Overload:Terminal.Gui.SizeF.op_Division - isSpec: "True" - fullName: Terminal.Gui.SizeF.Division - nameWithType: SizeF.Division -- uid: Terminal.Gui.SizeF.op_Equality(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - name: Equality(SizeF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Equality_Terminal_Gui_SizeF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.op_Equality(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Equality(Terminal.Gui.SizeF, Terminal.Gui.SizeF) - nameWithType: SizeF.Equality(SizeF, SizeF) -- uid: Terminal.Gui.SizeF.op_Equality* - name: Equality - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Equality_ - commentId: Overload:Terminal.Gui.SizeF.op_Equality - isSpec: "True" - fullName: Terminal.Gui.SizeF.Equality - nameWithType: SizeF.Equality -- uid: Terminal.Gui.SizeF.op_Explicit(Terminal.Gui.SizeF)~Terminal.Gui.PointF - name: Explicit(SizeF to PointF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Explicit_Terminal_Gui_SizeF__Terminal_Gui_PointF - commentId: M:Terminal.Gui.SizeF.op_Explicit(Terminal.Gui.SizeF)~Terminal.Gui.PointF - name.vb: Narrowing(SizeF to PointF) - fullName: Terminal.Gui.SizeF.Explicit(Terminal.Gui.SizeF to Terminal.Gui.PointF) - fullName.vb: Terminal.Gui.SizeF.Narrowing(Terminal.Gui.SizeF to Terminal.Gui.PointF) - nameWithType: SizeF.Explicit(SizeF to PointF) - nameWithType.vb: SizeF.Narrowing(SizeF to PointF) -- uid: Terminal.Gui.SizeF.op_Explicit* - name: Explicit - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Explicit_ - commentId: Overload:Terminal.Gui.SizeF.op_Explicit - isSpec: "True" - name.vb: Narrowing - fullName: Terminal.Gui.SizeF.Explicit - fullName.vb: Terminal.Gui.SizeF.Narrowing - nameWithType: SizeF.Explicit - nameWithType.vb: SizeF.Narrowing -- uid: Terminal.Gui.SizeF.op_Inequality(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - name: Inequality(SizeF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Inequality_Terminal_Gui_SizeF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.op_Inequality(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Inequality(Terminal.Gui.SizeF, Terminal.Gui.SizeF) - nameWithType: SizeF.Inequality(SizeF, SizeF) -- uid: Terminal.Gui.SizeF.op_Inequality* - name: Inequality - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Inequality_ - commentId: Overload:Terminal.Gui.SizeF.op_Inequality - isSpec: "True" - fullName: Terminal.Gui.SizeF.Inequality - nameWithType: SizeF.Inequality -- uid: Terminal.Gui.SizeF.op_Multiply(System.Single,Terminal.Gui.SizeF) - name: Multiply(Single, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Multiply_System_Single_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.op_Multiply(System.Single,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Multiply(System.Single, Terminal.Gui.SizeF) - nameWithType: SizeF.Multiply(Single, SizeF) -- uid: Terminal.Gui.SizeF.op_Multiply(Terminal.Gui.SizeF,System.Single) - name: Multiply(SizeF, Single) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Multiply_Terminal_Gui_SizeF_System_Single_ - commentId: M:Terminal.Gui.SizeF.op_Multiply(Terminal.Gui.SizeF,System.Single) - fullName: Terminal.Gui.SizeF.Multiply(Terminal.Gui.SizeF, System.Single) - nameWithType: SizeF.Multiply(SizeF, Single) -- uid: Terminal.Gui.SizeF.op_Multiply* - name: Multiply - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Multiply_ - commentId: Overload:Terminal.Gui.SizeF.op_Multiply - isSpec: "True" - fullName: Terminal.Gui.SizeF.Multiply - nameWithType: SizeF.Multiply -- uid: Terminal.Gui.SizeF.op_Subtraction(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - name: Subtraction(SizeF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Subtraction_Terminal_Gui_SizeF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.op_Subtraction(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Subtraction(Terminal.Gui.SizeF, Terminal.Gui.SizeF) - nameWithType: SizeF.Subtraction(SizeF, SizeF) -- uid: Terminal.Gui.SizeF.op_Subtraction* - name: Subtraction - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_op_Subtraction_ - commentId: Overload:Terminal.Gui.SizeF.op_Subtraction - isSpec: "True" - fullName: Terminal.Gui.SizeF.Subtraction - nameWithType: SizeF.Subtraction -- uid: Terminal.Gui.SizeF.Subtract(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - name: Subtract(SizeF, SizeF) - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Subtract_Terminal_Gui_SizeF_Terminal_Gui_SizeF_ - commentId: M:Terminal.Gui.SizeF.Subtract(Terminal.Gui.SizeF,Terminal.Gui.SizeF) - fullName: Terminal.Gui.SizeF.Subtract(Terminal.Gui.SizeF, Terminal.Gui.SizeF) - nameWithType: SizeF.Subtract(SizeF, SizeF) -- uid: Terminal.Gui.SizeF.Subtract* - name: Subtract - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Subtract_ - commentId: Overload:Terminal.Gui.SizeF.Subtract - isSpec: "True" - fullName: Terminal.Gui.SizeF.Subtract - nameWithType: SizeF.Subtract -- uid: Terminal.Gui.SizeF.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_ToString - commentId: M:Terminal.Gui.SizeF.ToString - fullName: Terminal.Gui.SizeF.ToString() - nameWithType: SizeF.ToString() -- uid: Terminal.Gui.SizeF.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_ToString_ - commentId: Overload:Terminal.Gui.SizeF.ToString - isSpec: "True" - fullName: Terminal.Gui.SizeF.ToString - nameWithType: SizeF.ToString -- uid: Terminal.Gui.SizeF.Width - name: Width - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Width - commentId: P:Terminal.Gui.SizeF.Width - fullName: Terminal.Gui.SizeF.Width - nameWithType: SizeF.Width -- uid: Terminal.Gui.SizeF.Width* - name: Width - href: api/Terminal.Gui/Terminal.Gui.SizeF.html#Terminal_Gui_SizeF_Width_ - commentId: Overload:Terminal.Gui.SizeF.Width - isSpec: "True" - fullName: Terminal.Gui.SizeF.Width - nameWithType: SizeF.Width -- uid: Terminal.Gui.StackExtensions - name: StackExtensions - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html - commentId: T:Terminal.Gui.StackExtensions - fullName: Terminal.Gui.StackExtensions - nameWithType: StackExtensions -- uid: Terminal.Gui.StackExtensions.Contains* - name: Contains - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_Contains_ - commentId: Overload:Terminal.Gui.StackExtensions.Contains - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.Contains - nameWithType: StackExtensions.Contains -- uid: Terminal.Gui.StackExtensions.Contains``1(System.Collections.Generic.Stack{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) - name: Contains(Stack, T, IEqualityComparer) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_Contains__1_System_Collections_Generic_Stack___0____0_System_Collections_Generic_IEqualityComparer___0__ - commentId: M:Terminal.Gui.StackExtensions.Contains``1(System.Collections.Generic.Stack{``0},``0,System.Collections.Generic.IEqualityComparer{``0}) - name.vb: Contains(Of T)(Stack(Of T), T, IEqualityComparer(Of T)) - fullName: Terminal.Gui.StackExtensions.Contains(System.Collections.Generic.Stack, T, System.Collections.Generic.IEqualityComparer) - fullName.vb: Terminal.Gui.StackExtensions.Contains(Of T)(System.Collections.Generic.Stack(Of T), T, System.Collections.Generic.IEqualityComparer(Of T)) - nameWithType: StackExtensions.Contains(Stack, T, IEqualityComparer) - nameWithType.vb: StackExtensions.Contains(Of T)(Stack(Of T), T, IEqualityComparer(Of T)) -- uid: Terminal.Gui.StackExtensions.FindDuplicates* - name: FindDuplicates - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_FindDuplicates_ - commentId: Overload:Terminal.Gui.StackExtensions.FindDuplicates - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.FindDuplicates - nameWithType: StackExtensions.FindDuplicates -- uid: Terminal.Gui.StackExtensions.FindDuplicates``1(System.Collections.Generic.Stack{``0},System.Collections.Generic.IEqualityComparer{``0}) - name: FindDuplicates(Stack, IEqualityComparer) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_FindDuplicates__1_System_Collections_Generic_Stack___0__System_Collections_Generic_IEqualityComparer___0__ - commentId: M:Terminal.Gui.StackExtensions.FindDuplicates``1(System.Collections.Generic.Stack{``0},System.Collections.Generic.IEqualityComparer{``0}) - name.vb: FindDuplicates(Of T)(Stack(Of T), IEqualityComparer(Of T)) - fullName: Terminal.Gui.StackExtensions.FindDuplicates(System.Collections.Generic.Stack, System.Collections.Generic.IEqualityComparer) - fullName.vb: Terminal.Gui.StackExtensions.FindDuplicates(Of T)(System.Collections.Generic.Stack(Of T), System.Collections.Generic.IEqualityComparer(Of T)) - nameWithType: StackExtensions.FindDuplicates(Stack, IEqualityComparer) - nameWithType.vb: StackExtensions.FindDuplicates(Of T)(Stack(Of T), IEqualityComparer(Of T)) -- uid: Terminal.Gui.StackExtensions.MoveNext* - name: MoveNext - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_MoveNext_ - commentId: Overload:Terminal.Gui.StackExtensions.MoveNext - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.MoveNext - nameWithType: StackExtensions.MoveNext -- uid: Terminal.Gui.StackExtensions.MoveNext``1(System.Collections.Generic.Stack{``0}) - name: MoveNext(Stack) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_MoveNext__1_System_Collections_Generic_Stack___0__ - commentId: M:Terminal.Gui.StackExtensions.MoveNext``1(System.Collections.Generic.Stack{``0}) - name.vb: MoveNext(Of T)(Stack(Of T)) - fullName: Terminal.Gui.StackExtensions.MoveNext(System.Collections.Generic.Stack) - fullName.vb: Terminal.Gui.StackExtensions.MoveNext(Of T)(System.Collections.Generic.Stack(Of T)) - nameWithType: StackExtensions.MoveNext(Stack) - nameWithType.vb: StackExtensions.MoveNext(Of T)(Stack(Of T)) -- uid: Terminal.Gui.StackExtensions.MovePrevious* - name: MovePrevious - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_MovePrevious_ - commentId: Overload:Terminal.Gui.StackExtensions.MovePrevious - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.MovePrevious - nameWithType: StackExtensions.MovePrevious -- uid: Terminal.Gui.StackExtensions.MovePrevious``1(System.Collections.Generic.Stack{``0}) - name: MovePrevious(Stack) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_MovePrevious__1_System_Collections_Generic_Stack___0__ - commentId: M:Terminal.Gui.StackExtensions.MovePrevious``1(System.Collections.Generic.Stack{``0}) - name.vb: MovePrevious(Of T)(Stack(Of T)) - fullName: Terminal.Gui.StackExtensions.MovePrevious(System.Collections.Generic.Stack) - fullName.vb: Terminal.Gui.StackExtensions.MovePrevious(Of T)(System.Collections.Generic.Stack(Of T)) - nameWithType: StackExtensions.MovePrevious(Stack) - nameWithType.vb: StackExtensions.MovePrevious(Of T)(Stack(Of T)) -- uid: Terminal.Gui.StackExtensions.MoveTo* - name: MoveTo - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_MoveTo_ - commentId: Overload:Terminal.Gui.StackExtensions.MoveTo - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.MoveTo - nameWithType: StackExtensions.MoveTo -- uid: Terminal.Gui.StackExtensions.MoveTo``1(System.Collections.Generic.Stack{``0},``0,System.Int32,System.Collections.Generic.IEqualityComparer{``0}) - name: MoveTo(Stack, T, Int32, IEqualityComparer) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_MoveTo__1_System_Collections_Generic_Stack___0____0_System_Int32_System_Collections_Generic_IEqualityComparer___0__ - commentId: M:Terminal.Gui.StackExtensions.MoveTo``1(System.Collections.Generic.Stack{``0},``0,System.Int32,System.Collections.Generic.IEqualityComparer{``0}) - name.vb: MoveTo(Of T)(Stack(Of T), T, Int32, IEqualityComparer(Of T)) - fullName: Terminal.Gui.StackExtensions.MoveTo(System.Collections.Generic.Stack, T, System.Int32, System.Collections.Generic.IEqualityComparer) - fullName.vb: Terminal.Gui.StackExtensions.MoveTo(Of T)(System.Collections.Generic.Stack(Of T), T, System.Int32, System.Collections.Generic.IEqualityComparer(Of T)) - nameWithType: StackExtensions.MoveTo(Stack, T, Int32, IEqualityComparer) - nameWithType.vb: StackExtensions.MoveTo(Of T)(Stack(Of T), T, Int32, IEqualityComparer(Of T)) -- uid: Terminal.Gui.StackExtensions.Replace* - name: Replace - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_Replace_ - commentId: Overload:Terminal.Gui.StackExtensions.Replace - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.Replace - nameWithType: StackExtensions.Replace -- uid: Terminal.Gui.StackExtensions.Replace``1(System.Collections.Generic.Stack{``0},``0,``0,System.Collections.Generic.IEqualityComparer{``0}) - name: Replace(Stack, T, T, IEqualityComparer) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_Replace__1_System_Collections_Generic_Stack___0____0___0_System_Collections_Generic_IEqualityComparer___0__ - commentId: M:Terminal.Gui.StackExtensions.Replace``1(System.Collections.Generic.Stack{``0},``0,``0,System.Collections.Generic.IEqualityComparer{``0}) - name.vb: Replace(Of T)(Stack(Of T), T, T, IEqualityComparer(Of T)) - fullName: Terminal.Gui.StackExtensions.Replace(System.Collections.Generic.Stack, T, T, System.Collections.Generic.IEqualityComparer) - fullName.vb: Terminal.Gui.StackExtensions.Replace(Of T)(System.Collections.Generic.Stack(Of T), T, T, System.Collections.Generic.IEqualityComparer(Of T)) - nameWithType: StackExtensions.Replace(Stack, T, T, IEqualityComparer) - nameWithType.vb: StackExtensions.Replace(Of T)(Stack(Of T), T, T, IEqualityComparer(Of T)) -- uid: Terminal.Gui.StackExtensions.Swap* - name: Swap - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_Swap_ - commentId: Overload:Terminal.Gui.StackExtensions.Swap - isSpec: "True" - fullName: Terminal.Gui.StackExtensions.Swap - nameWithType: StackExtensions.Swap -- uid: Terminal.Gui.StackExtensions.Swap``1(System.Collections.Generic.Stack{``0},``0,``0,System.Collections.Generic.IEqualityComparer{``0}) - name: Swap(Stack, T, T, IEqualityComparer) - href: api/Terminal.Gui/Terminal.Gui.StackExtensions.html#Terminal_Gui_StackExtensions_Swap__1_System_Collections_Generic_Stack___0____0___0_System_Collections_Generic_IEqualityComparer___0__ - commentId: M:Terminal.Gui.StackExtensions.Swap``1(System.Collections.Generic.Stack{``0},``0,``0,System.Collections.Generic.IEqualityComparer{``0}) - name.vb: Swap(Of T)(Stack(Of T), T, T, IEqualityComparer(Of T)) - fullName: Terminal.Gui.StackExtensions.Swap(System.Collections.Generic.Stack, T, T, System.Collections.Generic.IEqualityComparer) - fullName.vb: Terminal.Gui.StackExtensions.Swap(Of T)(System.Collections.Generic.Stack(Of T), T, T, System.Collections.Generic.IEqualityComparer(Of T)) - nameWithType: StackExtensions.Swap(Stack, T, T, IEqualityComparer) - nameWithType.vb: StackExtensions.Swap(Of T)(Stack(Of T), T, T, IEqualityComparer(Of T)) -- uid: Terminal.Gui.StatusBar - name: StatusBar - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html - commentId: T:Terminal.Gui.StatusBar - fullName: Terminal.Gui.StatusBar - nameWithType: StatusBar -- uid: Terminal.Gui.StatusBar.#ctor - name: StatusBar() - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar__ctor - commentId: M:Terminal.Gui.StatusBar.#ctor - fullName: Terminal.Gui.StatusBar.StatusBar() - nameWithType: StatusBar.StatusBar() -- uid: Terminal.Gui.StatusBar.#ctor(Terminal.Gui.StatusItem[]) - name: StatusBar(StatusItem[]) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar__ctor_Terminal_Gui_StatusItem___ - commentId: M:Terminal.Gui.StatusBar.#ctor(Terminal.Gui.StatusItem[]) - name.vb: StatusBar(StatusItem()) - fullName: Terminal.Gui.StatusBar.StatusBar(Terminal.Gui.StatusItem[]) - fullName.vb: Terminal.Gui.StatusBar.StatusBar(Terminal.Gui.StatusItem()) - nameWithType: StatusBar.StatusBar(StatusItem[]) - nameWithType.vb: StatusBar.StatusBar(StatusItem()) -- uid: Terminal.Gui.StatusBar.#ctor* - name: StatusBar - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar__ctor_ - commentId: Overload:Terminal.Gui.StatusBar.#ctor - isSpec: "True" - fullName: Terminal.Gui.StatusBar.StatusBar - nameWithType: StatusBar.StatusBar -- uid: Terminal.Gui.StatusBar.AddItemAt(System.Int32,Terminal.Gui.StatusItem) - name: AddItemAt(Int32, StatusItem) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_AddItemAt_System_Int32_Terminal_Gui_StatusItem_ - commentId: M:Terminal.Gui.StatusBar.AddItemAt(System.Int32,Terminal.Gui.StatusItem) - fullName: Terminal.Gui.StatusBar.AddItemAt(System.Int32, Terminal.Gui.StatusItem) - nameWithType: StatusBar.AddItemAt(Int32, StatusItem) -- uid: Terminal.Gui.StatusBar.AddItemAt* - name: AddItemAt - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_AddItemAt_ - commentId: Overload:Terminal.Gui.StatusBar.AddItemAt - isSpec: "True" - fullName: Terminal.Gui.StatusBar.AddItemAt - nameWithType: StatusBar.AddItemAt -- uid: Terminal.Gui.StatusBar.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_Dispose_System_Boolean_ - commentId: M:Terminal.Gui.StatusBar.Dispose(System.Boolean) - fullName: Terminal.Gui.StatusBar.Dispose(System.Boolean) - nameWithType: StatusBar.Dispose(Boolean) -- uid: Terminal.Gui.StatusBar.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_Dispose_ - commentId: Overload:Terminal.Gui.StatusBar.Dispose - isSpec: "True" - fullName: Terminal.Gui.StatusBar.Dispose - nameWithType: StatusBar.Dispose -- uid: Terminal.Gui.StatusBar.Items - name: Items - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_Items - commentId: P:Terminal.Gui.StatusBar.Items - fullName: Terminal.Gui.StatusBar.Items - nameWithType: StatusBar.Items -- uid: Terminal.Gui.StatusBar.Items* - name: Items - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_Items_ - commentId: Overload:Terminal.Gui.StatusBar.Items - isSpec: "True" - fullName: Terminal.Gui.StatusBar.Items - nameWithType: StatusBar.Items -- uid: Terminal.Gui.StatusBar.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.StatusBar.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.StatusBar.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: StatusBar.MouseEvent(MouseEvent) -- uid: Terminal.Gui.StatusBar.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_MouseEvent_ - commentId: Overload:Terminal.Gui.StatusBar.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.StatusBar.MouseEvent - nameWithType: StatusBar.MouseEvent -- uid: Terminal.Gui.StatusBar.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.StatusBar.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.StatusBar.OnEnter(Terminal.Gui.View) - nameWithType: StatusBar.OnEnter(View) -- uid: Terminal.Gui.StatusBar.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_OnEnter_ - commentId: Overload:Terminal.Gui.StatusBar.OnEnter - isSpec: "True" - fullName: Terminal.Gui.StatusBar.OnEnter - nameWithType: StatusBar.OnEnter -- uid: Terminal.Gui.StatusBar.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.StatusBar.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.StatusBar.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: StatusBar.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.StatusBar.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_ProcessHotKey_ - commentId: Overload:Terminal.Gui.StatusBar.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.StatusBar.ProcessHotKey - nameWithType: StatusBar.ProcessHotKey -- uid: Terminal.Gui.StatusBar.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.StatusBar.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.StatusBar.Redraw(Terminal.Gui.Rect) - nameWithType: StatusBar.Redraw(Rect) -- uid: Terminal.Gui.StatusBar.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_Redraw_ - commentId: Overload:Terminal.Gui.StatusBar.Redraw - isSpec: "True" - fullName: Terminal.Gui.StatusBar.Redraw - nameWithType: StatusBar.Redraw -- uid: Terminal.Gui.StatusBar.RemoveItem(System.Int32) - name: RemoveItem(Int32) - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_RemoveItem_System_Int32_ - commentId: M:Terminal.Gui.StatusBar.RemoveItem(System.Int32) - fullName: Terminal.Gui.StatusBar.RemoveItem(System.Int32) - nameWithType: StatusBar.RemoveItem(Int32) -- uid: Terminal.Gui.StatusBar.RemoveItem* - name: RemoveItem - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_RemoveItem_ - commentId: Overload:Terminal.Gui.StatusBar.RemoveItem - isSpec: "True" - fullName: Terminal.Gui.StatusBar.RemoveItem - nameWithType: StatusBar.RemoveItem -- uid: Terminal.Gui.StatusBar.ShortcutDelimiter - name: ShortcutDelimiter - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_ShortcutDelimiter - commentId: P:Terminal.Gui.StatusBar.ShortcutDelimiter - fullName: Terminal.Gui.StatusBar.ShortcutDelimiter - nameWithType: StatusBar.ShortcutDelimiter -- uid: Terminal.Gui.StatusBar.ShortcutDelimiter* - name: ShortcutDelimiter - href: api/Terminal.Gui/Terminal.Gui.StatusBar.html#Terminal_Gui_StatusBar_ShortcutDelimiter_ - commentId: Overload:Terminal.Gui.StatusBar.ShortcutDelimiter - isSpec: "True" - fullName: Terminal.Gui.StatusBar.ShortcutDelimiter - nameWithType: StatusBar.ShortcutDelimiter -- uid: Terminal.Gui.StatusItem - name: StatusItem - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html - commentId: T:Terminal.Gui.StatusItem - fullName: Terminal.Gui.StatusItem - nameWithType: StatusItem -- uid: Terminal.Gui.StatusItem.#ctor(Terminal.Gui.Key,NStack.ustring,System.Action) - name: StatusItem(Key, ustring, Action) - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem__ctor_Terminal_Gui_Key_NStack_ustring_System_Action_ - commentId: M:Terminal.Gui.StatusItem.#ctor(Terminal.Gui.Key,NStack.ustring,System.Action) - fullName: Terminal.Gui.StatusItem.StatusItem(Terminal.Gui.Key, NStack.ustring, System.Action) - nameWithType: StatusItem.StatusItem(Key, ustring, Action) -- uid: Terminal.Gui.StatusItem.#ctor* - name: StatusItem - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem__ctor_ - commentId: Overload:Terminal.Gui.StatusItem.#ctor - isSpec: "True" - fullName: Terminal.Gui.StatusItem.StatusItem - nameWithType: StatusItem.StatusItem -- uid: Terminal.Gui.StatusItem.Action - name: Action - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem_Action - commentId: P:Terminal.Gui.StatusItem.Action - fullName: Terminal.Gui.StatusItem.Action - nameWithType: StatusItem.Action -- uid: Terminal.Gui.StatusItem.Action* - name: Action - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem_Action_ - commentId: Overload:Terminal.Gui.StatusItem.Action - isSpec: "True" - fullName: Terminal.Gui.StatusItem.Action - nameWithType: StatusItem.Action -- uid: Terminal.Gui.StatusItem.Shortcut - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem_Shortcut - commentId: P:Terminal.Gui.StatusItem.Shortcut - fullName: Terminal.Gui.StatusItem.Shortcut - nameWithType: StatusItem.Shortcut -- uid: Terminal.Gui.StatusItem.Shortcut* - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem_Shortcut_ - commentId: Overload:Terminal.Gui.StatusItem.Shortcut - isSpec: "True" - fullName: Terminal.Gui.StatusItem.Shortcut - nameWithType: StatusItem.Shortcut -- uid: Terminal.Gui.StatusItem.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem_Title - commentId: P:Terminal.Gui.StatusItem.Title - fullName: Terminal.Gui.StatusItem.Title - nameWithType: StatusItem.Title -- uid: Terminal.Gui.StatusItem.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.StatusItem.html#Terminal_Gui_StatusItem_Title_ - commentId: Overload:Terminal.Gui.StatusItem.Title - isSpec: "True" - fullName: Terminal.Gui.StatusItem.Title - nameWithType: StatusItem.Title -- uid: Terminal.Gui.TableView - name: TableView - href: api/Terminal.Gui/Terminal.Gui.TableView.html - commentId: T:Terminal.Gui.TableView - fullName: Terminal.Gui.TableView - nameWithType: TableView -- uid: Terminal.Gui.TableView.#ctor - name: TableView() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView__ctor - commentId: M:Terminal.Gui.TableView.#ctor - fullName: Terminal.Gui.TableView.TableView() - nameWithType: TableView.TableView() -- uid: Terminal.Gui.TableView.#ctor(System.Data.DataTable) - name: TableView(DataTable) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView__ctor_System_Data_DataTable_ - commentId: M:Terminal.Gui.TableView.#ctor(System.Data.DataTable) - fullName: Terminal.Gui.TableView.TableView(System.Data.DataTable) - nameWithType: TableView.TableView(DataTable) -- uid: Terminal.Gui.TableView.#ctor* - name: TableView - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView__ctor_ - commentId: Overload:Terminal.Gui.TableView.#ctor - isSpec: "True" - fullName: Terminal.Gui.TableView.TableView - nameWithType: TableView.TableView -- uid: Terminal.Gui.TableView.CellActivated - name: CellActivated - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_CellActivated - commentId: E:Terminal.Gui.TableView.CellActivated - fullName: Terminal.Gui.TableView.CellActivated - nameWithType: TableView.CellActivated -- uid: Terminal.Gui.TableView.CellActivatedEventArgs - name: TableView.CellActivatedEventArgs - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html - commentId: T:Terminal.Gui.TableView.CellActivatedEventArgs - fullName: Terminal.Gui.TableView.CellActivatedEventArgs - nameWithType: TableView.CellActivatedEventArgs -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.#ctor(System.Data.DataTable,System.Int32,System.Int32) - name: CellActivatedEventArgs(DataTable, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs__ctor_System_Data_DataTable_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TableView.CellActivatedEventArgs.#ctor(System.Data.DataTable,System.Int32,System.Int32) - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.CellActivatedEventArgs(System.Data.DataTable, System.Int32, System.Int32) - nameWithType: TableView.CellActivatedEventArgs.CellActivatedEventArgs(DataTable, Int32, Int32) -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.#ctor* - name: CellActivatedEventArgs - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs__ctor_ - commentId: Overload:Terminal.Gui.TableView.CellActivatedEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.CellActivatedEventArgs - nameWithType: TableView.CellActivatedEventArgs.CellActivatedEventArgs -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.Col - name: Col - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs_Col - commentId: P:Terminal.Gui.TableView.CellActivatedEventArgs.Col - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.Col - nameWithType: TableView.CellActivatedEventArgs.Col -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.Col* - name: Col - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs_Col_ - commentId: Overload:Terminal.Gui.TableView.CellActivatedEventArgs.Col - isSpec: "True" - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.Col - nameWithType: TableView.CellActivatedEventArgs.Col -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.Row - name: Row - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs_Row - commentId: P:Terminal.Gui.TableView.CellActivatedEventArgs.Row - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.Row - nameWithType: TableView.CellActivatedEventArgs.Row -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.Row* - name: Row - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs_Row_ - commentId: Overload:Terminal.Gui.TableView.CellActivatedEventArgs.Row - isSpec: "True" - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.Row - nameWithType: TableView.CellActivatedEventArgs.Row -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.Table - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs_Table - commentId: P:Terminal.Gui.TableView.CellActivatedEventArgs.Table - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.Table - nameWithType: TableView.CellActivatedEventArgs.Table -- uid: Terminal.Gui.TableView.CellActivatedEventArgs.Table* - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html#Terminal_Gui_TableView_CellActivatedEventArgs_Table_ - commentId: Overload:Terminal.Gui.TableView.CellActivatedEventArgs.Table - isSpec: "True" - fullName: Terminal.Gui.TableView.CellActivatedEventArgs.Table - nameWithType: TableView.CellActivatedEventArgs.Table -- uid: Terminal.Gui.TableView.CellActivationKey - name: CellActivationKey - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_CellActivationKey - commentId: P:Terminal.Gui.TableView.CellActivationKey - fullName: Terminal.Gui.TableView.CellActivationKey - nameWithType: TableView.CellActivationKey -- uid: Terminal.Gui.TableView.CellActivationKey* - name: CellActivationKey - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_CellActivationKey_ - commentId: Overload:Terminal.Gui.TableView.CellActivationKey - isSpec: "True" - fullName: Terminal.Gui.TableView.CellActivationKey - nameWithType: TableView.CellActivationKey -- uid: Terminal.Gui.TableView.CellColorGetterArgs - name: TableView.CellColorGetterArgs - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html - commentId: T:Terminal.Gui.TableView.CellColorGetterArgs - fullName: Terminal.Gui.TableView.CellColorGetterArgs - nameWithType: TableView.CellColorGetterArgs -- uid: Terminal.Gui.TableView.CellColorGetterArgs.CellValue - name: CellValue - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_CellValue - commentId: P:Terminal.Gui.TableView.CellColorGetterArgs.CellValue - fullName: Terminal.Gui.TableView.CellColorGetterArgs.CellValue - nameWithType: TableView.CellColorGetterArgs.CellValue -- uid: Terminal.Gui.TableView.CellColorGetterArgs.CellValue* - name: CellValue - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_CellValue_ - commentId: Overload:Terminal.Gui.TableView.CellColorGetterArgs.CellValue - isSpec: "True" - fullName: Terminal.Gui.TableView.CellColorGetterArgs.CellValue - nameWithType: TableView.CellColorGetterArgs.CellValue -- uid: Terminal.Gui.TableView.CellColorGetterArgs.ColIdex - name: ColIdex - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_ColIdex - commentId: P:Terminal.Gui.TableView.CellColorGetterArgs.ColIdex - fullName: Terminal.Gui.TableView.CellColorGetterArgs.ColIdex - nameWithType: TableView.CellColorGetterArgs.ColIdex -- uid: Terminal.Gui.TableView.CellColorGetterArgs.ColIdex* - name: ColIdex - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_ColIdex_ - commentId: Overload:Terminal.Gui.TableView.CellColorGetterArgs.ColIdex - isSpec: "True" - fullName: Terminal.Gui.TableView.CellColorGetterArgs.ColIdex - nameWithType: TableView.CellColorGetterArgs.ColIdex -- uid: Terminal.Gui.TableView.CellColorGetterArgs.Representation - name: Representation - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_Representation - commentId: P:Terminal.Gui.TableView.CellColorGetterArgs.Representation - fullName: Terminal.Gui.TableView.CellColorGetterArgs.Representation - nameWithType: TableView.CellColorGetterArgs.Representation -- uid: Terminal.Gui.TableView.CellColorGetterArgs.Representation* - name: Representation - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_Representation_ - commentId: Overload:Terminal.Gui.TableView.CellColorGetterArgs.Representation - isSpec: "True" - fullName: Terminal.Gui.TableView.CellColorGetterArgs.Representation - nameWithType: TableView.CellColorGetterArgs.Representation -- uid: Terminal.Gui.TableView.CellColorGetterArgs.RowIndex - name: RowIndex - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_RowIndex - commentId: P:Terminal.Gui.TableView.CellColorGetterArgs.RowIndex - fullName: Terminal.Gui.TableView.CellColorGetterArgs.RowIndex - nameWithType: TableView.CellColorGetterArgs.RowIndex -- uid: Terminal.Gui.TableView.CellColorGetterArgs.RowIndex* - name: RowIndex - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_RowIndex_ - commentId: Overload:Terminal.Gui.TableView.CellColorGetterArgs.RowIndex - isSpec: "True" - fullName: Terminal.Gui.TableView.CellColorGetterArgs.RowIndex - nameWithType: TableView.CellColorGetterArgs.RowIndex -- uid: Terminal.Gui.TableView.CellColorGetterArgs.RowScheme - name: RowScheme - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_RowScheme - commentId: P:Terminal.Gui.TableView.CellColorGetterArgs.RowScheme - fullName: Terminal.Gui.TableView.CellColorGetterArgs.RowScheme - nameWithType: TableView.CellColorGetterArgs.RowScheme -- uid: Terminal.Gui.TableView.CellColorGetterArgs.RowScheme* - name: RowScheme - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_RowScheme_ - commentId: Overload:Terminal.Gui.TableView.CellColorGetterArgs.RowScheme - isSpec: "True" - fullName: Terminal.Gui.TableView.CellColorGetterArgs.RowScheme - nameWithType: TableView.CellColorGetterArgs.RowScheme -- uid: Terminal.Gui.TableView.CellColorGetterArgs.Table - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_Table - commentId: P:Terminal.Gui.TableView.CellColorGetterArgs.Table - fullName: Terminal.Gui.TableView.CellColorGetterArgs.Table - nameWithType: TableView.CellColorGetterArgs.Table -- uid: Terminal.Gui.TableView.CellColorGetterArgs.Table* - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html#Terminal_Gui_TableView_CellColorGetterArgs_Table_ - commentId: Overload:Terminal.Gui.TableView.CellColorGetterArgs.Table - isSpec: "True" - fullName: Terminal.Gui.TableView.CellColorGetterArgs.Table - nameWithType: TableView.CellColorGetterArgs.Table -- uid: Terminal.Gui.TableView.CellColorGetterDelegate - name: TableView.CellColorGetterDelegate - href: api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html - commentId: T:Terminal.Gui.TableView.CellColorGetterDelegate - fullName: Terminal.Gui.TableView.CellColorGetterDelegate - nameWithType: TableView.CellColorGetterDelegate -- uid: Terminal.Gui.TableView.CellToScreen(System.Int32,System.Int32) - name: CellToScreen(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_CellToScreen_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TableView.CellToScreen(System.Int32,System.Int32) - fullName: Terminal.Gui.TableView.CellToScreen(System.Int32, System.Int32) - nameWithType: TableView.CellToScreen(Int32, Int32) -- uid: Terminal.Gui.TableView.CellToScreen* - name: CellToScreen - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_CellToScreen_ - commentId: Overload:Terminal.Gui.TableView.CellToScreen - isSpec: "True" - fullName: Terminal.Gui.TableView.CellToScreen - nameWithType: TableView.CellToScreen -- uid: Terminal.Gui.TableView.ChangeSelectionByOffset(System.Int32,System.Int32,System.Boolean) - name: ChangeSelectionByOffset(Int32, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionByOffset_System_Int32_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.TableView.ChangeSelectionByOffset(System.Int32,System.Int32,System.Boolean) - fullName: Terminal.Gui.TableView.ChangeSelectionByOffset(System.Int32, System.Int32, System.Boolean) - nameWithType: TableView.ChangeSelectionByOffset(Int32, Int32, Boolean) -- uid: Terminal.Gui.TableView.ChangeSelectionByOffset* - name: ChangeSelectionByOffset - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionByOffset_ - commentId: Overload:Terminal.Gui.TableView.ChangeSelectionByOffset - isSpec: "True" - fullName: Terminal.Gui.TableView.ChangeSelectionByOffset - nameWithType: TableView.ChangeSelectionByOffset -- uid: Terminal.Gui.TableView.ChangeSelectionToEndOfRow(System.Boolean) - name: ChangeSelectionToEndOfRow(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToEndOfRow_System_Boolean_ - commentId: M:Terminal.Gui.TableView.ChangeSelectionToEndOfRow(System.Boolean) - fullName: Terminal.Gui.TableView.ChangeSelectionToEndOfRow(System.Boolean) - nameWithType: TableView.ChangeSelectionToEndOfRow(Boolean) -- uid: Terminal.Gui.TableView.ChangeSelectionToEndOfRow* - name: ChangeSelectionToEndOfRow - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToEndOfRow_ - commentId: Overload:Terminal.Gui.TableView.ChangeSelectionToEndOfRow - isSpec: "True" - fullName: Terminal.Gui.TableView.ChangeSelectionToEndOfRow - nameWithType: TableView.ChangeSelectionToEndOfRow -- uid: Terminal.Gui.TableView.ChangeSelectionToEndOfTable(System.Boolean) - name: ChangeSelectionToEndOfTable(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToEndOfTable_System_Boolean_ - commentId: M:Terminal.Gui.TableView.ChangeSelectionToEndOfTable(System.Boolean) - fullName: Terminal.Gui.TableView.ChangeSelectionToEndOfTable(System.Boolean) - nameWithType: TableView.ChangeSelectionToEndOfTable(Boolean) -- uid: Terminal.Gui.TableView.ChangeSelectionToEndOfTable* - name: ChangeSelectionToEndOfTable - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToEndOfTable_ - commentId: Overload:Terminal.Gui.TableView.ChangeSelectionToEndOfTable - isSpec: "True" - fullName: Terminal.Gui.TableView.ChangeSelectionToEndOfTable - nameWithType: TableView.ChangeSelectionToEndOfTable -- uid: Terminal.Gui.TableView.ChangeSelectionToStartOfRow(System.Boolean) - name: ChangeSelectionToStartOfRow(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToStartOfRow_System_Boolean_ - commentId: M:Terminal.Gui.TableView.ChangeSelectionToStartOfRow(System.Boolean) - fullName: Terminal.Gui.TableView.ChangeSelectionToStartOfRow(System.Boolean) - nameWithType: TableView.ChangeSelectionToStartOfRow(Boolean) -- uid: Terminal.Gui.TableView.ChangeSelectionToStartOfRow* - name: ChangeSelectionToStartOfRow - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToStartOfRow_ - commentId: Overload:Terminal.Gui.TableView.ChangeSelectionToStartOfRow - isSpec: "True" - fullName: Terminal.Gui.TableView.ChangeSelectionToStartOfRow - nameWithType: TableView.ChangeSelectionToStartOfRow -- uid: Terminal.Gui.TableView.ChangeSelectionToStartOfTable(System.Boolean) - name: ChangeSelectionToStartOfTable(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToStartOfTable_System_Boolean_ - commentId: M:Terminal.Gui.TableView.ChangeSelectionToStartOfTable(System.Boolean) - fullName: Terminal.Gui.TableView.ChangeSelectionToStartOfTable(System.Boolean) - nameWithType: TableView.ChangeSelectionToStartOfTable(Boolean) -- uid: Terminal.Gui.TableView.ChangeSelectionToStartOfTable* - name: ChangeSelectionToStartOfTable - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ChangeSelectionToStartOfTable_ - commentId: Overload:Terminal.Gui.TableView.ChangeSelectionToStartOfTable - isSpec: "True" - fullName: Terminal.Gui.TableView.ChangeSelectionToStartOfTable - nameWithType: TableView.ChangeSelectionToStartOfTable -- uid: Terminal.Gui.TableView.ColumnOffset - name: ColumnOffset - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ColumnOffset - commentId: P:Terminal.Gui.TableView.ColumnOffset - fullName: Terminal.Gui.TableView.ColumnOffset - nameWithType: TableView.ColumnOffset -- uid: Terminal.Gui.TableView.ColumnOffset* - name: ColumnOffset - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ColumnOffset_ - commentId: Overload:Terminal.Gui.TableView.ColumnOffset - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnOffset - nameWithType: TableView.ColumnOffset -- uid: Terminal.Gui.TableView.ColumnStyle - name: TableView.ColumnStyle - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html - commentId: T:Terminal.Gui.TableView.ColumnStyle - fullName: Terminal.Gui.TableView.ColumnStyle - nameWithType: TableView.ColumnStyle -- uid: Terminal.Gui.TableView.ColumnStyle.Alignment - name: Alignment - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_Alignment - commentId: P:Terminal.Gui.TableView.ColumnStyle.Alignment - fullName: Terminal.Gui.TableView.ColumnStyle.Alignment - nameWithType: TableView.ColumnStyle.Alignment -- uid: Terminal.Gui.TableView.ColumnStyle.Alignment* - name: Alignment - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_Alignment_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.Alignment - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.Alignment - nameWithType: TableView.ColumnStyle.Alignment -- uid: Terminal.Gui.TableView.ColumnStyle.AlignmentGetter - name: AlignmentGetter - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_AlignmentGetter - commentId: F:Terminal.Gui.TableView.ColumnStyle.AlignmentGetter - fullName: Terminal.Gui.TableView.ColumnStyle.AlignmentGetter - nameWithType: TableView.ColumnStyle.AlignmentGetter -- uid: Terminal.Gui.TableView.ColumnStyle.ColorGetter - name: ColorGetter - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_ColorGetter - commentId: F:Terminal.Gui.TableView.ColumnStyle.ColorGetter - fullName: Terminal.Gui.TableView.ColumnStyle.ColorGetter - nameWithType: TableView.ColumnStyle.ColorGetter -- uid: Terminal.Gui.TableView.ColumnStyle.Format - name: Format - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_Format - commentId: P:Terminal.Gui.TableView.ColumnStyle.Format - fullName: Terminal.Gui.TableView.ColumnStyle.Format - nameWithType: TableView.ColumnStyle.Format -- uid: Terminal.Gui.TableView.ColumnStyle.Format* - name: Format - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_Format_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.Format - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.Format - nameWithType: TableView.ColumnStyle.Format -- uid: Terminal.Gui.TableView.ColumnStyle.GetAlignment(System.Object) - name: GetAlignment(Object) - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_GetAlignment_System_Object_ - commentId: M:Terminal.Gui.TableView.ColumnStyle.GetAlignment(System.Object) - fullName: Terminal.Gui.TableView.ColumnStyle.GetAlignment(System.Object) - nameWithType: TableView.ColumnStyle.GetAlignment(Object) -- uid: Terminal.Gui.TableView.ColumnStyle.GetAlignment* - name: GetAlignment - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_GetAlignment_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.GetAlignment - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.GetAlignment - nameWithType: TableView.ColumnStyle.GetAlignment -- uid: Terminal.Gui.TableView.ColumnStyle.GetRepresentation(System.Object) - name: GetRepresentation(Object) - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_GetRepresentation_System_Object_ - commentId: M:Terminal.Gui.TableView.ColumnStyle.GetRepresentation(System.Object) - fullName: Terminal.Gui.TableView.ColumnStyle.GetRepresentation(System.Object) - nameWithType: TableView.ColumnStyle.GetRepresentation(Object) -- uid: Terminal.Gui.TableView.ColumnStyle.GetRepresentation* - name: GetRepresentation - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_GetRepresentation_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.GetRepresentation - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.GetRepresentation - nameWithType: TableView.ColumnStyle.GetRepresentation -- uid: Terminal.Gui.TableView.ColumnStyle.MaxWidth - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_MaxWidth - commentId: P:Terminal.Gui.TableView.ColumnStyle.MaxWidth - fullName: Terminal.Gui.TableView.ColumnStyle.MaxWidth - nameWithType: TableView.ColumnStyle.MaxWidth -- uid: Terminal.Gui.TableView.ColumnStyle.MaxWidth* - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_MaxWidth_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.MaxWidth - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.MaxWidth - nameWithType: TableView.ColumnStyle.MaxWidth -- uid: Terminal.Gui.TableView.ColumnStyle.MinAcceptableWidth - name: MinAcceptableWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_MinAcceptableWidth - commentId: P:Terminal.Gui.TableView.ColumnStyle.MinAcceptableWidth - fullName: Terminal.Gui.TableView.ColumnStyle.MinAcceptableWidth - nameWithType: TableView.ColumnStyle.MinAcceptableWidth -- uid: Terminal.Gui.TableView.ColumnStyle.MinAcceptableWidth* - name: MinAcceptableWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_MinAcceptableWidth_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.MinAcceptableWidth - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.MinAcceptableWidth - nameWithType: TableView.ColumnStyle.MinAcceptableWidth -- uid: Terminal.Gui.TableView.ColumnStyle.MinWidth - name: MinWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_MinWidth - commentId: P:Terminal.Gui.TableView.ColumnStyle.MinWidth - fullName: Terminal.Gui.TableView.ColumnStyle.MinWidth - nameWithType: TableView.ColumnStyle.MinWidth -- uid: Terminal.Gui.TableView.ColumnStyle.MinWidth* - name: MinWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_MinWidth_ - commentId: Overload:Terminal.Gui.TableView.ColumnStyle.MinWidth - isSpec: "True" - fullName: Terminal.Gui.TableView.ColumnStyle.MinWidth - nameWithType: TableView.ColumnStyle.MinWidth -- uid: Terminal.Gui.TableView.ColumnStyle.RepresentationGetter - name: RepresentationGetter - href: api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html#Terminal_Gui_TableView_ColumnStyle_RepresentationGetter - commentId: F:Terminal.Gui.TableView.ColumnStyle.RepresentationGetter - fullName: Terminal.Gui.TableView.ColumnStyle.RepresentationGetter - nameWithType: TableView.ColumnStyle.RepresentationGetter -- uid: Terminal.Gui.TableView.DefaultMaxCellWidth - name: DefaultMaxCellWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_DefaultMaxCellWidth - commentId: F:Terminal.Gui.TableView.DefaultMaxCellWidth - fullName: Terminal.Gui.TableView.DefaultMaxCellWidth - nameWithType: TableView.DefaultMaxCellWidth -- uid: Terminal.Gui.TableView.DefaultMinAcceptableWidth - name: DefaultMinAcceptableWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_DefaultMinAcceptableWidth - commentId: F:Terminal.Gui.TableView.DefaultMinAcceptableWidth - fullName: Terminal.Gui.TableView.DefaultMinAcceptableWidth - nameWithType: TableView.DefaultMinAcceptableWidth -- uid: Terminal.Gui.TableView.EnsureSelectedCellIsVisible - name: EnsureSelectedCellIsVisible() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_EnsureSelectedCellIsVisible - commentId: M:Terminal.Gui.TableView.EnsureSelectedCellIsVisible - fullName: Terminal.Gui.TableView.EnsureSelectedCellIsVisible() - nameWithType: TableView.EnsureSelectedCellIsVisible() -- uid: Terminal.Gui.TableView.EnsureSelectedCellIsVisible* - name: EnsureSelectedCellIsVisible - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_EnsureSelectedCellIsVisible_ - commentId: Overload:Terminal.Gui.TableView.EnsureSelectedCellIsVisible - isSpec: "True" - fullName: Terminal.Gui.TableView.EnsureSelectedCellIsVisible - nameWithType: TableView.EnsureSelectedCellIsVisible -- uid: Terminal.Gui.TableView.EnsureValidScrollOffsets - name: EnsureValidScrollOffsets() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_EnsureValidScrollOffsets - commentId: M:Terminal.Gui.TableView.EnsureValidScrollOffsets - fullName: Terminal.Gui.TableView.EnsureValidScrollOffsets() - nameWithType: TableView.EnsureValidScrollOffsets() -- uid: Terminal.Gui.TableView.EnsureValidScrollOffsets* - name: EnsureValidScrollOffsets - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_EnsureValidScrollOffsets_ - commentId: Overload:Terminal.Gui.TableView.EnsureValidScrollOffsets - isSpec: "True" - fullName: Terminal.Gui.TableView.EnsureValidScrollOffsets - nameWithType: TableView.EnsureValidScrollOffsets -- uid: Terminal.Gui.TableView.EnsureValidSelection - name: EnsureValidSelection() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_EnsureValidSelection - commentId: M:Terminal.Gui.TableView.EnsureValidSelection - fullName: Terminal.Gui.TableView.EnsureValidSelection() - nameWithType: TableView.EnsureValidSelection() -- uid: Terminal.Gui.TableView.EnsureValidSelection* - name: EnsureValidSelection - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_EnsureValidSelection_ - commentId: Overload:Terminal.Gui.TableView.EnsureValidSelection - isSpec: "True" - fullName: Terminal.Gui.TableView.EnsureValidSelection - nameWithType: TableView.EnsureValidSelection -- uid: Terminal.Gui.TableView.FullRowSelect - name: FullRowSelect - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_FullRowSelect - commentId: P:Terminal.Gui.TableView.FullRowSelect - fullName: Terminal.Gui.TableView.FullRowSelect - nameWithType: TableView.FullRowSelect -- uid: Terminal.Gui.TableView.FullRowSelect* - name: FullRowSelect - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_FullRowSelect_ - commentId: Overload:Terminal.Gui.TableView.FullRowSelect - isSpec: "True" - fullName: Terminal.Gui.TableView.FullRowSelect - nameWithType: TableView.FullRowSelect -- uid: Terminal.Gui.TableView.GetAllSelectedCells - name: GetAllSelectedCells() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_GetAllSelectedCells - commentId: M:Terminal.Gui.TableView.GetAllSelectedCells - fullName: Terminal.Gui.TableView.GetAllSelectedCells() - nameWithType: TableView.GetAllSelectedCells() -- uid: Terminal.Gui.TableView.GetAllSelectedCells* - name: GetAllSelectedCells - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_GetAllSelectedCells_ - commentId: Overload:Terminal.Gui.TableView.GetAllSelectedCells - isSpec: "True" - fullName: Terminal.Gui.TableView.GetAllSelectedCells - nameWithType: TableView.GetAllSelectedCells -- uid: Terminal.Gui.TableView.IsSelected(System.Int32,System.Int32) - name: IsSelected(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_IsSelected_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TableView.IsSelected(System.Int32,System.Int32) - fullName: Terminal.Gui.TableView.IsSelected(System.Int32, System.Int32) - nameWithType: TableView.IsSelected(Int32, Int32) -- uid: Terminal.Gui.TableView.IsSelected* - name: IsSelected - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_IsSelected_ - commentId: Overload:Terminal.Gui.TableView.IsSelected - isSpec: "True" - fullName: Terminal.Gui.TableView.IsSelected - nameWithType: TableView.IsSelected -- uid: Terminal.Gui.TableView.MaxCellWidth - name: MaxCellWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MaxCellWidth - commentId: P:Terminal.Gui.TableView.MaxCellWidth - fullName: Terminal.Gui.TableView.MaxCellWidth - nameWithType: TableView.MaxCellWidth -- uid: Terminal.Gui.TableView.MaxCellWidth* - name: MaxCellWidth - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MaxCellWidth_ - commentId: Overload:Terminal.Gui.TableView.MaxCellWidth - isSpec: "True" - fullName: Terminal.Gui.TableView.MaxCellWidth - nameWithType: TableView.MaxCellWidth -- uid: Terminal.Gui.TableView.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.TableView.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.TableView.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: TableView.MouseEvent(MouseEvent) -- uid: Terminal.Gui.TableView.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MouseEvent_ - commentId: Overload:Terminal.Gui.TableView.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.TableView.MouseEvent - nameWithType: TableView.MouseEvent -- uid: Terminal.Gui.TableView.MultiSelect - name: MultiSelect - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MultiSelect - commentId: P:Terminal.Gui.TableView.MultiSelect - fullName: Terminal.Gui.TableView.MultiSelect - nameWithType: TableView.MultiSelect -- uid: Terminal.Gui.TableView.MultiSelect* - name: MultiSelect - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MultiSelect_ - commentId: Overload:Terminal.Gui.TableView.MultiSelect - isSpec: "True" - fullName: Terminal.Gui.TableView.MultiSelect - nameWithType: TableView.MultiSelect -- uid: Terminal.Gui.TableView.MultiSelectedRegions - name: MultiSelectedRegions - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MultiSelectedRegions - commentId: P:Terminal.Gui.TableView.MultiSelectedRegions - fullName: Terminal.Gui.TableView.MultiSelectedRegions - nameWithType: TableView.MultiSelectedRegions -- uid: Terminal.Gui.TableView.MultiSelectedRegions* - name: MultiSelectedRegions - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_MultiSelectedRegions_ - commentId: Overload:Terminal.Gui.TableView.MultiSelectedRegions - isSpec: "True" - fullName: Terminal.Gui.TableView.MultiSelectedRegions - nameWithType: TableView.MultiSelectedRegions -- uid: Terminal.Gui.TableView.NullSymbol - name: NullSymbol - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_NullSymbol - commentId: P:Terminal.Gui.TableView.NullSymbol - fullName: Terminal.Gui.TableView.NullSymbol - nameWithType: TableView.NullSymbol -- uid: Terminal.Gui.TableView.NullSymbol* - name: NullSymbol - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_NullSymbol_ - commentId: Overload:Terminal.Gui.TableView.NullSymbol - isSpec: "True" - fullName: Terminal.Gui.TableView.NullSymbol - nameWithType: TableView.NullSymbol -- uid: Terminal.Gui.TableView.OnCellActivated(Terminal.Gui.TableView.CellActivatedEventArgs) - name: OnCellActivated(TableView.CellActivatedEventArgs) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_OnCellActivated_Terminal_Gui_TableView_CellActivatedEventArgs_ - commentId: M:Terminal.Gui.TableView.OnCellActivated(Terminal.Gui.TableView.CellActivatedEventArgs) - fullName: Terminal.Gui.TableView.OnCellActivated(Terminal.Gui.TableView.CellActivatedEventArgs) - nameWithType: TableView.OnCellActivated(TableView.CellActivatedEventArgs) -- uid: Terminal.Gui.TableView.OnCellActivated* - name: OnCellActivated - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_OnCellActivated_ - commentId: Overload:Terminal.Gui.TableView.OnCellActivated - isSpec: "True" - fullName: Terminal.Gui.TableView.OnCellActivated - nameWithType: TableView.OnCellActivated -- uid: Terminal.Gui.TableView.OnSelectedCellChanged(Terminal.Gui.TableView.SelectedCellChangedEventArgs) - name: OnSelectedCellChanged(TableView.SelectedCellChangedEventArgs) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_OnSelectedCellChanged_Terminal_Gui_TableView_SelectedCellChangedEventArgs_ - commentId: M:Terminal.Gui.TableView.OnSelectedCellChanged(Terminal.Gui.TableView.SelectedCellChangedEventArgs) - fullName: Terminal.Gui.TableView.OnSelectedCellChanged(Terminal.Gui.TableView.SelectedCellChangedEventArgs) - nameWithType: TableView.OnSelectedCellChanged(TableView.SelectedCellChangedEventArgs) -- uid: Terminal.Gui.TableView.OnSelectedCellChanged* - name: OnSelectedCellChanged - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_OnSelectedCellChanged_ - commentId: Overload:Terminal.Gui.TableView.OnSelectedCellChanged - isSpec: "True" - fullName: Terminal.Gui.TableView.OnSelectedCellChanged - nameWithType: TableView.OnSelectedCellChanged -- uid: Terminal.Gui.TableView.PageDown(System.Boolean) - name: PageDown(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_PageDown_System_Boolean_ - commentId: M:Terminal.Gui.TableView.PageDown(System.Boolean) - fullName: Terminal.Gui.TableView.PageDown(System.Boolean) - nameWithType: TableView.PageDown(Boolean) -- uid: Terminal.Gui.TableView.PageDown* - name: PageDown - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_PageDown_ - commentId: Overload:Terminal.Gui.TableView.PageDown - isSpec: "True" - fullName: Terminal.Gui.TableView.PageDown - nameWithType: TableView.PageDown -- uid: Terminal.Gui.TableView.PageUp(System.Boolean) - name: PageUp(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_PageUp_System_Boolean_ - commentId: M:Terminal.Gui.TableView.PageUp(System.Boolean) - fullName: Terminal.Gui.TableView.PageUp(System.Boolean) - nameWithType: TableView.PageUp(Boolean) -- uid: Terminal.Gui.TableView.PageUp* - name: PageUp - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_PageUp_ - commentId: Overload:Terminal.Gui.TableView.PageUp - isSpec: "True" - fullName: Terminal.Gui.TableView.PageUp - nameWithType: TableView.PageUp -- uid: Terminal.Gui.TableView.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_PositionCursor - commentId: M:Terminal.Gui.TableView.PositionCursor - fullName: Terminal.Gui.TableView.PositionCursor() - nameWithType: TableView.PositionCursor() -- uid: Terminal.Gui.TableView.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_PositionCursor_ - commentId: Overload:Terminal.Gui.TableView.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.TableView.PositionCursor - nameWithType: TableView.PositionCursor -- uid: Terminal.Gui.TableView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TableView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TableView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TableView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.TableView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ProcessKey_ - commentId: Overload:Terminal.Gui.TableView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TableView.ProcessKey - nameWithType: TableView.ProcessKey -- uid: Terminal.Gui.TableView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TableView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.TableView.Redraw(Terminal.Gui.Rect) - nameWithType: TableView.Redraw(Rect) -- uid: Terminal.Gui.TableView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Redraw_ - commentId: Overload:Terminal.Gui.TableView.Redraw - isSpec: "True" - fullName: Terminal.Gui.TableView.Redraw - nameWithType: TableView.Redraw -- uid: Terminal.Gui.TableView.RenderCell(Terminal.Gui.Attribute,System.String,System.Boolean) - name: RenderCell(Attribute, String, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_RenderCell_Terminal_Gui_Attribute_System_String_System_Boolean_ - commentId: M:Terminal.Gui.TableView.RenderCell(Terminal.Gui.Attribute,System.String,System.Boolean) - fullName: Terminal.Gui.TableView.RenderCell(Terminal.Gui.Attribute, System.String, System.Boolean) - nameWithType: TableView.RenderCell(Attribute, String, Boolean) -- uid: Terminal.Gui.TableView.RenderCell* - name: RenderCell - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_RenderCell_ - commentId: Overload:Terminal.Gui.TableView.RenderCell - isSpec: "True" - fullName: Terminal.Gui.TableView.RenderCell - nameWithType: TableView.RenderCell -- uid: Terminal.Gui.TableView.RowColorGetterArgs - name: TableView.RowColorGetterArgs - href: api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html - commentId: T:Terminal.Gui.TableView.RowColorGetterArgs - fullName: Terminal.Gui.TableView.RowColorGetterArgs - nameWithType: TableView.RowColorGetterArgs -- uid: Terminal.Gui.TableView.RowColorGetterArgs.RowIndex - name: RowIndex - href: api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html#Terminal_Gui_TableView_RowColorGetterArgs_RowIndex - commentId: P:Terminal.Gui.TableView.RowColorGetterArgs.RowIndex - fullName: Terminal.Gui.TableView.RowColorGetterArgs.RowIndex - nameWithType: TableView.RowColorGetterArgs.RowIndex -- uid: Terminal.Gui.TableView.RowColorGetterArgs.RowIndex* - name: RowIndex - href: api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html#Terminal_Gui_TableView_RowColorGetterArgs_RowIndex_ - commentId: Overload:Terminal.Gui.TableView.RowColorGetterArgs.RowIndex - isSpec: "True" - fullName: Terminal.Gui.TableView.RowColorGetterArgs.RowIndex - nameWithType: TableView.RowColorGetterArgs.RowIndex -- uid: Terminal.Gui.TableView.RowColorGetterArgs.Table - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html#Terminal_Gui_TableView_RowColorGetterArgs_Table - commentId: P:Terminal.Gui.TableView.RowColorGetterArgs.Table - fullName: Terminal.Gui.TableView.RowColorGetterArgs.Table - nameWithType: TableView.RowColorGetterArgs.Table -- uid: Terminal.Gui.TableView.RowColorGetterArgs.Table* - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html#Terminal_Gui_TableView_RowColorGetterArgs_Table_ - commentId: Overload:Terminal.Gui.TableView.RowColorGetterArgs.Table - isSpec: "True" - fullName: Terminal.Gui.TableView.RowColorGetterArgs.Table - nameWithType: TableView.RowColorGetterArgs.Table -- uid: Terminal.Gui.TableView.RowColorGetterDelegate - name: TableView.RowColorGetterDelegate - href: api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html - commentId: T:Terminal.Gui.TableView.RowColorGetterDelegate - fullName: Terminal.Gui.TableView.RowColorGetterDelegate - nameWithType: TableView.RowColorGetterDelegate -- uid: Terminal.Gui.TableView.RowOffset - name: RowOffset - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_RowOffset - commentId: P:Terminal.Gui.TableView.RowOffset - fullName: Terminal.Gui.TableView.RowOffset - nameWithType: TableView.RowOffset -- uid: Terminal.Gui.TableView.RowOffset* - name: RowOffset - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_RowOffset_ - commentId: Overload:Terminal.Gui.TableView.RowOffset - isSpec: "True" - fullName: Terminal.Gui.TableView.RowOffset - nameWithType: TableView.RowOffset -- uid: Terminal.Gui.TableView.ScreenToCell(System.Int32,System.Int32) - name: ScreenToCell(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ScreenToCell_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TableView.ScreenToCell(System.Int32,System.Int32) - fullName: Terminal.Gui.TableView.ScreenToCell(System.Int32, System.Int32) - nameWithType: TableView.ScreenToCell(Int32, Int32) -- uid: Terminal.Gui.TableView.ScreenToCell* - name: ScreenToCell - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_ScreenToCell_ - commentId: Overload:Terminal.Gui.TableView.ScreenToCell - isSpec: "True" - fullName: Terminal.Gui.TableView.ScreenToCell - nameWithType: TableView.ScreenToCell -- uid: Terminal.Gui.TableView.SelectAll - name: SelectAll() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectAll - commentId: M:Terminal.Gui.TableView.SelectAll - fullName: Terminal.Gui.TableView.SelectAll() - nameWithType: TableView.SelectAll() -- uid: Terminal.Gui.TableView.SelectAll* - name: SelectAll - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectAll_ - commentId: Overload:Terminal.Gui.TableView.SelectAll - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectAll - nameWithType: TableView.SelectAll -- uid: Terminal.Gui.TableView.SelectedCellChanged - name: SelectedCellChanged - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectedCellChanged - commentId: E:Terminal.Gui.TableView.SelectedCellChanged - fullName: Terminal.Gui.TableView.SelectedCellChanged - nameWithType: TableView.SelectedCellChanged -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs - name: TableView.SelectedCellChangedEventArgs - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html - commentId: T:Terminal.Gui.TableView.SelectedCellChangedEventArgs - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs - nameWithType: TableView.SelectedCellChangedEventArgs -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.#ctor(System.Data.DataTable,System.Int32,System.Int32,System.Int32,System.Int32) - name: SelectedCellChangedEventArgs(DataTable, Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs__ctor_System_Data_DataTable_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TableView.SelectedCellChangedEventArgs.#ctor(System.Data.DataTable,System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.SelectedCellChangedEventArgs(System.Data.DataTable, System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: TableView.SelectedCellChangedEventArgs.SelectedCellChangedEventArgs(DataTable, Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.#ctor* - name: SelectedCellChangedEventArgs - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs__ctor_ - commentId: Overload:Terminal.Gui.TableView.SelectedCellChangedEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.SelectedCellChangedEventArgs - nameWithType: TableView.SelectedCellChangedEventArgs.SelectedCellChangedEventArgs -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewCol - name: NewCol - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_NewCol - commentId: P:Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewCol - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewCol - nameWithType: TableView.SelectedCellChangedEventArgs.NewCol -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewCol* - name: NewCol - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_NewCol_ - commentId: Overload:Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewCol - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewCol - nameWithType: TableView.SelectedCellChangedEventArgs.NewCol -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewRow - name: NewRow - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_NewRow - commentId: P:Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewRow - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewRow - nameWithType: TableView.SelectedCellChangedEventArgs.NewRow -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewRow* - name: NewRow - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_NewRow_ - commentId: Overload:Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewRow - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.NewRow - nameWithType: TableView.SelectedCellChangedEventArgs.NewRow -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldCol - name: OldCol - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_OldCol - commentId: P:Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldCol - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldCol - nameWithType: TableView.SelectedCellChangedEventArgs.OldCol -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldCol* - name: OldCol - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_OldCol_ - commentId: Overload:Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldCol - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldCol - nameWithType: TableView.SelectedCellChangedEventArgs.OldCol -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldRow - name: OldRow - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_OldRow - commentId: P:Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldRow - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldRow - nameWithType: TableView.SelectedCellChangedEventArgs.OldRow -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldRow* - name: OldRow - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_OldRow_ - commentId: Overload:Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldRow - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.OldRow - nameWithType: TableView.SelectedCellChangedEventArgs.OldRow -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.Table - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_Table - commentId: P:Terminal.Gui.TableView.SelectedCellChangedEventArgs.Table - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.Table - nameWithType: TableView.SelectedCellChangedEventArgs.Table -- uid: Terminal.Gui.TableView.SelectedCellChangedEventArgs.Table* - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html#Terminal_Gui_TableView_SelectedCellChangedEventArgs_Table_ - commentId: Overload:Terminal.Gui.TableView.SelectedCellChangedEventArgs.Table - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedCellChangedEventArgs.Table - nameWithType: TableView.SelectedCellChangedEventArgs.Table -- uid: Terminal.Gui.TableView.SelectedColumn - name: SelectedColumn - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectedColumn - commentId: P:Terminal.Gui.TableView.SelectedColumn - fullName: Terminal.Gui.TableView.SelectedColumn - nameWithType: TableView.SelectedColumn -- uid: Terminal.Gui.TableView.SelectedColumn* - name: SelectedColumn - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectedColumn_ - commentId: Overload:Terminal.Gui.TableView.SelectedColumn - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedColumn - nameWithType: TableView.SelectedColumn -- uid: Terminal.Gui.TableView.SelectedRow - name: SelectedRow - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectedRow - commentId: P:Terminal.Gui.TableView.SelectedRow - fullName: Terminal.Gui.TableView.SelectedRow - nameWithType: TableView.SelectedRow -- uid: Terminal.Gui.TableView.SelectedRow* - name: SelectedRow - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SelectedRow_ - commentId: Overload:Terminal.Gui.TableView.SelectedRow - isSpec: "True" - fullName: Terminal.Gui.TableView.SelectedRow - nameWithType: TableView.SelectedRow -- uid: Terminal.Gui.TableView.SeparatorSymbol - name: SeparatorSymbol - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SeparatorSymbol - commentId: P:Terminal.Gui.TableView.SeparatorSymbol - fullName: Terminal.Gui.TableView.SeparatorSymbol - nameWithType: TableView.SeparatorSymbol -- uid: Terminal.Gui.TableView.SeparatorSymbol* - name: SeparatorSymbol - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SeparatorSymbol_ - commentId: Overload:Terminal.Gui.TableView.SeparatorSymbol - isSpec: "True" - fullName: Terminal.Gui.TableView.SeparatorSymbol - nameWithType: TableView.SeparatorSymbol -- uid: Terminal.Gui.TableView.SetSelection(System.Int32,System.Int32,System.Boolean) - name: SetSelection(Int32, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SetSelection_System_Int32_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.TableView.SetSelection(System.Int32,System.Int32,System.Boolean) - fullName: Terminal.Gui.TableView.SetSelection(System.Int32, System.Int32, System.Boolean) - nameWithType: TableView.SetSelection(Int32, Int32, Boolean) -- uid: Terminal.Gui.TableView.SetSelection* - name: SetSelection - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_SetSelection_ - commentId: Overload:Terminal.Gui.TableView.SetSelection - isSpec: "True" - fullName: Terminal.Gui.TableView.SetSelection - nameWithType: TableView.SetSelection -- uid: Terminal.Gui.TableView.Style - name: Style - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Style - commentId: P:Terminal.Gui.TableView.Style - fullName: Terminal.Gui.TableView.Style - nameWithType: TableView.Style -- uid: Terminal.Gui.TableView.Style* - name: Style - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Style_ - commentId: Overload:Terminal.Gui.TableView.Style - isSpec: "True" - fullName: Terminal.Gui.TableView.Style - nameWithType: TableView.Style -- uid: Terminal.Gui.TableView.Table - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Table - commentId: P:Terminal.Gui.TableView.Table - fullName: Terminal.Gui.TableView.Table - nameWithType: TableView.Table -- uid: Terminal.Gui.TableView.Table* - name: Table - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Table_ - commentId: Overload:Terminal.Gui.TableView.Table - isSpec: "True" - fullName: Terminal.Gui.TableView.Table - nameWithType: TableView.Table -- uid: Terminal.Gui.TableView.TableSelection - name: TableView.TableSelection - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html - commentId: T:Terminal.Gui.TableView.TableSelection - fullName: Terminal.Gui.TableView.TableSelection - nameWithType: TableView.TableSelection -- uid: Terminal.Gui.TableView.TableSelection.#ctor(Terminal.Gui.Point,Terminal.Gui.Rect) - name: TableSelection(Point, Rect) - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html#Terminal_Gui_TableView_TableSelection__ctor_Terminal_Gui_Point_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TableView.TableSelection.#ctor(Terminal.Gui.Point,Terminal.Gui.Rect) - fullName: Terminal.Gui.TableView.TableSelection.TableSelection(Terminal.Gui.Point, Terminal.Gui.Rect) - nameWithType: TableView.TableSelection.TableSelection(Point, Rect) -- uid: Terminal.Gui.TableView.TableSelection.#ctor* - name: TableSelection - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html#Terminal_Gui_TableView_TableSelection__ctor_ - commentId: Overload:Terminal.Gui.TableView.TableSelection.#ctor - isSpec: "True" - fullName: Terminal.Gui.TableView.TableSelection.TableSelection - nameWithType: TableView.TableSelection.TableSelection -- uid: Terminal.Gui.TableView.TableSelection.Origin - name: Origin - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html#Terminal_Gui_TableView_TableSelection_Origin - commentId: P:Terminal.Gui.TableView.TableSelection.Origin - fullName: Terminal.Gui.TableView.TableSelection.Origin - nameWithType: TableView.TableSelection.Origin -- uid: Terminal.Gui.TableView.TableSelection.Origin* - name: Origin - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html#Terminal_Gui_TableView_TableSelection_Origin_ - commentId: Overload:Terminal.Gui.TableView.TableSelection.Origin - isSpec: "True" - fullName: Terminal.Gui.TableView.TableSelection.Origin - nameWithType: TableView.TableSelection.Origin -- uid: Terminal.Gui.TableView.TableSelection.Rect - name: Rect - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html#Terminal_Gui_TableView_TableSelection_Rect - commentId: P:Terminal.Gui.TableView.TableSelection.Rect - fullName: Terminal.Gui.TableView.TableSelection.Rect - nameWithType: TableView.TableSelection.Rect -- uid: Terminal.Gui.TableView.TableSelection.Rect* - name: Rect - href: api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html#Terminal_Gui_TableView_TableSelection_Rect_ - commentId: Overload:Terminal.Gui.TableView.TableSelection.Rect - isSpec: "True" - fullName: Terminal.Gui.TableView.TableSelection.Rect - nameWithType: TableView.TableSelection.Rect -- uid: Terminal.Gui.TableView.TableStyle - name: TableView.TableStyle - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html - commentId: T:Terminal.Gui.TableView.TableStyle - fullName: Terminal.Gui.TableView.TableStyle - nameWithType: TableView.TableStyle -- uid: Terminal.Gui.TableView.TableStyle.AlwaysShowHeaders - name: AlwaysShowHeaders - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_AlwaysShowHeaders - commentId: P:Terminal.Gui.TableView.TableStyle.AlwaysShowHeaders - fullName: Terminal.Gui.TableView.TableStyle.AlwaysShowHeaders - nameWithType: TableView.TableStyle.AlwaysShowHeaders -- uid: Terminal.Gui.TableView.TableStyle.AlwaysShowHeaders* - name: AlwaysShowHeaders - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_AlwaysShowHeaders_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.AlwaysShowHeaders - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.AlwaysShowHeaders - nameWithType: TableView.TableStyle.AlwaysShowHeaders -- uid: Terminal.Gui.TableView.TableStyle.ColumnStyles - name: ColumnStyles - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ColumnStyles - commentId: P:Terminal.Gui.TableView.TableStyle.ColumnStyles - fullName: Terminal.Gui.TableView.TableStyle.ColumnStyles - nameWithType: TableView.TableStyle.ColumnStyles -- uid: Terminal.Gui.TableView.TableStyle.ColumnStyles* - name: ColumnStyles - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ColumnStyles_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ColumnStyles - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ColumnStyles - nameWithType: TableView.TableStyle.ColumnStyles -- uid: Terminal.Gui.TableView.TableStyle.ExpandLastColumn - name: ExpandLastColumn - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ExpandLastColumn - commentId: P:Terminal.Gui.TableView.TableStyle.ExpandLastColumn - fullName: Terminal.Gui.TableView.TableStyle.ExpandLastColumn - nameWithType: TableView.TableStyle.ExpandLastColumn -- uid: Terminal.Gui.TableView.TableStyle.ExpandLastColumn* - name: ExpandLastColumn - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ExpandLastColumn_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ExpandLastColumn - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ExpandLastColumn - nameWithType: TableView.TableStyle.ExpandLastColumn -- uid: Terminal.Gui.TableView.TableStyle.GetColumnStyleIfAny(System.Data.DataColumn) - name: GetColumnStyleIfAny(DataColumn) - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_GetColumnStyleIfAny_System_Data_DataColumn_ - commentId: M:Terminal.Gui.TableView.TableStyle.GetColumnStyleIfAny(System.Data.DataColumn) - fullName: Terminal.Gui.TableView.TableStyle.GetColumnStyleIfAny(System.Data.DataColumn) - nameWithType: TableView.TableStyle.GetColumnStyleIfAny(DataColumn) -- uid: Terminal.Gui.TableView.TableStyle.GetColumnStyleIfAny* - name: GetColumnStyleIfAny - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_GetColumnStyleIfAny_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.GetColumnStyleIfAny - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.GetColumnStyleIfAny - nameWithType: TableView.TableStyle.GetColumnStyleIfAny -- uid: Terminal.Gui.TableView.TableStyle.GetOrCreateColumnStyle(System.Data.DataColumn) - name: GetOrCreateColumnStyle(DataColumn) - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_GetOrCreateColumnStyle_System_Data_DataColumn_ - commentId: M:Terminal.Gui.TableView.TableStyle.GetOrCreateColumnStyle(System.Data.DataColumn) - fullName: Terminal.Gui.TableView.TableStyle.GetOrCreateColumnStyle(System.Data.DataColumn) - nameWithType: TableView.TableStyle.GetOrCreateColumnStyle(DataColumn) -- uid: Terminal.Gui.TableView.TableStyle.GetOrCreateColumnStyle* - name: GetOrCreateColumnStyle - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_GetOrCreateColumnStyle_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.GetOrCreateColumnStyle - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.GetOrCreateColumnStyle - nameWithType: TableView.TableStyle.GetOrCreateColumnStyle -- uid: Terminal.Gui.TableView.TableStyle.InvertSelectedCellFirstCharacter - name: InvertSelectedCellFirstCharacter - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_InvertSelectedCellFirstCharacter - commentId: P:Terminal.Gui.TableView.TableStyle.InvertSelectedCellFirstCharacter - fullName: Terminal.Gui.TableView.TableStyle.InvertSelectedCellFirstCharacter - nameWithType: TableView.TableStyle.InvertSelectedCellFirstCharacter -- uid: Terminal.Gui.TableView.TableStyle.InvertSelectedCellFirstCharacter* - name: InvertSelectedCellFirstCharacter - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_InvertSelectedCellFirstCharacter_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.InvertSelectedCellFirstCharacter - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.InvertSelectedCellFirstCharacter - nameWithType: TableView.TableStyle.InvertSelectedCellFirstCharacter -- uid: Terminal.Gui.TableView.TableStyle.RowColorGetter - name: RowColorGetter - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_RowColorGetter - commentId: P:Terminal.Gui.TableView.TableStyle.RowColorGetter - fullName: Terminal.Gui.TableView.TableStyle.RowColorGetter - nameWithType: TableView.TableStyle.RowColorGetter -- uid: Terminal.Gui.TableView.TableStyle.RowColorGetter* - name: RowColorGetter - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_RowColorGetter_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.RowColorGetter - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.RowColorGetter - nameWithType: TableView.TableStyle.RowColorGetter -- uid: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderOverline - name: ShowHorizontalHeaderOverline - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowHorizontalHeaderOverline - commentId: P:Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderOverline - fullName: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderOverline - nameWithType: TableView.TableStyle.ShowHorizontalHeaderOverline -- uid: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderOverline* - name: ShowHorizontalHeaderOverline - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowHorizontalHeaderOverline_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderOverline - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderOverline - nameWithType: TableView.TableStyle.ShowHorizontalHeaderOverline -- uid: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderUnderline - name: ShowHorizontalHeaderUnderline - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowHorizontalHeaderUnderline - commentId: P:Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderUnderline - fullName: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderUnderline - nameWithType: TableView.TableStyle.ShowHorizontalHeaderUnderline -- uid: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderUnderline* - name: ShowHorizontalHeaderUnderline - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowHorizontalHeaderUnderline_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderUnderline - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ShowHorizontalHeaderUnderline - nameWithType: TableView.TableStyle.ShowHorizontalHeaderUnderline -- uid: Terminal.Gui.TableView.TableStyle.ShowHorizontalScrollIndicators - name: ShowHorizontalScrollIndicators - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowHorizontalScrollIndicators - commentId: P:Terminal.Gui.TableView.TableStyle.ShowHorizontalScrollIndicators - fullName: Terminal.Gui.TableView.TableStyle.ShowHorizontalScrollIndicators - nameWithType: TableView.TableStyle.ShowHorizontalScrollIndicators -- uid: Terminal.Gui.TableView.TableStyle.ShowHorizontalScrollIndicators* - name: ShowHorizontalScrollIndicators - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowHorizontalScrollIndicators_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ShowHorizontalScrollIndicators - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ShowHorizontalScrollIndicators - nameWithType: TableView.TableStyle.ShowHorizontalScrollIndicators -- uid: Terminal.Gui.TableView.TableStyle.ShowVerticalCellLines - name: ShowVerticalCellLines - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowVerticalCellLines - commentId: P:Terminal.Gui.TableView.TableStyle.ShowVerticalCellLines - fullName: Terminal.Gui.TableView.TableStyle.ShowVerticalCellLines - nameWithType: TableView.TableStyle.ShowVerticalCellLines -- uid: Terminal.Gui.TableView.TableStyle.ShowVerticalCellLines* - name: ShowVerticalCellLines - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowVerticalCellLines_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ShowVerticalCellLines - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ShowVerticalCellLines - nameWithType: TableView.TableStyle.ShowVerticalCellLines -- uid: Terminal.Gui.TableView.TableStyle.ShowVerticalHeaderLines - name: ShowVerticalHeaderLines - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowVerticalHeaderLines - commentId: P:Terminal.Gui.TableView.TableStyle.ShowVerticalHeaderLines - fullName: Terminal.Gui.TableView.TableStyle.ShowVerticalHeaderLines - nameWithType: TableView.TableStyle.ShowVerticalHeaderLines -- uid: Terminal.Gui.TableView.TableStyle.ShowVerticalHeaderLines* - name: ShowVerticalHeaderLines - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_ShowVerticalHeaderLines_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.ShowVerticalHeaderLines - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.ShowVerticalHeaderLines - nameWithType: TableView.TableStyle.ShowVerticalHeaderLines -- uid: Terminal.Gui.TableView.TableStyle.SmoothHorizontalScrolling - name: SmoothHorizontalScrolling - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_SmoothHorizontalScrolling - commentId: P:Terminal.Gui.TableView.TableStyle.SmoothHorizontalScrolling - fullName: Terminal.Gui.TableView.TableStyle.SmoothHorizontalScrolling - nameWithType: TableView.TableStyle.SmoothHorizontalScrolling -- uid: Terminal.Gui.TableView.TableStyle.SmoothHorizontalScrolling* - name: SmoothHorizontalScrolling - href: api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html#Terminal_Gui_TableView_TableStyle_SmoothHorizontalScrolling_ - commentId: Overload:Terminal.Gui.TableView.TableStyle.SmoothHorizontalScrolling - isSpec: "True" - fullName: Terminal.Gui.TableView.TableStyle.SmoothHorizontalScrolling - nameWithType: TableView.TableStyle.SmoothHorizontalScrolling -- uid: Terminal.Gui.TableView.Update - name: Update() - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Update - commentId: M:Terminal.Gui.TableView.Update - fullName: Terminal.Gui.TableView.Update() - nameWithType: TableView.Update() -- uid: Terminal.Gui.TableView.Update* - name: Update - href: api/Terminal.Gui/Terminal.Gui.TableView.html#Terminal_Gui_TableView_Update_ - commentId: Overload:Terminal.Gui.TableView.Update - isSpec: "True" - fullName: Terminal.Gui.TableView.Update - nameWithType: TableView.Update -- uid: Terminal.Gui.TabView - name: TabView - href: api/Terminal.Gui/Terminal.Gui.TabView.html - commentId: T:Terminal.Gui.TabView - fullName: Terminal.Gui.TabView - nameWithType: TabView -- uid: Terminal.Gui.TabView.#ctor - name: TabView() - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView__ctor - commentId: M:Terminal.Gui.TabView.#ctor - fullName: Terminal.Gui.TabView.TabView() - nameWithType: TabView.TabView() -- uid: Terminal.Gui.TabView.#ctor* - name: TabView - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView__ctor_ - commentId: Overload:Terminal.Gui.TabView.#ctor - isSpec: "True" - fullName: Terminal.Gui.TabView.TabView - nameWithType: TabView.TabView -- uid: Terminal.Gui.TabView.AddTab(Terminal.Gui.TabView.Tab,System.Boolean) - name: AddTab(TabView.Tab, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_AddTab_Terminal_Gui_TabView_Tab_System_Boolean_ - commentId: M:Terminal.Gui.TabView.AddTab(Terminal.Gui.TabView.Tab,System.Boolean) - fullName: Terminal.Gui.TabView.AddTab(Terminal.Gui.TabView.Tab, System.Boolean) - nameWithType: TabView.AddTab(TabView.Tab, Boolean) -- uid: Terminal.Gui.TabView.AddTab* - name: AddTab - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_AddTab_ - commentId: Overload:Terminal.Gui.TabView.AddTab - isSpec: "True" - fullName: Terminal.Gui.TabView.AddTab - nameWithType: TabView.AddTab -- uid: Terminal.Gui.TabView.ApplyStyleChanges - name: ApplyStyleChanges() - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_ApplyStyleChanges - commentId: M:Terminal.Gui.TabView.ApplyStyleChanges - fullName: Terminal.Gui.TabView.ApplyStyleChanges() - nameWithType: TabView.ApplyStyleChanges() -- uid: Terminal.Gui.TabView.ApplyStyleChanges* - name: ApplyStyleChanges - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_ApplyStyleChanges_ - commentId: Overload:Terminal.Gui.TabView.ApplyStyleChanges - isSpec: "True" - fullName: Terminal.Gui.TabView.ApplyStyleChanges - nameWithType: TabView.ApplyStyleChanges -- uid: Terminal.Gui.TabView.DefaultMaxTabTextWidth - name: DefaultMaxTabTextWidth - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_DefaultMaxTabTextWidth - commentId: F:Terminal.Gui.TabView.DefaultMaxTabTextWidth - fullName: Terminal.Gui.TabView.DefaultMaxTabTextWidth - nameWithType: TabView.DefaultMaxTabTextWidth -- uid: Terminal.Gui.TabView.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Dispose_System_Boolean_ - commentId: M:Terminal.Gui.TabView.Dispose(System.Boolean) - fullName: Terminal.Gui.TabView.Dispose(System.Boolean) - nameWithType: TabView.Dispose(Boolean) -- uid: Terminal.Gui.TabView.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Dispose_ - commentId: Overload:Terminal.Gui.TabView.Dispose - isSpec: "True" - fullName: Terminal.Gui.TabView.Dispose - nameWithType: TabView.Dispose -- uid: Terminal.Gui.TabView.EnsureSelectedTabIsVisible - name: EnsureSelectedTabIsVisible() - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_EnsureSelectedTabIsVisible - commentId: M:Terminal.Gui.TabView.EnsureSelectedTabIsVisible - fullName: Terminal.Gui.TabView.EnsureSelectedTabIsVisible() - nameWithType: TabView.EnsureSelectedTabIsVisible() -- uid: Terminal.Gui.TabView.EnsureSelectedTabIsVisible* - name: EnsureSelectedTabIsVisible - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_EnsureSelectedTabIsVisible_ - commentId: Overload:Terminal.Gui.TabView.EnsureSelectedTabIsVisible - isSpec: "True" - fullName: Terminal.Gui.TabView.EnsureSelectedTabIsVisible - nameWithType: TabView.EnsureSelectedTabIsVisible -- uid: Terminal.Gui.TabView.EnsureValidScrollOffsets - name: EnsureValidScrollOffsets() - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_EnsureValidScrollOffsets - commentId: M:Terminal.Gui.TabView.EnsureValidScrollOffsets - fullName: Terminal.Gui.TabView.EnsureValidScrollOffsets() - nameWithType: TabView.EnsureValidScrollOffsets() -- uid: Terminal.Gui.TabView.EnsureValidScrollOffsets* - name: EnsureValidScrollOffsets - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_EnsureValidScrollOffsets_ - commentId: Overload:Terminal.Gui.TabView.EnsureValidScrollOffsets - isSpec: "True" - fullName: Terminal.Gui.TabView.EnsureValidScrollOffsets - nameWithType: TabView.EnsureValidScrollOffsets -- uid: Terminal.Gui.TabView.MaxTabTextWidth - name: MaxTabTextWidth - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_MaxTabTextWidth - commentId: P:Terminal.Gui.TabView.MaxTabTextWidth - fullName: Terminal.Gui.TabView.MaxTabTextWidth - nameWithType: TabView.MaxTabTextWidth -- uid: Terminal.Gui.TabView.MaxTabTextWidth* - name: MaxTabTextWidth - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_MaxTabTextWidth_ - commentId: Overload:Terminal.Gui.TabView.MaxTabTextWidth - isSpec: "True" - fullName: Terminal.Gui.TabView.MaxTabTextWidth - nameWithType: TabView.MaxTabTextWidth -- uid: Terminal.Gui.TabView.OnSelectedTabChanged(Terminal.Gui.TabView.Tab,Terminal.Gui.TabView.Tab) - name: OnSelectedTabChanged(TabView.Tab, TabView.Tab) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_OnSelectedTabChanged_Terminal_Gui_TabView_Tab_Terminal_Gui_TabView_Tab_ - commentId: M:Terminal.Gui.TabView.OnSelectedTabChanged(Terminal.Gui.TabView.Tab,Terminal.Gui.TabView.Tab) - fullName: Terminal.Gui.TabView.OnSelectedTabChanged(Terminal.Gui.TabView.Tab, Terminal.Gui.TabView.Tab) - nameWithType: TabView.OnSelectedTabChanged(TabView.Tab, TabView.Tab) -- uid: Terminal.Gui.TabView.OnSelectedTabChanged* - name: OnSelectedTabChanged - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_OnSelectedTabChanged_ - commentId: Overload:Terminal.Gui.TabView.OnSelectedTabChanged - isSpec: "True" - fullName: Terminal.Gui.TabView.OnSelectedTabChanged - nameWithType: TabView.OnSelectedTabChanged -- uid: Terminal.Gui.TabView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TabView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TabView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TabView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.TabView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_ProcessKey_ - commentId: Overload:Terminal.Gui.TabView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TabView.ProcessKey - nameWithType: TabView.ProcessKey -- uid: Terminal.Gui.TabView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TabView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.TabView.Redraw(Terminal.Gui.Rect) - nameWithType: TabView.Redraw(Rect) -- uid: Terminal.Gui.TabView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Redraw_ - commentId: Overload:Terminal.Gui.TabView.Redraw - isSpec: "True" - fullName: Terminal.Gui.TabView.Redraw - nameWithType: TabView.Redraw -- uid: Terminal.Gui.TabView.RemoveTab(Terminal.Gui.TabView.Tab) - name: RemoveTab(TabView.Tab) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_RemoveTab_Terminal_Gui_TabView_Tab_ - commentId: M:Terminal.Gui.TabView.RemoveTab(Terminal.Gui.TabView.Tab) - fullName: Terminal.Gui.TabView.RemoveTab(Terminal.Gui.TabView.Tab) - nameWithType: TabView.RemoveTab(TabView.Tab) -- uid: Terminal.Gui.TabView.RemoveTab* - name: RemoveTab - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_RemoveTab_ - commentId: Overload:Terminal.Gui.TabView.RemoveTab - isSpec: "True" - fullName: Terminal.Gui.TabView.RemoveTab - nameWithType: TabView.RemoveTab -- uid: Terminal.Gui.TabView.SelectedTab - name: SelectedTab - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_SelectedTab - commentId: P:Terminal.Gui.TabView.SelectedTab - fullName: Terminal.Gui.TabView.SelectedTab - nameWithType: TabView.SelectedTab -- uid: Terminal.Gui.TabView.SelectedTab* - name: SelectedTab - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_SelectedTab_ - commentId: Overload:Terminal.Gui.TabView.SelectedTab - isSpec: "True" - fullName: Terminal.Gui.TabView.SelectedTab - nameWithType: TabView.SelectedTab -- uid: Terminal.Gui.TabView.SelectedTabChanged - name: SelectedTabChanged - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_SelectedTabChanged - commentId: E:Terminal.Gui.TabView.SelectedTabChanged - fullName: Terminal.Gui.TabView.SelectedTabChanged - nameWithType: TabView.SelectedTabChanged -- uid: Terminal.Gui.TabView.Style - name: Style - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Style - commentId: P:Terminal.Gui.TabView.Style - fullName: Terminal.Gui.TabView.Style - nameWithType: TabView.Style -- uid: Terminal.Gui.TabView.Style* - name: Style - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Style_ - commentId: Overload:Terminal.Gui.TabView.Style - isSpec: "True" - fullName: Terminal.Gui.TabView.Style - nameWithType: TabView.Style -- uid: Terminal.Gui.TabView.SwitchTabBy(System.Int32) - name: SwitchTabBy(Int32) - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_SwitchTabBy_System_Int32_ - commentId: M:Terminal.Gui.TabView.SwitchTabBy(System.Int32) - fullName: Terminal.Gui.TabView.SwitchTabBy(System.Int32) - nameWithType: TabView.SwitchTabBy(Int32) -- uid: Terminal.Gui.TabView.SwitchTabBy* - name: SwitchTabBy - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_SwitchTabBy_ - commentId: Overload:Terminal.Gui.TabView.SwitchTabBy - isSpec: "True" - fullName: Terminal.Gui.TabView.SwitchTabBy - nameWithType: TabView.SwitchTabBy -- uid: Terminal.Gui.TabView.Tab - name: TabView.Tab - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html - commentId: T:Terminal.Gui.TabView.Tab - fullName: Terminal.Gui.TabView.Tab - nameWithType: TabView.Tab -- uid: Terminal.Gui.TabView.Tab.#ctor - name: Tab() - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab__ctor - commentId: M:Terminal.Gui.TabView.Tab.#ctor - fullName: Terminal.Gui.TabView.Tab.Tab() - nameWithType: TabView.Tab.Tab() -- uid: Terminal.Gui.TabView.Tab.#ctor(System.String,Terminal.Gui.View) - name: Tab(String, View) - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab__ctor_System_String_Terminal_Gui_View_ - commentId: M:Terminal.Gui.TabView.Tab.#ctor(System.String,Terminal.Gui.View) - fullName: Terminal.Gui.TabView.Tab.Tab(System.String, Terminal.Gui.View) - nameWithType: TabView.Tab.Tab(String, View) -- uid: Terminal.Gui.TabView.Tab.#ctor* - name: Tab - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab__ctor_ - commentId: Overload:Terminal.Gui.TabView.Tab.#ctor - isSpec: "True" - fullName: Terminal.Gui.TabView.Tab.Tab - nameWithType: TabView.Tab.Tab -- uid: Terminal.Gui.TabView.Tab.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab_Text - commentId: P:Terminal.Gui.TabView.Tab.Text - fullName: Terminal.Gui.TabView.Tab.Text - nameWithType: TabView.Tab.Text -- uid: Terminal.Gui.TabView.Tab.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab_Text_ - commentId: Overload:Terminal.Gui.TabView.Tab.Text - isSpec: "True" - fullName: Terminal.Gui.TabView.Tab.Text - nameWithType: TabView.Tab.Text -- uid: Terminal.Gui.TabView.Tab.View - name: View - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab_View - commentId: P:Terminal.Gui.TabView.Tab.View - fullName: Terminal.Gui.TabView.Tab.View - nameWithType: TabView.Tab.View -- uid: Terminal.Gui.TabView.Tab.View* - name: View - href: api/Terminal.Gui/Terminal.Gui.TabView.Tab.html#Terminal_Gui_TabView_Tab_View_ - commentId: Overload:Terminal.Gui.TabView.Tab.View - isSpec: "True" - fullName: Terminal.Gui.TabView.Tab.View - nameWithType: TabView.Tab.View -- uid: Terminal.Gui.TabView.TabChangedEventArgs - name: TabView.TabChangedEventArgs - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html - commentId: T:Terminal.Gui.TabView.TabChangedEventArgs - fullName: Terminal.Gui.TabView.TabChangedEventArgs - nameWithType: TabView.TabChangedEventArgs -- uid: Terminal.Gui.TabView.TabChangedEventArgs.#ctor(Terminal.Gui.TabView.Tab,Terminal.Gui.TabView.Tab) - name: TabChangedEventArgs(TabView.Tab, TabView.Tab) - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html#Terminal_Gui_TabView_TabChangedEventArgs__ctor_Terminal_Gui_TabView_Tab_Terminal_Gui_TabView_Tab_ - commentId: M:Terminal.Gui.TabView.TabChangedEventArgs.#ctor(Terminal.Gui.TabView.Tab,Terminal.Gui.TabView.Tab) - fullName: Terminal.Gui.TabView.TabChangedEventArgs.TabChangedEventArgs(Terminal.Gui.TabView.Tab, Terminal.Gui.TabView.Tab) - nameWithType: TabView.TabChangedEventArgs.TabChangedEventArgs(TabView.Tab, TabView.Tab) -- uid: Terminal.Gui.TabView.TabChangedEventArgs.#ctor* - name: TabChangedEventArgs - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html#Terminal_Gui_TabView_TabChangedEventArgs__ctor_ - commentId: Overload:Terminal.Gui.TabView.TabChangedEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.TabView.TabChangedEventArgs.TabChangedEventArgs - nameWithType: TabView.TabChangedEventArgs.TabChangedEventArgs -- uid: Terminal.Gui.TabView.TabChangedEventArgs.NewTab - name: NewTab - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html#Terminal_Gui_TabView_TabChangedEventArgs_NewTab - commentId: P:Terminal.Gui.TabView.TabChangedEventArgs.NewTab - fullName: Terminal.Gui.TabView.TabChangedEventArgs.NewTab - nameWithType: TabView.TabChangedEventArgs.NewTab -- uid: Terminal.Gui.TabView.TabChangedEventArgs.NewTab* - name: NewTab - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html#Terminal_Gui_TabView_TabChangedEventArgs_NewTab_ - commentId: Overload:Terminal.Gui.TabView.TabChangedEventArgs.NewTab - isSpec: "True" - fullName: Terminal.Gui.TabView.TabChangedEventArgs.NewTab - nameWithType: TabView.TabChangedEventArgs.NewTab -- uid: Terminal.Gui.TabView.TabChangedEventArgs.OldTab - name: OldTab - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html#Terminal_Gui_TabView_TabChangedEventArgs_OldTab - commentId: P:Terminal.Gui.TabView.TabChangedEventArgs.OldTab - fullName: Terminal.Gui.TabView.TabChangedEventArgs.OldTab - nameWithType: TabView.TabChangedEventArgs.OldTab -- uid: Terminal.Gui.TabView.TabChangedEventArgs.OldTab* - name: OldTab - href: api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html#Terminal_Gui_TabView_TabChangedEventArgs_OldTab_ - commentId: Overload:Terminal.Gui.TabView.TabChangedEventArgs.OldTab - isSpec: "True" - fullName: Terminal.Gui.TabView.TabChangedEventArgs.OldTab - nameWithType: TabView.TabChangedEventArgs.OldTab -- uid: Terminal.Gui.TabView.Tabs - name: Tabs - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Tabs - commentId: P:Terminal.Gui.TabView.Tabs - fullName: Terminal.Gui.TabView.Tabs - nameWithType: TabView.Tabs -- uid: Terminal.Gui.TabView.Tabs* - name: Tabs - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_Tabs_ - commentId: Overload:Terminal.Gui.TabView.Tabs - isSpec: "True" - fullName: Terminal.Gui.TabView.Tabs - nameWithType: TabView.Tabs -- uid: Terminal.Gui.TabView.TabScrollOffset - name: TabScrollOffset - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_TabScrollOffset - commentId: P:Terminal.Gui.TabView.TabScrollOffset - fullName: Terminal.Gui.TabView.TabScrollOffset - nameWithType: TabView.TabScrollOffset -- uid: Terminal.Gui.TabView.TabScrollOffset* - name: TabScrollOffset - href: api/Terminal.Gui/Terminal.Gui.TabView.html#Terminal_Gui_TabView_TabScrollOffset_ - commentId: Overload:Terminal.Gui.TabView.TabScrollOffset - isSpec: "True" - fullName: Terminal.Gui.TabView.TabScrollOffset - nameWithType: TabView.TabScrollOffset -- uid: Terminal.Gui.TabView.TabStyle - name: TabView.TabStyle - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html - commentId: T:Terminal.Gui.TabView.TabStyle - fullName: Terminal.Gui.TabView.TabStyle - nameWithType: TabView.TabStyle -- uid: Terminal.Gui.TabView.TabStyle.ShowBorder - name: ShowBorder - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html#Terminal_Gui_TabView_TabStyle_ShowBorder - commentId: P:Terminal.Gui.TabView.TabStyle.ShowBorder - fullName: Terminal.Gui.TabView.TabStyle.ShowBorder - nameWithType: TabView.TabStyle.ShowBorder -- uid: Terminal.Gui.TabView.TabStyle.ShowBorder* - name: ShowBorder - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html#Terminal_Gui_TabView_TabStyle_ShowBorder_ - commentId: Overload:Terminal.Gui.TabView.TabStyle.ShowBorder - isSpec: "True" - fullName: Terminal.Gui.TabView.TabStyle.ShowBorder - nameWithType: TabView.TabStyle.ShowBorder -- uid: Terminal.Gui.TabView.TabStyle.ShowTopLine - name: ShowTopLine - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html#Terminal_Gui_TabView_TabStyle_ShowTopLine - commentId: P:Terminal.Gui.TabView.TabStyle.ShowTopLine - fullName: Terminal.Gui.TabView.TabStyle.ShowTopLine - nameWithType: TabView.TabStyle.ShowTopLine -- uid: Terminal.Gui.TabView.TabStyle.ShowTopLine* - name: ShowTopLine - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html#Terminal_Gui_TabView_TabStyle_ShowTopLine_ - commentId: Overload:Terminal.Gui.TabView.TabStyle.ShowTopLine - isSpec: "True" - fullName: Terminal.Gui.TabView.TabStyle.ShowTopLine - nameWithType: TabView.TabStyle.ShowTopLine -- uid: Terminal.Gui.TabView.TabStyle.TabsOnBottom - name: TabsOnBottom - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html#Terminal_Gui_TabView_TabStyle_TabsOnBottom - commentId: P:Terminal.Gui.TabView.TabStyle.TabsOnBottom - fullName: Terminal.Gui.TabView.TabStyle.TabsOnBottom - nameWithType: TabView.TabStyle.TabsOnBottom -- uid: Terminal.Gui.TabView.TabStyle.TabsOnBottom* - name: TabsOnBottom - href: api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html#Terminal_Gui_TabView_TabStyle_TabsOnBottom_ - commentId: Overload:Terminal.Gui.TabView.TabStyle.TabsOnBottom - isSpec: "True" - fullName: Terminal.Gui.TabView.TabStyle.TabsOnBottom - nameWithType: TabView.TabStyle.TabsOnBottom -- uid: Terminal.Gui.TextAlignment - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.TextAlignment.html - commentId: T:Terminal.Gui.TextAlignment - fullName: Terminal.Gui.TextAlignment - nameWithType: TextAlignment -- uid: Terminal.Gui.TextAlignment.Centered - name: Centered - href: api/Terminal.Gui/Terminal.Gui.TextAlignment.html#Terminal_Gui_TextAlignment_Centered - commentId: F:Terminal.Gui.TextAlignment.Centered - fullName: Terminal.Gui.TextAlignment.Centered - nameWithType: TextAlignment.Centered -- uid: Terminal.Gui.TextAlignment.Justified - name: Justified - href: api/Terminal.Gui/Terminal.Gui.TextAlignment.html#Terminal_Gui_TextAlignment_Justified - commentId: F:Terminal.Gui.TextAlignment.Justified - fullName: Terminal.Gui.TextAlignment.Justified - nameWithType: TextAlignment.Justified -- uid: Terminal.Gui.TextAlignment.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.TextAlignment.html#Terminal_Gui_TextAlignment_Left - commentId: F:Terminal.Gui.TextAlignment.Left - fullName: Terminal.Gui.TextAlignment.Left - nameWithType: TextAlignment.Left -- uid: Terminal.Gui.TextAlignment.Right - name: Right - href: api/Terminal.Gui/Terminal.Gui.TextAlignment.html#Terminal_Gui_TextAlignment_Right - commentId: F:Terminal.Gui.TextAlignment.Right - fullName: Terminal.Gui.TextAlignment.Right - nameWithType: TextAlignment.Right -- uid: Terminal.Gui.TextChangingEventArgs - name: TextChangingEventArgs - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html - commentId: T:Terminal.Gui.TextChangingEventArgs - fullName: Terminal.Gui.TextChangingEventArgs - nameWithType: TextChangingEventArgs -- uid: Terminal.Gui.TextChangingEventArgs.#ctor(NStack.ustring) - name: TextChangingEventArgs(ustring) - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html#Terminal_Gui_TextChangingEventArgs__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.TextChangingEventArgs.#ctor(NStack.ustring) - fullName: Terminal.Gui.TextChangingEventArgs.TextChangingEventArgs(NStack.ustring) - nameWithType: TextChangingEventArgs.TextChangingEventArgs(ustring) -- uid: Terminal.Gui.TextChangingEventArgs.#ctor* - name: TextChangingEventArgs - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html#Terminal_Gui_TextChangingEventArgs__ctor_ - commentId: Overload:Terminal.Gui.TextChangingEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.TextChangingEventArgs.TextChangingEventArgs - nameWithType: TextChangingEventArgs.TextChangingEventArgs -- uid: Terminal.Gui.TextChangingEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html#Terminal_Gui_TextChangingEventArgs_Cancel - commentId: P:Terminal.Gui.TextChangingEventArgs.Cancel - fullName: Terminal.Gui.TextChangingEventArgs.Cancel - nameWithType: TextChangingEventArgs.Cancel -- uid: Terminal.Gui.TextChangingEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html#Terminal_Gui_TextChangingEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.TextChangingEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.TextChangingEventArgs.Cancel - nameWithType: TextChangingEventArgs.Cancel -- uid: Terminal.Gui.TextChangingEventArgs.NewText - name: NewText - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html#Terminal_Gui_TextChangingEventArgs_NewText - commentId: P:Terminal.Gui.TextChangingEventArgs.NewText - fullName: Terminal.Gui.TextChangingEventArgs.NewText - nameWithType: TextChangingEventArgs.NewText -- uid: Terminal.Gui.TextChangingEventArgs.NewText* - name: NewText - href: api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html#Terminal_Gui_TextChangingEventArgs_NewText_ - commentId: Overload:Terminal.Gui.TextChangingEventArgs.NewText - isSpec: "True" - fullName: Terminal.Gui.TextChangingEventArgs.NewText - nameWithType: TextChangingEventArgs.NewText -- uid: Terminal.Gui.TextDirection - name: TextDirection - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html - commentId: T:Terminal.Gui.TextDirection - fullName: Terminal.Gui.TextDirection - nameWithType: TextDirection -- uid: Terminal.Gui.TextDirection.BottomTop_LeftRight - name: BottomTop_LeftRight - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_BottomTop_LeftRight - commentId: F:Terminal.Gui.TextDirection.BottomTop_LeftRight - fullName: Terminal.Gui.TextDirection.BottomTop_LeftRight - nameWithType: TextDirection.BottomTop_LeftRight -- uid: Terminal.Gui.TextDirection.BottomTop_RightLeft - name: BottomTop_RightLeft - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_BottomTop_RightLeft - commentId: F:Terminal.Gui.TextDirection.BottomTop_RightLeft - fullName: Terminal.Gui.TextDirection.BottomTop_RightLeft - nameWithType: TextDirection.BottomTop_RightLeft -- uid: Terminal.Gui.TextDirection.LeftRight_BottomTop - name: LeftRight_BottomTop - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_LeftRight_BottomTop - commentId: F:Terminal.Gui.TextDirection.LeftRight_BottomTop - fullName: Terminal.Gui.TextDirection.LeftRight_BottomTop - nameWithType: TextDirection.LeftRight_BottomTop -- uid: Terminal.Gui.TextDirection.LeftRight_TopBottom - name: LeftRight_TopBottom - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_LeftRight_TopBottom - commentId: F:Terminal.Gui.TextDirection.LeftRight_TopBottom - fullName: Terminal.Gui.TextDirection.LeftRight_TopBottom - nameWithType: TextDirection.LeftRight_TopBottom -- uid: Terminal.Gui.TextDirection.RightLeft_BottomTop - name: RightLeft_BottomTop - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_RightLeft_BottomTop - commentId: F:Terminal.Gui.TextDirection.RightLeft_BottomTop - fullName: Terminal.Gui.TextDirection.RightLeft_BottomTop - nameWithType: TextDirection.RightLeft_BottomTop -- uid: Terminal.Gui.TextDirection.RightLeft_TopBottom - name: RightLeft_TopBottom - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_RightLeft_TopBottom - commentId: F:Terminal.Gui.TextDirection.RightLeft_TopBottom - fullName: Terminal.Gui.TextDirection.RightLeft_TopBottom - nameWithType: TextDirection.RightLeft_TopBottom -- uid: Terminal.Gui.TextDirection.TopBottom_LeftRight - name: TopBottom_LeftRight - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_TopBottom_LeftRight - commentId: F:Terminal.Gui.TextDirection.TopBottom_LeftRight - fullName: Terminal.Gui.TextDirection.TopBottom_LeftRight - nameWithType: TextDirection.TopBottom_LeftRight -- uid: Terminal.Gui.TextDirection.TopBottom_RightLeft - name: TopBottom_RightLeft - href: api/Terminal.Gui/Terminal.Gui.TextDirection.html#Terminal_Gui_TextDirection_TopBottom_RightLeft - commentId: F:Terminal.Gui.TextDirection.TopBottom_RightLeft - fullName: Terminal.Gui.TextDirection.TopBottom_RightLeft - nameWithType: TextDirection.TopBottom_RightLeft -- uid: Terminal.Gui.TextField - name: TextField - href: api/Terminal.Gui/Terminal.Gui.TextField.html - commentId: T:Terminal.Gui.TextField - fullName: Terminal.Gui.TextField - nameWithType: TextField -- uid: Terminal.Gui.TextField.#ctor - name: TextField() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField__ctor - commentId: M:Terminal.Gui.TextField.#ctor - fullName: Terminal.Gui.TextField.TextField() - nameWithType: TextField.TextField() -- uid: Terminal.Gui.TextField.#ctor(NStack.ustring) - name: TextField(ustring) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.TextField.#ctor(NStack.ustring) - fullName: Terminal.Gui.TextField.TextField(NStack.ustring) - nameWithType: TextField.TextField(ustring) -- uid: Terminal.Gui.TextField.#ctor(System.Int32,System.Int32,System.Int32,NStack.ustring) - name: TextField(Int32, Int32, Int32, ustring) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField__ctor_System_Int32_System_Int32_System_Int32_NStack_ustring_ - commentId: M:Terminal.Gui.TextField.#ctor(System.Int32,System.Int32,System.Int32,NStack.ustring) - fullName: Terminal.Gui.TextField.TextField(System.Int32, System.Int32, System.Int32, NStack.ustring) - nameWithType: TextField.TextField(Int32, Int32, Int32, ustring) -- uid: Terminal.Gui.TextField.#ctor(System.String) - name: TextField(String) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField__ctor_System_String_ - commentId: M:Terminal.Gui.TextField.#ctor(System.String) - fullName: Terminal.Gui.TextField.TextField(System.String) - nameWithType: TextField.TextField(String) -- uid: Terminal.Gui.TextField.#ctor* - name: TextField - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField__ctor_ - commentId: Overload:Terminal.Gui.TextField.#ctor - isSpec: "True" - fullName: Terminal.Gui.TextField.TextField - nameWithType: TextField.TextField -- uid: Terminal.Gui.TextField.Autocomplete - name: Autocomplete - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Autocomplete - commentId: P:Terminal.Gui.TextField.Autocomplete - fullName: Terminal.Gui.TextField.Autocomplete - nameWithType: TextField.Autocomplete -- uid: Terminal.Gui.TextField.Autocomplete* - name: Autocomplete - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Autocomplete_ - commentId: Overload:Terminal.Gui.TextField.Autocomplete - isSpec: "True" - fullName: Terminal.Gui.TextField.Autocomplete - nameWithType: TextField.Autocomplete -- uid: Terminal.Gui.TextField.CanFocus - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_CanFocus - commentId: P:Terminal.Gui.TextField.CanFocus - fullName: Terminal.Gui.TextField.CanFocus - nameWithType: TextField.CanFocus -- uid: Terminal.Gui.TextField.CanFocus* - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_CanFocus_ - commentId: Overload:Terminal.Gui.TextField.CanFocus - isSpec: "True" - fullName: Terminal.Gui.TextField.CanFocus - nameWithType: TextField.CanFocus -- uid: Terminal.Gui.TextField.ClearAllSelection - name: ClearAllSelection() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ClearAllSelection - commentId: M:Terminal.Gui.TextField.ClearAllSelection - fullName: Terminal.Gui.TextField.ClearAllSelection() - nameWithType: TextField.ClearAllSelection() -- uid: Terminal.Gui.TextField.ClearAllSelection* - name: ClearAllSelection - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ClearAllSelection_ - commentId: Overload:Terminal.Gui.TextField.ClearAllSelection - isSpec: "True" - fullName: Terminal.Gui.TextField.ClearAllSelection - nameWithType: TextField.ClearAllSelection -- uid: Terminal.Gui.TextField.ClearHistoryChanges - name: ClearHistoryChanges() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ClearHistoryChanges - commentId: M:Terminal.Gui.TextField.ClearHistoryChanges - fullName: Terminal.Gui.TextField.ClearHistoryChanges() - nameWithType: TextField.ClearHistoryChanges() -- uid: Terminal.Gui.TextField.ClearHistoryChanges* - name: ClearHistoryChanges - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ClearHistoryChanges_ - commentId: Overload:Terminal.Gui.TextField.ClearHistoryChanges - isSpec: "True" - fullName: Terminal.Gui.TextField.ClearHistoryChanges - nameWithType: TextField.ClearHistoryChanges -- uid: Terminal.Gui.TextField.ContextMenu - name: ContextMenu - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ContextMenu - commentId: P:Terminal.Gui.TextField.ContextMenu - fullName: Terminal.Gui.TextField.ContextMenu - nameWithType: TextField.ContextMenu -- uid: Terminal.Gui.TextField.ContextMenu* - name: ContextMenu - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ContextMenu_ - commentId: Overload:Terminal.Gui.TextField.ContextMenu - isSpec: "True" - fullName: Terminal.Gui.TextField.ContextMenu - nameWithType: TextField.ContextMenu -- uid: Terminal.Gui.TextField.Copy - name: Copy() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Copy - commentId: M:Terminal.Gui.TextField.Copy - fullName: Terminal.Gui.TextField.Copy() - nameWithType: TextField.Copy() -- uid: Terminal.Gui.TextField.Copy* - name: Copy - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Copy_ - commentId: Overload:Terminal.Gui.TextField.Copy - isSpec: "True" - fullName: Terminal.Gui.TextField.Copy - nameWithType: TextField.Copy -- uid: Terminal.Gui.TextField.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_CursorPosition - commentId: P:Terminal.Gui.TextField.CursorPosition - fullName: Terminal.Gui.TextField.CursorPosition - nameWithType: TextField.CursorPosition -- uid: Terminal.Gui.TextField.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_CursorPosition_ - commentId: Overload:Terminal.Gui.TextField.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.TextField.CursorPosition - nameWithType: TextField.CursorPosition -- uid: Terminal.Gui.TextField.Cut - name: Cut() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Cut - commentId: M:Terminal.Gui.TextField.Cut - fullName: Terminal.Gui.TextField.Cut() - nameWithType: TextField.Cut() -- uid: Terminal.Gui.TextField.Cut* - name: Cut - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Cut_ - commentId: Overload:Terminal.Gui.TextField.Cut - isSpec: "True" - fullName: Terminal.Gui.TextField.Cut - nameWithType: TextField.Cut -- uid: Terminal.Gui.TextField.DeleteAll - name: DeleteAll() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DeleteAll - commentId: M:Terminal.Gui.TextField.DeleteAll - fullName: Terminal.Gui.TextField.DeleteAll() - nameWithType: TextField.DeleteAll() -- uid: Terminal.Gui.TextField.DeleteAll* - name: DeleteAll - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DeleteAll_ - commentId: Overload:Terminal.Gui.TextField.DeleteAll - isSpec: "True" - fullName: Terminal.Gui.TextField.DeleteAll - nameWithType: TextField.DeleteAll -- uid: Terminal.Gui.TextField.DeleteCharLeft(System.Boolean) - name: DeleteCharLeft(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DeleteCharLeft_System_Boolean_ - commentId: M:Terminal.Gui.TextField.DeleteCharLeft(System.Boolean) - fullName: Terminal.Gui.TextField.DeleteCharLeft(System.Boolean) - nameWithType: TextField.DeleteCharLeft(Boolean) -- uid: Terminal.Gui.TextField.DeleteCharLeft* - name: DeleteCharLeft - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DeleteCharLeft_ - commentId: Overload:Terminal.Gui.TextField.DeleteCharLeft - isSpec: "True" - fullName: Terminal.Gui.TextField.DeleteCharLeft - nameWithType: TextField.DeleteCharLeft -- uid: Terminal.Gui.TextField.DeleteCharRight - name: DeleteCharRight() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DeleteCharRight - commentId: M:Terminal.Gui.TextField.DeleteCharRight - fullName: Terminal.Gui.TextField.DeleteCharRight() - nameWithType: TextField.DeleteCharRight() -- uid: Terminal.Gui.TextField.DeleteCharRight* - name: DeleteCharRight - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DeleteCharRight_ - commentId: Overload:Terminal.Gui.TextField.DeleteCharRight - isSpec: "True" - fullName: Terminal.Gui.TextField.DeleteCharRight - nameWithType: TextField.DeleteCharRight -- uid: Terminal.Gui.TextField.DesiredCursorVisibility - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DesiredCursorVisibility - commentId: P:Terminal.Gui.TextField.DesiredCursorVisibility - fullName: Terminal.Gui.TextField.DesiredCursorVisibility - nameWithType: TextField.DesiredCursorVisibility -- uid: Terminal.Gui.TextField.DesiredCursorVisibility* - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_DesiredCursorVisibility_ - commentId: Overload:Terminal.Gui.TextField.DesiredCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.TextField.DesiredCursorVisibility - nameWithType: TextField.DesiredCursorVisibility -- uid: Terminal.Gui.TextField.Frame - name: Frame - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Frame - commentId: P:Terminal.Gui.TextField.Frame - fullName: Terminal.Gui.TextField.Frame - nameWithType: TextField.Frame -- uid: Terminal.Gui.TextField.Frame* - name: Frame - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Frame_ - commentId: Overload:Terminal.Gui.TextField.Frame - isSpec: "True" - fullName: Terminal.Gui.TextField.Frame - nameWithType: TextField.Frame -- uid: Terminal.Gui.TextField.GetNormalColor - name: GetNormalColor() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_GetNormalColor - commentId: M:Terminal.Gui.TextField.GetNormalColor - fullName: Terminal.Gui.TextField.GetNormalColor() - nameWithType: TextField.GetNormalColor() -- uid: Terminal.Gui.TextField.GetNormalColor* - name: GetNormalColor - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_GetNormalColor_ - commentId: Overload:Terminal.Gui.TextField.GetNormalColor - isSpec: "True" - fullName: Terminal.Gui.TextField.GetNormalColor - nameWithType: TextField.GetNormalColor -- uid: Terminal.Gui.TextField.HasHistoryChanges - name: HasHistoryChanges - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_HasHistoryChanges - commentId: P:Terminal.Gui.TextField.HasHistoryChanges - fullName: Terminal.Gui.TextField.HasHistoryChanges - nameWithType: TextField.HasHistoryChanges -- uid: Terminal.Gui.TextField.HasHistoryChanges* - name: HasHistoryChanges - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_HasHistoryChanges_ - commentId: Overload:Terminal.Gui.TextField.HasHistoryChanges - isSpec: "True" - fullName: Terminal.Gui.TextField.HasHistoryChanges - nameWithType: TextField.HasHistoryChanges -- uid: Terminal.Gui.TextField.InsertText(System.String,System.Boolean) - name: InsertText(String, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_InsertText_System_String_System_Boolean_ - commentId: M:Terminal.Gui.TextField.InsertText(System.String,System.Boolean) - fullName: Terminal.Gui.TextField.InsertText(System.String, System.Boolean) - nameWithType: TextField.InsertText(String, Boolean) -- uid: Terminal.Gui.TextField.InsertText* - name: InsertText - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_InsertText_ - commentId: Overload:Terminal.Gui.TextField.InsertText - isSpec: "True" - fullName: Terminal.Gui.TextField.InsertText - nameWithType: TextField.InsertText -- uid: Terminal.Gui.TextField.IsDirty - name: IsDirty - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_IsDirty - commentId: P:Terminal.Gui.TextField.IsDirty - fullName: Terminal.Gui.TextField.IsDirty - nameWithType: TextField.IsDirty -- uid: Terminal.Gui.TextField.IsDirty* - name: IsDirty - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_IsDirty_ - commentId: Overload:Terminal.Gui.TextField.IsDirty - isSpec: "True" - fullName: Terminal.Gui.TextField.IsDirty - nameWithType: TextField.IsDirty -- uid: Terminal.Gui.TextField.KillWordBackwards - name: KillWordBackwards() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_KillWordBackwards - commentId: M:Terminal.Gui.TextField.KillWordBackwards - fullName: Terminal.Gui.TextField.KillWordBackwards() - nameWithType: TextField.KillWordBackwards() -- uid: Terminal.Gui.TextField.KillWordBackwards* - name: KillWordBackwards - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_KillWordBackwards_ - commentId: Overload:Terminal.Gui.TextField.KillWordBackwards - isSpec: "True" - fullName: Terminal.Gui.TextField.KillWordBackwards - nameWithType: TextField.KillWordBackwards -- uid: Terminal.Gui.TextField.KillWordForwards - name: KillWordForwards() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_KillWordForwards - commentId: M:Terminal.Gui.TextField.KillWordForwards - fullName: Terminal.Gui.TextField.KillWordForwards() - nameWithType: TextField.KillWordForwards() -- uid: Terminal.Gui.TextField.KillWordForwards* - name: KillWordForwards - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_KillWordForwards_ - commentId: Overload:Terminal.Gui.TextField.KillWordForwards - isSpec: "True" - fullName: Terminal.Gui.TextField.KillWordForwards - nameWithType: TextField.KillWordForwards -- uid: Terminal.Gui.TextField.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.TextField.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.TextField.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: TextField.MouseEvent(MouseEvent) -- uid: Terminal.Gui.TextField.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_MouseEvent_ - commentId: Overload:Terminal.Gui.TextField.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.TextField.MouseEvent - nameWithType: TextField.MouseEvent -- uid: Terminal.Gui.TextField.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.TextField.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.TextField.OnEnter(Terminal.Gui.View) - nameWithType: TextField.OnEnter(View) -- uid: Terminal.Gui.TextField.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_OnEnter_ - commentId: Overload:Terminal.Gui.TextField.OnEnter - isSpec: "True" - fullName: Terminal.Gui.TextField.OnEnter - nameWithType: TextField.OnEnter -- uid: Terminal.Gui.TextField.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.TextField.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.TextField.OnLeave(Terminal.Gui.View) - nameWithType: TextField.OnLeave(View) -- uid: Terminal.Gui.TextField.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_OnLeave_ - commentId: Overload:Terminal.Gui.TextField.OnLeave - isSpec: "True" - fullName: Terminal.Gui.TextField.OnLeave - nameWithType: TextField.OnLeave -- uid: Terminal.Gui.TextField.OnTextChanging(NStack.ustring) - name: OnTextChanging(ustring) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_OnTextChanging_NStack_ustring_ - commentId: M:Terminal.Gui.TextField.OnTextChanging(NStack.ustring) - fullName: Terminal.Gui.TextField.OnTextChanging(NStack.ustring) - nameWithType: TextField.OnTextChanging(ustring) -- uid: Terminal.Gui.TextField.OnTextChanging* - name: OnTextChanging - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_OnTextChanging_ - commentId: Overload:Terminal.Gui.TextField.OnTextChanging - isSpec: "True" - fullName: Terminal.Gui.TextField.OnTextChanging - nameWithType: TextField.OnTextChanging -- uid: Terminal.Gui.TextField.Paste - name: Paste() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Paste - commentId: M:Terminal.Gui.TextField.Paste - fullName: Terminal.Gui.TextField.Paste() - nameWithType: TextField.Paste() -- uid: Terminal.Gui.TextField.Paste* - name: Paste - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Paste_ - commentId: Overload:Terminal.Gui.TextField.Paste - isSpec: "True" - fullName: Terminal.Gui.TextField.Paste - nameWithType: TextField.Paste -- uid: Terminal.Gui.TextField.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_PositionCursor - commentId: M:Terminal.Gui.TextField.PositionCursor - fullName: Terminal.Gui.TextField.PositionCursor() - nameWithType: TextField.PositionCursor() -- uid: Terminal.Gui.TextField.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_PositionCursor_ - commentId: Overload:Terminal.Gui.TextField.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.TextField.PositionCursor - nameWithType: TextField.PositionCursor -- uid: Terminal.Gui.TextField.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TextField.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TextField.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TextField.ProcessKey(KeyEvent) -- uid: Terminal.Gui.TextField.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ProcessKey_ - commentId: Overload:Terminal.Gui.TextField.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TextField.ProcessKey - nameWithType: TextField.ProcessKey -- uid: Terminal.Gui.TextField.ReadOnly - name: ReadOnly - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ReadOnly - commentId: P:Terminal.Gui.TextField.ReadOnly - fullName: Terminal.Gui.TextField.ReadOnly - nameWithType: TextField.ReadOnly -- uid: Terminal.Gui.TextField.ReadOnly* - name: ReadOnly - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ReadOnly_ - commentId: Overload:Terminal.Gui.TextField.ReadOnly - isSpec: "True" - fullName: Terminal.Gui.TextField.ReadOnly - nameWithType: TextField.ReadOnly -- uid: Terminal.Gui.TextField.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TextField.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.TextField.Redraw(Terminal.Gui.Rect) - nameWithType: TextField.Redraw(Rect) -- uid: Terminal.Gui.TextField.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Redraw_ - commentId: Overload:Terminal.Gui.TextField.Redraw - isSpec: "True" - fullName: Terminal.Gui.TextField.Redraw - nameWithType: TextField.Redraw -- uid: Terminal.Gui.TextField.ScrollOffset - name: ScrollOffset - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ScrollOffset - commentId: P:Terminal.Gui.TextField.ScrollOffset - fullName: Terminal.Gui.TextField.ScrollOffset - nameWithType: TextField.ScrollOffset -- uid: Terminal.Gui.TextField.ScrollOffset* - name: ScrollOffset - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_ScrollOffset_ - commentId: Overload:Terminal.Gui.TextField.ScrollOffset - isSpec: "True" - fullName: Terminal.Gui.TextField.ScrollOffset - nameWithType: TextField.ScrollOffset -- uid: Terminal.Gui.TextField.Secret - name: Secret - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Secret - commentId: P:Terminal.Gui.TextField.Secret - fullName: Terminal.Gui.TextField.Secret - nameWithType: TextField.Secret -- uid: Terminal.Gui.TextField.Secret* - name: Secret - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Secret_ - commentId: Overload:Terminal.Gui.TextField.Secret - isSpec: "True" - fullName: Terminal.Gui.TextField.Secret - nameWithType: TextField.Secret -- uid: Terminal.Gui.TextField.SelectAll - name: SelectAll() - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectAll - commentId: M:Terminal.Gui.TextField.SelectAll - fullName: Terminal.Gui.TextField.SelectAll() - nameWithType: TextField.SelectAll() -- uid: Terminal.Gui.TextField.SelectAll* - name: SelectAll - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectAll_ - commentId: Overload:Terminal.Gui.TextField.SelectAll - isSpec: "True" - fullName: Terminal.Gui.TextField.SelectAll - nameWithType: TextField.SelectAll -- uid: Terminal.Gui.TextField.SelectedLength - name: SelectedLength - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectedLength - commentId: P:Terminal.Gui.TextField.SelectedLength - fullName: Terminal.Gui.TextField.SelectedLength - nameWithType: TextField.SelectedLength -- uid: Terminal.Gui.TextField.SelectedLength* - name: SelectedLength - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectedLength_ - commentId: Overload:Terminal.Gui.TextField.SelectedLength - isSpec: "True" - fullName: Terminal.Gui.TextField.SelectedLength - nameWithType: TextField.SelectedLength -- uid: Terminal.Gui.TextField.SelectedStart - name: SelectedStart - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectedStart - commentId: P:Terminal.Gui.TextField.SelectedStart - fullName: Terminal.Gui.TextField.SelectedStart - nameWithType: TextField.SelectedStart -- uid: Terminal.Gui.TextField.SelectedStart* - name: SelectedStart - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectedStart_ - commentId: Overload:Terminal.Gui.TextField.SelectedStart - isSpec: "True" - fullName: Terminal.Gui.TextField.SelectedStart - nameWithType: TextField.SelectedStart -- uid: Terminal.Gui.TextField.SelectedText - name: SelectedText - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectedText - commentId: P:Terminal.Gui.TextField.SelectedText - fullName: Terminal.Gui.TextField.SelectedText - nameWithType: TextField.SelectedText -- uid: Terminal.Gui.TextField.SelectedText* - name: SelectedText - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_SelectedText_ - commentId: Overload:Terminal.Gui.TextField.SelectedText - isSpec: "True" - fullName: Terminal.Gui.TextField.SelectedText - nameWithType: TextField.SelectedText -- uid: Terminal.Gui.TextField.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Text - commentId: P:Terminal.Gui.TextField.Text - fullName: Terminal.Gui.TextField.Text - nameWithType: TextField.Text -- uid: Terminal.Gui.TextField.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Text_ - commentId: Overload:Terminal.Gui.TextField.Text - isSpec: "True" - fullName: Terminal.Gui.TextField.Text - nameWithType: TextField.Text -- uid: Terminal.Gui.TextField.TextChanged - name: TextChanged - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_TextChanged - commentId: E:Terminal.Gui.TextField.TextChanged - fullName: Terminal.Gui.TextField.TextChanged - nameWithType: TextField.TextChanged -- uid: Terminal.Gui.TextField.TextChanging - name: TextChanging - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_TextChanging - commentId: E:Terminal.Gui.TextField.TextChanging - fullName: Terminal.Gui.TextField.TextChanging - nameWithType: TextField.TextChanging -- uid: Terminal.Gui.TextField.Used - name: Used - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Used - commentId: P:Terminal.Gui.TextField.Used - fullName: Terminal.Gui.TextField.Used - nameWithType: TextField.Used -- uid: Terminal.Gui.TextField.Used* - name: Used - href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Used_ - commentId: Overload:Terminal.Gui.TextField.Used - isSpec: "True" - fullName: Terminal.Gui.TextField.Used - nameWithType: TextField.Used -- uid: Terminal.Gui.TextFieldAutocomplete - name: TextFieldAutocomplete - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html - commentId: T:Terminal.Gui.TextFieldAutocomplete - fullName: Terminal.Gui.TextFieldAutocomplete - nameWithType: TextFieldAutocomplete -- uid: Terminal.Gui.TextFieldAutocomplete.DeleteTextBackwards - name: DeleteTextBackwards() - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html#Terminal_Gui_TextFieldAutocomplete_DeleteTextBackwards - commentId: M:Terminal.Gui.TextFieldAutocomplete.DeleteTextBackwards - fullName: Terminal.Gui.TextFieldAutocomplete.DeleteTextBackwards() - nameWithType: TextFieldAutocomplete.DeleteTextBackwards() -- uid: Terminal.Gui.TextFieldAutocomplete.DeleteTextBackwards* - name: DeleteTextBackwards - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html#Terminal_Gui_TextFieldAutocomplete_DeleteTextBackwards_ - commentId: Overload:Terminal.Gui.TextFieldAutocomplete.DeleteTextBackwards - isSpec: "True" - fullName: Terminal.Gui.TextFieldAutocomplete.DeleteTextBackwards - nameWithType: TextFieldAutocomplete.DeleteTextBackwards -- uid: Terminal.Gui.TextFieldAutocomplete.GetCurrentWord - name: GetCurrentWord() - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html#Terminal_Gui_TextFieldAutocomplete_GetCurrentWord - commentId: M:Terminal.Gui.TextFieldAutocomplete.GetCurrentWord - fullName: Terminal.Gui.TextFieldAutocomplete.GetCurrentWord() - nameWithType: TextFieldAutocomplete.GetCurrentWord() -- uid: Terminal.Gui.TextFieldAutocomplete.GetCurrentWord* - name: GetCurrentWord - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html#Terminal_Gui_TextFieldAutocomplete_GetCurrentWord_ - commentId: Overload:Terminal.Gui.TextFieldAutocomplete.GetCurrentWord - isSpec: "True" - fullName: Terminal.Gui.TextFieldAutocomplete.GetCurrentWord - nameWithType: TextFieldAutocomplete.GetCurrentWord -- uid: Terminal.Gui.TextFieldAutocomplete.InsertText(System.String) - name: InsertText(String) - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html#Terminal_Gui_TextFieldAutocomplete_InsertText_System_String_ - commentId: M:Terminal.Gui.TextFieldAutocomplete.InsertText(System.String) - fullName: Terminal.Gui.TextFieldAutocomplete.InsertText(System.String) - nameWithType: TextFieldAutocomplete.InsertText(String) -- uid: Terminal.Gui.TextFieldAutocomplete.InsertText* - name: InsertText - href: api/Terminal.Gui/Terminal.Gui.TextFieldAutocomplete.html#Terminal_Gui_TextFieldAutocomplete_InsertText_ - commentId: Overload:Terminal.Gui.TextFieldAutocomplete.InsertText - isSpec: "True" - fullName: Terminal.Gui.TextFieldAutocomplete.InsertText - nameWithType: TextFieldAutocomplete.InsertText -- uid: Terminal.Gui.TextFormatter - name: TextFormatter - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html - commentId: T:Terminal.Gui.TextFormatter - fullName: Terminal.Gui.TextFormatter - nameWithType: TextFormatter -- uid: Terminal.Gui.TextFormatter.Alignment - name: Alignment - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Alignment - commentId: P:Terminal.Gui.TextFormatter.Alignment - fullName: Terminal.Gui.TextFormatter.Alignment - nameWithType: TextFormatter.Alignment -- uid: Terminal.Gui.TextFormatter.Alignment* - name: Alignment - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Alignment_ - commentId: Overload:Terminal.Gui.TextFormatter.Alignment - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Alignment - nameWithType: TextFormatter.Alignment -- uid: Terminal.Gui.TextFormatter.AutoSize - name: AutoSize - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_AutoSize - commentId: P:Terminal.Gui.TextFormatter.AutoSize - fullName: Terminal.Gui.TextFormatter.AutoSize - nameWithType: TextFormatter.AutoSize -- uid: Terminal.Gui.TextFormatter.AutoSize* - name: AutoSize - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_AutoSize_ - commentId: Overload:Terminal.Gui.TextFormatter.AutoSize - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.AutoSize - nameWithType: TextFormatter.AutoSize -- uid: Terminal.Gui.TextFormatter.CalcRect(System.Int32,System.Int32,NStack.ustring,Terminal.Gui.TextDirection) - name: CalcRect(Int32, Int32, ustring, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_CalcRect_System_Int32_System_Int32_NStack_ustring_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.CalcRect(System.Int32,System.Int32,NStack.ustring,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.CalcRect(System.Int32, System.Int32, NStack.ustring, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.CalcRect(Int32, Int32, ustring, TextDirection) -- uid: Terminal.Gui.TextFormatter.CalcRect* - name: CalcRect - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_CalcRect_ - commentId: Overload:Terminal.Gui.TextFormatter.CalcRect - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.CalcRect - nameWithType: TextFormatter.CalcRect -- uid: Terminal.Gui.TextFormatter.ClipAndJustify(NStack.ustring,System.Int32,System.Boolean,Terminal.Gui.TextDirection) - name: ClipAndJustify(ustring, Int32, Boolean, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ClipAndJustify_NStack_ustring_System_Int32_System_Boolean_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.ClipAndJustify(NStack.ustring,System.Int32,System.Boolean,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.ClipAndJustify(NStack.ustring, System.Int32, System.Boolean, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.ClipAndJustify(ustring, Int32, Boolean, TextDirection) -- uid: Terminal.Gui.TextFormatter.ClipAndJustify(NStack.ustring,System.Int32,Terminal.Gui.TextAlignment,Terminal.Gui.TextDirection) - name: ClipAndJustify(ustring, Int32, TextAlignment, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ClipAndJustify_NStack_ustring_System_Int32_Terminal_Gui_TextAlignment_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.ClipAndJustify(NStack.ustring,System.Int32,Terminal.Gui.TextAlignment,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.ClipAndJustify(NStack.ustring, System.Int32, Terminal.Gui.TextAlignment, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.ClipAndJustify(ustring, Int32, TextAlignment, TextDirection) -- uid: Terminal.Gui.TextFormatter.ClipAndJustify* - name: ClipAndJustify - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ClipAndJustify_ - commentId: Overload:Terminal.Gui.TextFormatter.ClipAndJustify - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.ClipAndJustify - nameWithType: TextFormatter.ClipAndJustify -- uid: Terminal.Gui.TextFormatter.ClipOrPad(System.String,System.Int32) - name: ClipOrPad(String, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ClipOrPad_System_String_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.ClipOrPad(System.String,System.Int32) - fullName: Terminal.Gui.TextFormatter.ClipOrPad(System.String, System.Int32) - nameWithType: TextFormatter.ClipOrPad(String, Int32) -- uid: Terminal.Gui.TextFormatter.ClipOrPad* - name: ClipOrPad - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ClipOrPad_ - commentId: Overload:Terminal.Gui.TextFormatter.ClipOrPad - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.ClipOrPad - nameWithType: TextFormatter.ClipOrPad -- uid: Terminal.Gui.TextFormatter.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_CursorPosition - commentId: P:Terminal.Gui.TextFormatter.CursorPosition - fullName: Terminal.Gui.TextFormatter.CursorPosition - nameWithType: TextFormatter.CursorPosition -- uid: Terminal.Gui.TextFormatter.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_CursorPosition_ - commentId: Overload:Terminal.Gui.TextFormatter.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.CursorPosition - nameWithType: TextFormatter.CursorPosition -- uid: Terminal.Gui.TextFormatter.Direction - name: Direction - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Direction - commentId: P:Terminal.Gui.TextFormatter.Direction - fullName: Terminal.Gui.TextFormatter.Direction - nameWithType: TextFormatter.Direction -- uid: Terminal.Gui.TextFormatter.Direction* - name: Direction - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Direction_ - commentId: Overload:Terminal.Gui.TextFormatter.Direction - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Direction - nameWithType: TextFormatter.Direction -- uid: Terminal.Gui.TextFormatter.Draw(Terminal.Gui.Rect,Terminal.Gui.Attribute,Terminal.Gui.Attribute,Terminal.Gui.Rect,System.Boolean) - name: Draw(Rect, Attribute, Attribute, Rect, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Draw_Terminal_Gui_Rect_Terminal_Gui_Attribute_Terminal_Gui_Attribute_Terminal_Gui_Rect_System_Boolean_ - commentId: M:Terminal.Gui.TextFormatter.Draw(Terminal.Gui.Rect,Terminal.Gui.Attribute,Terminal.Gui.Attribute,Terminal.Gui.Rect,System.Boolean) - fullName: Terminal.Gui.TextFormatter.Draw(Terminal.Gui.Rect, Terminal.Gui.Attribute, Terminal.Gui.Attribute, Terminal.Gui.Rect, System.Boolean) - nameWithType: TextFormatter.Draw(Rect, Attribute, Attribute, Rect, Boolean) -- uid: Terminal.Gui.TextFormatter.Draw* - name: Draw - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Draw_ - commentId: Overload:Terminal.Gui.TextFormatter.Draw - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Draw - nameWithType: TextFormatter.Draw -- uid: Terminal.Gui.TextFormatter.FindHotKey(NStack.ustring,System.Rune,System.Boolean,System.Int32@,Terminal.Gui.Key@) - name: FindHotKey(ustring, Rune, Boolean, out Int32, out Key) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_FindHotKey_NStack_ustring_System_Rune_System_Boolean_System_Int32__Terminal_Gui_Key__ - commentId: M:Terminal.Gui.TextFormatter.FindHotKey(NStack.ustring,System.Rune,System.Boolean,System.Int32@,Terminal.Gui.Key@) - name.vb: FindHotKey(ustring, Rune, Boolean, ByRef Int32, ByRef Key) - fullName: Terminal.Gui.TextFormatter.FindHotKey(NStack.ustring, System.Rune, System.Boolean, out System.Int32, out Terminal.Gui.Key) - fullName.vb: Terminal.Gui.TextFormatter.FindHotKey(NStack.ustring, System.Rune, System.Boolean, ByRef System.Int32, ByRef Terminal.Gui.Key) - nameWithType: TextFormatter.FindHotKey(ustring, Rune, Boolean, out Int32, out Key) - nameWithType.vb: TextFormatter.FindHotKey(ustring, Rune, Boolean, ByRef Int32, ByRef Key) -- uid: Terminal.Gui.TextFormatter.FindHotKey* - name: FindHotKey - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_FindHotKey_ - commentId: Overload:Terminal.Gui.TextFormatter.FindHotKey - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.FindHotKey - nameWithType: TextFormatter.FindHotKey -- uid: Terminal.Gui.TextFormatter.Format(NStack.ustring,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Int32,Terminal.Gui.TextDirection) - name: Format(ustring, Int32, Boolean, Boolean, Boolean, Int32, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Format_NStack_ustring_System_Int32_System_Boolean_System_Boolean_System_Boolean_System_Int32_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.Format(NStack.ustring,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Int32,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.Format(NStack.ustring, System.Int32, System.Boolean, System.Boolean, System.Boolean, System.Int32, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.Format(ustring, Int32, Boolean, Boolean, Boolean, Int32, TextDirection) -- uid: Terminal.Gui.TextFormatter.Format(NStack.ustring,System.Int32,Terminal.Gui.TextAlignment,System.Boolean,System.Boolean,System.Int32,Terminal.Gui.TextDirection) - name: Format(ustring, Int32, TextAlignment, Boolean, Boolean, Int32, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Format_NStack_ustring_System_Int32_Terminal_Gui_TextAlignment_System_Boolean_System_Boolean_System_Int32_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.Format(NStack.ustring,System.Int32,Terminal.Gui.TextAlignment,System.Boolean,System.Boolean,System.Int32,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.Format(NStack.ustring, System.Int32, Terminal.Gui.TextAlignment, System.Boolean, System.Boolean, System.Int32, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.Format(ustring, Int32, TextAlignment, Boolean, Boolean, Int32, TextDirection) -- uid: Terminal.Gui.TextFormatter.Format* - name: Format - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Format_ - commentId: Overload:Terminal.Gui.TextFormatter.Format - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Format - nameWithType: TextFormatter.Format -- uid: Terminal.Gui.TextFormatter.GetMaxColsForWidth(System.Collections.Generic.List{NStack.ustring},System.Int32) - name: GetMaxColsForWidth(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetMaxColsForWidth_System_Collections_Generic_List_NStack_ustring__System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.GetMaxColsForWidth(System.Collections.Generic.List{NStack.ustring},System.Int32) - name.vb: GetMaxColsForWidth(List(Of ustring), Int32) - fullName: Terminal.Gui.TextFormatter.GetMaxColsForWidth(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.TextFormatter.GetMaxColsForWidth(System.Collections.Generic.List(Of NStack.ustring), System.Int32) - nameWithType: TextFormatter.GetMaxColsForWidth(List, Int32) - nameWithType.vb: TextFormatter.GetMaxColsForWidth(List(Of ustring), Int32) -- uid: Terminal.Gui.TextFormatter.GetMaxColsForWidth* - name: GetMaxColsForWidth - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetMaxColsForWidth_ - commentId: Overload:Terminal.Gui.TextFormatter.GetMaxColsForWidth - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.GetMaxColsForWidth - nameWithType: TextFormatter.GetMaxColsForWidth -- uid: Terminal.Gui.TextFormatter.GetMaxLengthForWidth(NStack.ustring,System.Int32) - name: GetMaxLengthForWidth(ustring, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetMaxLengthForWidth_NStack_ustring_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.GetMaxLengthForWidth(NStack.ustring,System.Int32) - fullName: Terminal.Gui.TextFormatter.GetMaxLengthForWidth(NStack.ustring, System.Int32) - nameWithType: TextFormatter.GetMaxLengthForWidth(ustring, Int32) -- uid: Terminal.Gui.TextFormatter.GetMaxLengthForWidth(System.Collections.Generic.List{System.Rune},System.Int32) - name: GetMaxLengthForWidth(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetMaxLengthForWidth_System_Collections_Generic_List_System_Rune__System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.GetMaxLengthForWidth(System.Collections.Generic.List{System.Rune},System.Int32) - name.vb: GetMaxLengthForWidth(List(Of Rune), Int32) - fullName: Terminal.Gui.TextFormatter.GetMaxLengthForWidth(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.TextFormatter.GetMaxLengthForWidth(System.Collections.Generic.List(Of System.Rune), System.Int32) - nameWithType: TextFormatter.GetMaxLengthForWidth(List, Int32) - nameWithType.vb: TextFormatter.GetMaxLengthForWidth(List(Of Rune), Int32) -- uid: Terminal.Gui.TextFormatter.GetMaxLengthForWidth* - name: GetMaxLengthForWidth - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetMaxLengthForWidth_ - commentId: Overload:Terminal.Gui.TextFormatter.GetMaxLengthForWidth - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.GetMaxLengthForWidth - nameWithType: TextFormatter.GetMaxLengthForWidth -- uid: Terminal.Gui.TextFormatter.GetSumMaxCharWidth(NStack.ustring,System.Int32,System.Int32) - name: GetSumMaxCharWidth(ustring, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetSumMaxCharWidth_NStack_ustring_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.GetSumMaxCharWidth(NStack.ustring,System.Int32,System.Int32) - fullName: Terminal.Gui.TextFormatter.GetSumMaxCharWidth(NStack.ustring, System.Int32, System.Int32) - nameWithType: TextFormatter.GetSumMaxCharWidth(ustring, Int32, Int32) -- uid: Terminal.Gui.TextFormatter.GetSumMaxCharWidth(System.Collections.Generic.List{NStack.ustring},System.Int32,System.Int32) - name: GetSumMaxCharWidth(List, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetSumMaxCharWidth_System_Collections_Generic_List_NStack_ustring__System_Int32_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.GetSumMaxCharWidth(System.Collections.Generic.List{NStack.ustring},System.Int32,System.Int32) - name.vb: GetSumMaxCharWidth(List(Of ustring), Int32, Int32) - fullName: Terminal.Gui.TextFormatter.GetSumMaxCharWidth(System.Collections.Generic.List, System.Int32, System.Int32) - fullName.vb: Terminal.Gui.TextFormatter.GetSumMaxCharWidth(System.Collections.Generic.List(Of NStack.ustring), System.Int32, System.Int32) - nameWithType: TextFormatter.GetSumMaxCharWidth(List, Int32, Int32) - nameWithType.vb: TextFormatter.GetSumMaxCharWidth(List(Of ustring), Int32, Int32) -- uid: Terminal.Gui.TextFormatter.GetSumMaxCharWidth* - name: GetSumMaxCharWidth - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetSumMaxCharWidth_ - commentId: Overload:Terminal.Gui.TextFormatter.GetSumMaxCharWidth - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.GetSumMaxCharWidth - nameWithType: TextFormatter.GetSumMaxCharWidth -- uid: Terminal.Gui.TextFormatter.GetTextWidth(NStack.ustring) - name: GetTextWidth(ustring) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetTextWidth_NStack_ustring_ - commentId: M:Terminal.Gui.TextFormatter.GetTextWidth(NStack.ustring) - fullName: Terminal.Gui.TextFormatter.GetTextWidth(NStack.ustring) - nameWithType: TextFormatter.GetTextWidth(ustring) -- uid: Terminal.Gui.TextFormatter.GetTextWidth* - name: GetTextWidth - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_GetTextWidth_ - commentId: Overload:Terminal.Gui.TextFormatter.GetTextWidth - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.GetTextWidth - nameWithType: TextFormatter.GetTextWidth -- uid: Terminal.Gui.TextFormatter.HotKey - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKey - commentId: P:Terminal.Gui.TextFormatter.HotKey - fullName: Terminal.Gui.TextFormatter.HotKey - nameWithType: TextFormatter.HotKey -- uid: Terminal.Gui.TextFormatter.HotKey* - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKey_ - commentId: Overload:Terminal.Gui.TextFormatter.HotKey - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.HotKey - nameWithType: TextFormatter.HotKey -- uid: Terminal.Gui.TextFormatter.HotKeyChanged - name: HotKeyChanged - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeyChanged - commentId: E:Terminal.Gui.TextFormatter.HotKeyChanged - fullName: Terminal.Gui.TextFormatter.HotKeyChanged - nameWithType: TextFormatter.HotKeyChanged -- uid: Terminal.Gui.TextFormatter.HotKeyPos - name: HotKeyPos - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeyPos - commentId: P:Terminal.Gui.TextFormatter.HotKeyPos - fullName: Terminal.Gui.TextFormatter.HotKeyPos - nameWithType: TextFormatter.HotKeyPos -- uid: Terminal.Gui.TextFormatter.HotKeyPos* - name: HotKeyPos - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeyPos_ - commentId: Overload:Terminal.Gui.TextFormatter.HotKeyPos - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.HotKeyPos - nameWithType: TextFormatter.HotKeyPos -- uid: Terminal.Gui.TextFormatter.HotKeySpecifier - name: HotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeySpecifier - commentId: P:Terminal.Gui.TextFormatter.HotKeySpecifier - fullName: Terminal.Gui.TextFormatter.HotKeySpecifier - nameWithType: TextFormatter.HotKeySpecifier -- uid: Terminal.Gui.TextFormatter.HotKeySpecifier* - name: HotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeySpecifier_ - commentId: Overload:Terminal.Gui.TextFormatter.HotKeySpecifier - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.HotKeySpecifier - nameWithType: TextFormatter.HotKeySpecifier -- uid: Terminal.Gui.TextFormatter.HotKeyTagMask - name: HotKeyTagMask - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeyTagMask - commentId: P:Terminal.Gui.TextFormatter.HotKeyTagMask - fullName: Terminal.Gui.TextFormatter.HotKeyTagMask - nameWithType: TextFormatter.HotKeyTagMask -- uid: Terminal.Gui.TextFormatter.HotKeyTagMask* - name: HotKeyTagMask - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_HotKeyTagMask_ - commentId: Overload:Terminal.Gui.TextFormatter.HotKeyTagMask - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.HotKeyTagMask - nameWithType: TextFormatter.HotKeyTagMask -- uid: Terminal.Gui.TextFormatter.IsHorizontalDirection(Terminal.Gui.TextDirection) - name: IsHorizontalDirection(TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsHorizontalDirection_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.IsHorizontalDirection(Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.IsHorizontalDirection(Terminal.Gui.TextDirection) - nameWithType: TextFormatter.IsHorizontalDirection(TextDirection) -- uid: Terminal.Gui.TextFormatter.IsHorizontalDirection* - name: IsHorizontalDirection - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsHorizontalDirection_ - commentId: Overload:Terminal.Gui.TextFormatter.IsHorizontalDirection - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.IsHorizontalDirection - nameWithType: TextFormatter.IsHorizontalDirection -- uid: Terminal.Gui.TextFormatter.IsLeftToRight(Terminal.Gui.TextDirection) - name: IsLeftToRight(TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsLeftToRight_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.IsLeftToRight(Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.IsLeftToRight(Terminal.Gui.TextDirection) - nameWithType: TextFormatter.IsLeftToRight(TextDirection) -- uid: Terminal.Gui.TextFormatter.IsLeftToRight* - name: IsLeftToRight - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsLeftToRight_ - commentId: Overload:Terminal.Gui.TextFormatter.IsLeftToRight - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.IsLeftToRight - nameWithType: TextFormatter.IsLeftToRight -- uid: Terminal.Gui.TextFormatter.IsTopToBottom(Terminal.Gui.TextDirection) - name: IsTopToBottom(TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsTopToBottom_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.IsTopToBottom(Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.IsTopToBottom(Terminal.Gui.TextDirection) - nameWithType: TextFormatter.IsTopToBottom(TextDirection) -- uid: Terminal.Gui.TextFormatter.IsTopToBottom* - name: IsTopToBottom - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsTopToBottom_ - commentId: Overload:Terminal.Gui.TextFormatter.IsTopToBottom - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.IsTopToBottom - nameWithType: TextFormatter.IsTopToBottom -- uid: Terminal.Gui.TextFormatter.IsVerticalDirection(Terminal.Gui.TextDirection) - name: IsVerticalDirection(TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsVerticalDirection_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.IsVerticalDirection(Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.IsVerticalDirection(Terminal.Gui.TextDirection) - nameWithType: TextFormatter.IsVerticalDirection(TextDirection) -- uid: Terminal.Gui.TextFormatter.IsVerticalDirection* - name: IsVerticalDirection - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_IsVerticalDirection_ - commentId: Overload:Terminal.Gui.TextFormatter.IsVerticalDirection - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.IsVerticalDirection - nameWithType: TextFormatter.IsVerticalDirection -- uid: Terminal.Gui.TextFormatter.Justify(NStack.ustring,System.Int32,System.Char,Terminal.Gui.TextDirection) - name: Justify(ustring, Int32, Char, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Justify_NStack_ustring_System_Int32_System_Char_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.Justify(NStack.ustring,System.Int32,System.Char,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.Justify(NStack.ustring, System.Int32, System.Char, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.Justify(ustring, Int32, Char, TextDirection) -- uid: Terminal.Gui.TextFormatter.Justify* - name: Justify - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Justify_ - commentId: Overload:Terminal.Gui.TextFormatter.Justify - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Justify - nameWithType: TextFormatter.Justify -- uid: Terminal.Gui.TextFormatter.Lines - name: Lines - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Lines - commentId: P:Terminal.Gui.TextFormatter.Lines - fullName: Terminal.Gui.TextFormatter.Lines - nameWithType: TextFormatter.Lines -- uid: Terminal.Gui.TextFormatter.Lines* - name: Lines - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Lines_ - commentId: Overload:Terminal.Gui.TextFormatter.Lines - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Lines - nameWithType: TextFormatter.Lines -- uid: Terminal.Gui.TextFormatter.MaxLines(NStack.ustring,System.Int32) - name: MaxLines(ustring, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_MaxLines_NStack_ustring_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.MaxLines(NStack.ustring,System.Int32) - fullName: Terminal.Gui.TextFormatter.MaxLines(NStack.ustring, System.Int32) - nameWithType: TextFormatter.MaxLines(ustring, Int32) -- uid: Terminal.Gui.TextFormatter.MaxLines* - name: MaxLines - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_MaxLines_ - commentId: Overload:Terminal.Gui.TextFormatter.MaxLines - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.MaxLines - nameWithType: TextFormatter.MaxLines -- uid: Terminal.Gui.TextFormatter.MaxWidth(NStack.ustring,System.Int32) - name: MaxWidth(ustring, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_MaxWidth_NStack_ustring_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.MaxWidth(NStack.ustring,System.Int32) - fullName: Terminal.Gui.TextFormatter.MaxWidth(NStack.ustring, System.Int32) - nameWithType: TextFormatter.MaxWidth(ustring, Int32) -- uid: Terminal.Gui.TextFormatter.MaxWidth* - name: MaxWidth - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_MaxWidth_ - commentId: Overload:Terminal.Gui.TextFormatter.MaxWidth - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.MaxWidth - nameWithType: TextFormatter.MaxWidth -- uid: Terminal.Gui.TextFormatter.MaxWidthLine(NStack.ustring) - name: MaxWidthLine(ustring) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_MaxWidthLine_NStack_ustring_ - commentId: M:Terminal.Gui.TextFormatter.MaxWidthLine(NStack.ustring) - fullName: Terminal.Gui.TextFormatter.MaxWidthLine(NStack.ustring) - nameWithType: TextFormatter.MaxWidthLine(ustring) -- uid: Terminal.Gui.TextFormatter.MaxWidthLine* - name: MaxWidthLine - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_MaxWidthLine_ - commentId: Overload:Terminal.Gui.TextFormatter.MaxWidthLine - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.MaxWidthLine - nameWithType: TextFormatter.MaxWidthLine -- uid: Terminal.Gui.TextFormatter.NeedsFormat - name: NeedsFormat - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_NeedsFormat - commentId: P:Terminal.Gui.TextFormatter.NeedsFormat - fullName: Terminal.Gui.TextFormatter.NeedsFormat - nameWithType: TextFormatter.NeedsFormat -- uid: Terminal.Gui.TextFormatter.NeedsFormat* - name: NeedsFormat - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_NeedsFormat_ - commentId: Overload:Terminal.Gui.TextFormatter.NeedsFormat - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.NeedsFormat - nameWithType: TextFormatter.NeedsFormat -- uid: Terminal.Gui.TextFormatter.PreserveTrailingSpaces - name: PreserveTrailingSpaces - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_PreserveTrailingSpaces - commentId: P:Terminal.Gui.TextFormatter.PreserveTrailingSpaces - fullName: Terminal.Gui.TextFormatter.PreserveTrailingSpaces - nameWithType: TextFormatter.PreserveTrailingSpaces -- uid: Terminal.Gui.TextFormatter.PreserveTrailingSpaces* - name: PreserveTrailingSpaces - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_PreserveTrailingSpaces_ - commentId: Overload:Terminal.Gui.TextFormatter.PreserveTrailingSpaces - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.PreserveTrailingSpaces - nameWithType: TextFormatter.PreserveTrailingSpaces -- uid: Terminal.Gui.TextFormatter.RemoveHotKeySpecifier(NStack.ustring,System.Int32,System.Rune) - name: RemoveHotKeySpecifier(ustring, Int32, Rune) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_RemoveHotKeySpecifier_NStack_ustring_System_Int32_System_Rune_ - commentId: M:Terminal.Gui.TextFormatter.RemoveHotKeySpecifier(NStack.ustring,System.Int32,System.Rune) - fullName: Terminal.Gui.TextFormatter.RemoveHotKeySpecifier(NStack.ustring, System.Int32, System.Rune) - nameWithType: TextFormatter.RemoveHotKeySpecifier(ustring, Int32, Rune) -- uid: Terminal.Gui.TextFormatter.RemoveHotKeySpecifier* - name: RemoveHotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_RemoveHotKeySpecifier_ - commentId: Overload:Terminal.Gui.TextFormatter.RemoveHotKeySpecifier - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.RemoveHotKeySpecifier - nameWithType: TextFormatter.RemoveHotKeySpecifier -- uid: Terminal.Gui.TextFormatter.ReplaceHotKeyWithTag(NStack.ustring,System.Int32) - name: ReplaceHotKeyWithTag(ustring, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ReplaceHotKeyWithTag_NStack_ustring_System_Int32_ - commentId: M:Terminal.Gui.TextFormatter.ReplaceHotKeyWithTag(NStack.ustring,System.Int32) - fullName: Terminal.Gui.TextFormatter.ReplaceHotKeyWithTag(NStack.ustring, System.Int32) - nameWithType: TextFormatter.ReplaceHotKeyWithTag(ustring, Int32) -- uid: Terminal.Gui.TextFormatter.ReplaceHotKeyWithTag* - name: ReplaceHotKeyWithTag - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_ReplaceHotKeyWithTag_ - commentId: Overload:Terminal.Gui.TextFormatter.ReplaceHotKeyWithTag - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.ReplaceHotKeyWithTag - nameWithType: TextFormatter.ReplaceHotKeyWithTag -- uid: Terminal.Gui.TextFormatter.Size - name: Size - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Size - commentId: P:Terminal.Gui.TextFormatter.Size - fullName: Terminal.Gui.TextFormatter.Size - nameWithType: TextFormatter.Size -- uid: Terminal.Gui.TextFormatter.Size* - name: Size - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Size_ - commentId: Overload:Terminal.Gui.TextFormatter.Size - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Size - nameWithType: TextFormatter.Size -- uid: Terminal.Gui.TextFormatter.SplitNewLine(NStack.ustring) - name: SplitNewLine(ustring) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_SplitNewLine_NStack_ustring_ - commentId: M:Terminal.Gui.TextFormatter.SplitNewLine(NStack.ustring) - fullName: Terminal.Gui.TextFormatter.SplitNewLine(NStack.ustring) - nameWithType: TextFormatter.SplitNewLine(ustring) -- uid: Terminal.Gui.TextFormatter.SplitNewLine* - name: SplitNewLine - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_SplitNewLine_ - commentId: Overload:Terminal.Gui.TextFormatter.SplitNewLine - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.SplitNewLine - nameWithType: TextFormatter.SplitNewLine -- uid: Terminal.Gui.TextFormatter.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Text - commentId: P:Terminal.Gui.TextFormatter.Text - fullName: Terminal.Gui.TextFormatter.Text - nameWithType: TextFormatter.Text -- uid: Terminal.Gui.TextFormatter.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_Text_ - commentId: Overload:Terminal.Gui.TextFormatter.Text - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.Text - nameWithType: TextFormatter.Text -- uid: Terminal.Gui.TextFormatter.VerticalAlignment - name: VerticalAlignment - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_VerticalAlignment - commentId: P:Terminal.Gui.TextFormatter.VerticalAlignment - fullName: Terminal.Gui.TextFormatter.VerticalAlignment - nameWithType: TextFormatter.VerticalAlignment -- uid: Terminal.Gui.TextFormatter.VerticalAlignment* - name: VerticalAlignment - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_VerticalAlignment_ - commentId: Overload:Terminal.Gui.TextFormatter.VerticalAlignment - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.VerticalAlignment - nameWithType: TextFormatter.VerticalAlignment -- uid: Terminal.Gui.TextFormatter.WordWrap(NStack.ustring,System.Int32,System.Boolean,System.Int32,Terminal.Gui.TextDirection) - name: WordWrap(ustring, Int32, Boolean, Int32, TextDirection) - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_WordWrap_NStack_ustring_System_Int32_System_Boolean_System_Int32_Terminal_Gui_TextDirection_ - commentId: M:Terminal.Gui.TextFormatter.WordWrap(NStack.ustring,System.Int32,System.Boolean,System.Int32,Terminal.Gui.TextDirection) - fullName: Terminal.Gui.TextFormatter.WordWrap(NStack.ustring, System.Int32, System.Boolean, System.Int32, Terminal.Gui.TextDirection) - nameWithType: TextFormatter.WordWrap(ustring, Int32, Boolean, Int32, TextDirection) -- uid: Terminal.Gui.TextFormatter.WordWrap* - name: WordWrap - href: api/Terminal.Gui/Terminal.Gui.TextFormatter.html#Terminal_Gui_TextFormatter_WordWrap_ - commentId: Overload:Terminal.Gui.TextFormatter.WordWrap - isSpec: "True" - fullName: Terminal.Gui.TextFormatter.WordWrap - nameWithType: TextFormatter.WordWrap -- uid: Terminal.Gui.TextValidateField - name: TextValidateField - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html - commentId: T:Terminal.Gui.TextValidateField - fullName: Terminal.Gui.TextValidateField - nameWithType: TextValidateField -- uid: Terminal.Gui.TextValidateField.#ctor - name: TextValidateField() - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField__ctor - commentId: M:Terminal.Gui.TextValidateField.#ctor - fullName: Terminal.Gui.TextValidateField.TextValidateField() - nameWithType: TextValidateField.TextValidateField() -- uid: Terminal.Gui.TextValidateField.#ctor(Terminal.Gui.TextValidateProviders.ITextValidateProvider) - name: TextValidateField(ITextValidateProvider) - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField__ctor_Terminal_Gui_TextValidateProviders_ITextValidateProvider_ - commentId: M:Terminal.Gui.TextValidateField.#ctor(Terminal.Gui.TextValidateProviders.ITextValidateProvider) - fullName: Terminal.Gui.TextValidateField.TextValidateField(Terminal.Gui.TextValidateProviders.ITextValidateProvider) - nameWithType: TextValidateField.TextValidateField(ITextValidateProvider) -- uid: Terminal.Gui.TextValidateField.#ctor* - name: TextValidateField - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField__ctor_ - commentId: Overload:Terminal.Gui.TextValidateField.#ctor - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.TextValidateField - nameWithType: TextValidateField.TextValidateField -- uid: Terminal.Gui.TextValidateField.IsValid - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_IsValid - commentId: P:Terminal.Gui.TextValidateField.IsValid - fullName: Terminal.Gui.TextValidateField.IsValid - nameWithType: TextValidateField.IsValid -- uid: Terminal.Gui.TextValidateField.IsValid* - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_IsValid_ - commentId: Overload:Terminal.Gui.TextValidateField.IsValid - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.IsValid - nameWithType: TextValidateField.IsValid -- uid: Terminal.Gui.TextValidateField.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.TextValidateField.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.TextValidateField.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: TextValidateField.MouseEvent(MouseEvent) -- uid: Terminal.Gui.TextValidateField.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_MouseEvent_ - commentId: Overload:Terminal.Gui.TextValidateField.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.MouseEvent - nameWithType: TextValidateField.MouseEvent -- uid: Terminal.Gui.TextValidateField.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_PositionCursor - commentId: M:Terminal.Gui.TextValidateField.PositionCursor - fullName: Terminal.Gui.TextValidateField.PositionCursor() - nameWithType: TextValidateField.PositionCursor() -- uid: Terminal.Gui.TextValidateField.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_PositionCursor_ - commentId: Overload:Terminal.Gui.TextValidateField.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.PositionCursor - nameWithType: TextValidateField.PositionCursor -- uid: Terminal.Gui.TextValidateField.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TextValidateField.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TextValidateField.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TextValidateField.ProcessKey(KeyEvent) -- uid: Terminal.Gui.TextValidateField.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_ProcessKey_ - commentId: Overload:Terminal.Gui.TextValidateField.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.ProcessKey - nameWithType: TextValidateField.ProcessKey -- uid: Terminal.Gui.TextValidateField.Provider - name: Provider - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_Provider - commentId: P:Terminal.Gui.TextValidateField.Provider - fullName: Terminal.Gui.TextValidateField.Provider - nameWithType: TextValidateField.Provider -- uid: Terminal.Gui.TextValidateField.Provider* - name: Provider - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_Provider_ - commentId: Overload:Terminal.Gui.TextValidateField.Provider - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.Provider - nameWithType: TextValidateField.Provider -- uid: Terminal.Gui.TextValidateField.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TextValidateField.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.TextValidateField.Redraw(Terminal.Gui.Rect) - nameWithType: TextValidateField.Redraw(Rect) -- uid: Terminal.Gui.TextValidateField.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_Redraw_ - commentId: Overload:Terminal.Gui.TextValidateField.Redraw - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.Redraw - nameWithType: TextValidateField.Redraw -- uid: Terminal.Gui.TextValidateField.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_Text - commentId: P:Terminal.Gui.TextValidateField.Text - fullName: Terminal.Gui.TextValidateField.Text - nameWithType: TextValidateField.Text -- uid: Terminal.Gui.TextValidateField.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateField.html#Terminal_Gui_TextValidateField_Text_ - commentId: Overload:Terminal.Gui.TextValidateField.Text - isSpec: "True" - fullName: Terminal.Gui.TextValidateField.Text - nameWithType: TextValidateField.Text -- uid: Terminal.Gui.TextValidateProviders - name: Terminal.Gui.TextValidateProviders - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html - commentId: N:Terminal.Gui.TextValidateProviders - fullName: Terminal.Gui.TextValidateProviders - nameWithType: Terminal.Gui.TextValidateProviders -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider - name: ITextValidateProvider - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html - commentId: T:Terminal.Gui.TextValidateProviders.ITextValidateProvider - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider - nameWithType: ITextValidateProvider -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Cursor(System.Int32) - name: Cursor(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Cursor_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Cursor(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Cursor(System.Int32) - nameWithType: ITextValidateProvider.Cursor(Int32) -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Cursor* - name: Cursor - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Cursor_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Cursor - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Cursor - nameWithType: ITextValidateProvider.Cursor -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorEnd - name: CursorEnd() - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorEnd - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorEnd - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorEnd() - nameWithType: ITextValidateProvider.CursorEnd() -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorEnd* - name: CursorEnd - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorEnd_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorEnd - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorEnd - nameWithType: ITextValidateProvider.CursorEnd -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorLeft(System.Int32) - name: CursorLeft(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorLeft_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorLeft(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorLeft(System.Int32) - nameWithType: ITextValidateProvider.CursorLeft(Int32) -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorLeft* - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorLeft_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorLeft - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorLeft - nameWithType: ITextValidateProvider.CursorLeft -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorRight(System.Int32) - name: CursorRight(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorRight_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorRight(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorRight(System.Int32) - nameWithType: ITextValidateProvider.CursorRight(Int32) -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorRight* - name: CursorRight - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorRight_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorRight - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorRight - nameWithType: ITextValidateProvider.CursorRight -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorStart - name: CursorStart() - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorStart - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorStart - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorStart() - nameWithType: ITextValidateProvider.CursorStart() -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorStart* - name: CursorStart - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_CursorStart_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorStart - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.CursorStart - nameWithType: ITextValidateProvider.CursorStart -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Delete(System.Int32) - name: Delete(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Delete_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Delete(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Delete(System.Int32) - nameWithType: ITextValidateProvider.Delete(Int32) -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Delete* - name: Delete - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Delete_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Delete - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Delete - nameWithType: ITextValidateProvider.Delete -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.DisplayText - name: DisplayText - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_DisplayText - commentId: P:Terminal.Gui.TextValidateProviders.ITextValidateProvider.DisplayText - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.DisplayText - nameWithType: ITextValidateProvider.DisplayText -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.DisplayText* - name: DisplayText - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_DisplayText_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.DisplayText - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.DisplayText - nameWithType: ITextValidateProvider.DisplayText -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Fixed - name: Fixed - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Fixed - commentId: P:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Fixed - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Fixed - nameWithType: ITextValidateProvider.Fixed -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Fixed* - name: Fixed - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Fixed_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Fixed - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Fixed - nameWithType: ITextValidateProvider.Fixed -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.InsertAt(System.Char,System.Int32) - name: InsertAt(Char, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_InsertAt_System_Char_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.ITextValidateProvider.InsertAt(System.Char,System.Int32) - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.InsertAt(System.Char, System.Int32) - nameWithType: ITextValidateProvider.InsertAt(Char, Int32) -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.InsertAt* - name: InsertAt - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_InsertAt_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.InsertAt - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.InsertAt - nameWithType: ITextValidateProvider.InsertAt -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.IsValid - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_IsValid - commentId: P:Terminal.Gui.TextValidateProviders.ITextValidateProvider.IsValid - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.IsValid - nameWithType: ITextValidateProvider.IsValid -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.IsValid* - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_IsValid_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.IsValid - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.IsValid - nameWithType: ITextValidateProvider.IsValid -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Text - commentId: P:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Text - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Text - nameWithType: ITextValidateProvider.Text -- uid: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html#Terminal_Gui_TextValidateProviders_ITextValidateProvider_Text_ - commentId: Overload:Terminal.Gui.TextValidateProviders.ITextValidateProvider.Text - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.ITextValidateProvider.Text - nameWithType: ITextValidateProvider.Text -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider - name: NetMaskedTextProvider - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html - commentId: T:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider - nameWithType: NetMaskedTextProvider -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.#ctor(System.String) - name: NetMaskedTextProvider(String) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider__ctor_System_String_ - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.#ctor(System.String) - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.NetMaskedTextProvider(System.String) - nameWithType: NetMaskedTextProvider.NetMaskedTextProvider(String) -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.#ctor* - name: NetMaskedTextProvider - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider__ctor_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.#ctor - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.NetMaskedTextProvider - nameWithType: NetMaskedTextProvider.NetMaskedTextProvider -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Cursor(System.Int32) - name: Cursor(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Cursor_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Cursor(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Cursor(System.Int32) - nameWithType: NetMaskedTextProvider.Cursor(Int32) -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Cursor* - name: Cursor - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Cursor_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Cursor - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Cursor - nameWithType: NetMaskedTextProvider.Cursor -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorEnd - name: CursorEnd() - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorEnd - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorEnd - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorEnd() - nameWithType: NetMaskedTextProvider.CursorEnd() -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorEnd* - name: CursorEnd - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorEnd_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorEnd - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorEnd - nameWithType: NetMaskedTextProvider.CursorEnd -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorLeft(System.Int32) - name: CursorLeft(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorLeft_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorLeft(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorLeft(System.Int32) - nameWithType: NetMaskedTextProvider.CursorLeft(Int32) -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorLeft* - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorLeft_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorLeft - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorLeft - nameWithType: NetMaskedTextProvider.CursorLeft -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorRight(System.Int32) - name: CursorRight(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorRight_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorRight(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorRight(System.Int32) - nameWithType: NetMaskedTextProvider.CursorRight(Int32) -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorRight* - name: CursorRight - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorRight_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorRight - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorRight - nameWithType: NetMaskedTextProvider.CursorRight -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorStart - name: CursorStart() - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorStart - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorStart - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorStart() - nameWithType: NetMaskedTextProvider.CursorStart() -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorStart* - name: CursorStart - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_CursorStart_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorStart - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.CursorStart - nameWithType: NetMaskedTextProvider.CursorStart -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Delete(System.Int32) - name: Delete(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Delete_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Delete(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Delete(System.Int32) - nameWithType: NetMaskedTextProvider.Delete(Int32) -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Delete* - name: Delete - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Delete_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Delete - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Delete - nameWithType: NetMaskedTextProvider.Delete -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.DisplayText - name: DisplayText - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_DisplayText - commentId: P:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.DisplayText - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.DisplayText - nameWithType: NetMaskedTextProvider.DisplayText -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.DisplayText* - name: DisplayText - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_DisplayText_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.DisplayText - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.DisplayText - nameWithType: NetMaskedTextProvider.DisplayText -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Fixed - name: Fixed - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Fixed - commentId: P:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Fixed - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Fixed - nameWithType: NetMaskedTextProvider.Fixed -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Fixed* - name: Fixed - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Fixed_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Fixed - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Fixed - nameWithType: NetMaskedTextProvider.Fixed -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.InsertAt(System.Char,System.Int32) - name: InsertAt(Char, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_InsertAt_System_Char_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.InsertAt(System.Char,System.Int32) - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.InsertAt(System.Char, System.Int32) - nameWithType: NetMaskedTextProvider.InsertAt(Char, Int32) -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.InsertAt* - name: InsertAt - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_InsertAt_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.InsertAt - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.InsertAt - nameWithType: NetMaskedTextProvider.InsertAt -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.IsValid - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_IsValid - commentId: P:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.IsValid - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.IsValid - nameWithType: NetMaskedTextProvider.IsValid -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.IsValid* - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_IsValid_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.IsValid - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.IsValid - nameWithType: NetMaskedTextProvider.IsValid -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Mask - name: Mask - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Mask - commentId: P:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Mask - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Mask - nameWithType: NetMaskedTextProvider.Mask -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Mask* - name: Mask - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Mask_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Mask - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Mask - nameWithType: NetMaskedTextProvider.Mask -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Text - commentId: P:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Text - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Text - nameWithType: NetMaskedTextProvider.Text -- uid: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html#Terminal_Gui_TextValidateProviders_NetMaskedTextProvider_Text_ - commentId: Overload:Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Text - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.Text - nameWithType: NetMaskedTextProvider.Text -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider - name: TextRegexProvider - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html - commentId: T:Terminal.Gui.TextValidateProviders.TextRegexProvider - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider - nameWithType: TextRegexProvider -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.#ctor(System.String) - name: TextRegexProvider(String) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider__ctor_System_String_ - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.#ctor(System.String) - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.TextRegexProvider(System.String) - nameWithType: TextRegexProvider.TextRegexProvider(String) -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.#ctor* - name: TextRegexProvider - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider__ctor_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.#ctor - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.TextRegexProvider - nameWithType: TextRegexProvider.TextRegexProvider -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Cursor(System.Int32) - name: Cursor(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Cursor_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.Cursor(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Cursor(System.Int32) - nameWithType: TextRegexProvider.Cursor(Int32) -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Cursor* - name: Cursor - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Cursor_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.Cursor - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Cursor - nameWithType: TextRegexProvider.Cursor -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorEnd - name: CursorEnd() - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorEnd - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorEnd - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorEnd() - nameWithType: TextRegexProvider.CursorEnd() -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorEnd* - name: CursorEnd - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorEnd_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorEnd - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorEnd - nameWithType: TextRegexProvider.CursorEnd -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorLeft(System.Int32) - name: CursorLeft(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorLeft_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorLeft(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorLeft(System.Int32) - nameWithType: TextRegexProvider.CursorLeft(Int32) -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorLeft* - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorLeft_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorLeft - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorLeft - nameWithType: TextRegexProvider.CursorLeft -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorRight(System.Int32) - name: CursorRight(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorRight_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorRight(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorRight(System.Int32) - nameWithType: TextRegexProvider.CursorRight(Int32) -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorRight* - name: CursorRight - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorRight_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorRight - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorRight - nameWithType: TextRegexProvider.CursorRight -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorStart - name: CursorStart() - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorStart - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorStart - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorStart() - nameWithType: TextRegexProvider.CursorStart() -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorStart* - name: CursorStart - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_CursorStart_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorStart - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.CursorStart - nameWithType: TextRegexProvider.CursorStart -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Delete(System.Int32) - name: Delete(Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Delete_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.Delete(System.Int32) - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Delete(System.Int32) - nameWithType: TextRegexProvider.Delete(Int32) -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Delete* - name: Delete - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Delete_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.Delete - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Delete - nameWithType: TextRegexProvider.Delete -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.DisplayText - name: DisplayText - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_DisplayText - commentId: P:Terminal.Gui.TextValidateProviders.TextRegexProvider.DisplayText - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.DisplayText - nameWithType: TextRegexProvider.DisplayText -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.DisplayText* - name: DisplayText - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_DisplayText_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.DisplayText - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.DisplayText - nameWithType: TextRegexProvider.DisplayText -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Fixed - name: Fixed - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Fixed - commentId: P:Terminal.Gui.TextValidateProviders.TextRegexProvider.Fixed - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Fixed - nameWithType: TextRegexProvider.Fixed -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Fixed* - name: Fixed - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Fixed_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.Fixed - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Fixed - nameWithType: TextRegexProvider.Fixed -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.InsertAt(System.Char,System.Int32) - name: InsertAt(Char, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_InsertAt_System_Char_System_Int32_ - commentId: M:Terminal.Gui.TextValidateProviders.TextRegexProvider.InsertAt(System.Char,System.Int32) - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.InsertAt(System.Char, System.Int32) - nameWithType: TextRegexProvider.InsertAt(Char, Int32) -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.InsertAt* - name: InsertAt - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_InsertAt_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.InsertAt - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.InsertAt - nameWithType: TextRegexProvider.InsertAt -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.IsValid - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_IsValid - commentId: P:Terminal.Gui.TextValidateProviders.TextRegexProvider.IsValid - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.IsValid - nameWithType: TextRegexProvider.IsValid -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.IsValid* - name: IsValid - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_IsValid_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.IsValid - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.IsValid - nameWithType: TextRegexProvider.IsValid -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Pattern - name: Pattern - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Pattern - commentId: P:Terminal.Gui.TextValidateProviders.TextRegexProvider.Pattern - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Pattern - nameWithType: TextRegexProvider.Pattern -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Pattern* - name: Pattern - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Pattern_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.Pattern - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Pattern - nameWithType: TextRegexProvider.Pattern -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Text - commentId: P:Terminal.Gui.TextValidateProviders.TextRegexProvider.Text - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Text - nameWithType: TextRegexProvider.Text -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_Text_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.Text - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.Text - nameWithType: TextRegexProvider.Text -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.ValidateOnInput - name: ValidateOnInput - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_ValidateOnInput - commentId: P:Terminal.Gui.TextValidateProviders.TextRegexProvider.ValidateOnInput - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.ValidateOnInput - nameWithType: TextRegexProvider.ValidateOnInput -- uid: Terminal.Gui.TextValidateProviders.TextRegexProvider.ValidateOnInput* - name: ValidateOnInput - href: api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html#Terminal_Gui_TextValidateProviders_TextRegexProvider_ValidateOnInput_ - commentId: Overload:Terminal.Gui.TextValidateProviders.TextRegexProvider.ValidateOnInput - isSpec: "True" - fullName: Terminal.Gui.TextValidateProviders.TextRegexProvider.ValidateOnInput - nameWithType: TextRegexProvider.ValidateOnInput -- uid: Terminal.Gui.TextView - name: TextView - href: api/Terminal.Gui/Terminal.Gui.TextView.html - commentId: T:Terminal.Gui.TextView - fullName: Terminal.Gui.TextView - nameWithType: TextView -- uid: Terminal.Gui.TextView.#ctor - name: TextView() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView__ctor - commentId: M:Terminal.Gui.TextView.#ctor - fullName: Terminal.Gui.TextView.TextView() - nameWithType: TextView.TextView() -- uid: Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect) - name: TextView(Rect) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.TextView.TextView(Terminal.Gui.Rect) - nameWithType: TextView.TextView(Rect) -- uid: Terminal.Gui.TextView.#ctor* - name: TextView - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView__ctor_ - commentId: Overload:Terminal.Gui.TextView.#ctor - isSpec: "True" - fullName: Terminal.Gui.TextView.TextView - nameWithType: TextView.TextView -- uid: Terminal.Gui.TextView.AllowsReturn - name: AllowsReturn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_AllowsReturn - commentId: P:Terminal.Gui.TextView.AllowsReturn - fullName: Terminal.Gui.TextView.AllowsReturn - nameWithType: TextView.AllowsReturn -- uid: Terminal.Gui.TextView.AllowsReturn* - name: AllowsReturn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_AllowsReturn_ - commentId: Overload:Terminal.Gui.TextView.AllowsReturn - isSpec: "True" - fullName: Terminal.Gui.TextView.AllowsReturn - nameWithType: TextView.AllowsReturn -- uid: Terminal.Gui.TextView.AllowsTab - name: AllowsTab - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_AllowsTab - commentId: P:Terminal.Gui.TextView.AllowsTab - fullName: Terminal.Gui.TextView.AllowsTab - nameWithType: TextView.AllowsTab -- uid: Terminal.Gui.TextView.AllowsTab* - name: AllowsTab - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_AllowsTab_ - commentId: Overload:Terminal.Gui.TextView.AllowsTab - isSpec: "True" - fullName: Terminal.Gui.TextView.AllowsTab - nameWithType: TextView.AllowsTab -- uid: Terminal.Gui.TextView.Autocomplete - name: Autocomplete - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Autocomplete - commentId: P:Terminal.Gui.TextView.Autocomplete - fullName: Terminal.Gui.TextView.Autocomplete - nameWithType: TextView.Autocomplete -- uid: Terminal.Gui.TextView.Autocomplete* - name: Autocomplete - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Autocomplete_ - commentId: Overload:Terminal.Gui.TextView.Autocomplete - isSpec: "True" - fullName: Terminal.Gui.TextView.Autocomplete - nameWithType: TextView.Autocomplete -- uid: Terminal.Gui.TextView.BottomOffset - name: BottomOffset - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_BottomOffset - commentId: P:Terminal.Gui.TextView.BottomOffset - fullName: Terminal.Gui.TextView.BottomOffset - nameWithType: TextView.BottomOffset -- uid: Terminal.Gui.TextView.BottomOffset* - name: BottomOffset - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_BottomOffset_ - commentId: Overload:Terminal.Gui.TextView.BottomOffset - isSpec: "True" - fullName: Terminal.Gui.TextView.BottomOffset - nameWithType: TextView.BottomOffset -- uid: Terminal.Gui.TextView.CanFocus - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CanFocus - commentId: P:Terminal.Gui.TextView.CanFocus - fullName: Terminal.Gui.TextView.CanFocus - nameWithType: TextView.CanFocus -- uid: Terminal.Gui.TextView.CanFocus* - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CanFocus_ - commentId: Overload:Terminal.Gui.TextView.CanFocus - isSpec: "True" - fullName: Terminal.Gui.TextView.CanFocus - nameWithType: TextView.CanFocus -- uid: Terminal.Gui.TextView.ClearHistoryChanges - name: ClearHistoryChanges() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ClearHistoryChanges - commentId: M:Terminal.Gui.TextView.ClearHistoryChanges - fullName: Terminal.Gui.TextView.ClearHistoryChanges() - nameWithType: TextView.ClearHistoryChanges() -- uid: Terminal.Gui.TextView.ClearHistoryChanges* - name: ClearHistoryChanges - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ClearHistoryChanges_ - commentId: Overload:Terminal.Gui.TextView.ClearHistoryChanges - isSpec: "True" - fullName: Terminal.Gui.TextView.ClearHistoryChanges - nameWithType: TextView.ClearHistoryChanges -- uid: Terminal.Gui.TextView.CloseFile - name: CloseFile() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CloseFile - commentId: M:Terminal.Gui.TextView.CloseFile - fullName: Terminal.Gui.TextView.CloseFile() - nameWithType: TextView.CloseFile() -- uid: Terminal.Gui.TextView.CloseFile* - name: CloseFile - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CloseFile_ - commentId: Overload:Terminal.Gui.TextView.CloseFile - isSpec: "True" - fullName: Terminal.Gui.TextView.CloseFile - nameWithType: TextView.CloseFile -- uid: Terminal.Gui.TextView.ContextMenu - name: ContextMenu - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ContextMenu - commentId: P:Terminal.Gui.TextView.ContextMenu - fullName: Terminal.Gui.TextView.ContextMenu - nameWithType: TextView.ContextMenu -- uid: Terminal.Gui.TextView.ContextMenu* - name: ContextMenu - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ContextMenu_ - commentId: Overload:Terminal.Gui.TextView.ContextMenu - isSpec: "True" - fullName: Terminal.Gui.TextView.ContextMenu - nameWithType: TextView.ContextMenu -- uid: Terminal.Gui.TextView.Copy - name: Copy() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Copy - commentId: M:Terminal.Gui.TextView.Copy - fullName: Terminal.Gui.TextView.Copy() - nameWithType: TextView.Copy() -- uid: Terminal.Gui.TextView.Copy* - name: Copy - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Copy_ - commentId: Overload:Terminal.Gui.TextView.Copy - isSpec: "True" - fullName: Terminal.Gui.TextView.Copy - nameWithType: TextView.Copy -- uid: Terminal.Gui.TextView.CurrentColumn - name: CurrentColumn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentColumn - commentId: P:Terminal.Gui.TextView.CurrentColumn - fullName: Terminal.Gui.TextView.CurrentColumn - nameWithType: TextView.CurrentColumn -- uid: Terminal.Gui.TextView.CurrentColumn* - name: CurrentColumn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentColumn_ - commentId: Overload:Terminal.Gui.TextView.CurrentColumn - isSpec: "True" - fullName: Terminal.Gui.TextView.CurrentColumn - nameWithType: TextView.CurrentColumn -- uid: Terminal.Gui.TextView.CurrentRow - name: CurrentRow - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentRow - commentId: P:Terminal.Gui.TextView.CurrentRow - fullName: Terminal.Gui.TextView.CurrentRow - nameWithType: TextView.CurrentRow -- uid: Terminal.Gui.TextView.CurrentRow* - name: CurrentRow - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentRow_ - commentId: Overload:Terminal.Gui.TextView.CurrentRow - isSpec: "True" - fullName: Terminal.Gui.TextView.CurrentRow - nameWithType: TextView.CurrentRow -- uid: Terminal.Gui.TextView.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CursorPosition - commentId: P:Terminal.Gui.TextView.CursorPosition - fullName: Terminal.Gui.TextView.CursorPosition - nameWithType: TextView.CursorPosition -- uid: Terminal.Gui.TextView.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CursorPosition_ - commentId: Overload:Terminal.Gui.TextView.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.TextView.CursorPosition - nameWithType: TextView.CursorPosition -- uid: Terminal.Gui.TextView.Cut - name: Cut() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Cut - commentId: M:Terminal.Gui.TextView.Cut - fullName: Terminal.Gui.TextView.Cut() - nameWithType: TextView.Cut() -- uid: Terminal.Gui.TextView.Cut* - name: Cut - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Cut_ - commentId: Overload:Terminal.Gui.TextView.Cut - isSpec: "True" - fullName: Terminal.Gui.TextView.Cut - nameWithType: TextView.Cut -- uid: Terminal.Gui.TextView.DeleteAll - name: DeleteAll() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DeleteAll - commentId: M:Terminal.Gui.TextView.DeleteAll - fullName: Terminal.Gui.TextView.DeleteAll() - nameWithType: TextView.DeleteAll() -- uid: Terminal.Gui.TextView.DeleteAll* - name: DeleteAll - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DeleteAll_ - commentId: Overload:Terminal.Gui.TextView.DeleteAll - isSpec: "True" - fullName: Terminal.Gui.TextView.DeleteAll - nameWithType: TextView.DeleteAll -- uid: Terminal.Gui.TextView.DeleteCharLeft - name: DeleteCharLeft() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DeleteCharLeft - commentId: M:Terminal.Gui.TextView.DeleteCharLeft - fullName: Terminal.Gui.TextView.DeleteCharLeft() - nameWithType: TextView.DeleteCharLeft() -- uid: Terminal.Gui.TextView.DeleteCharLeft* - name: DeleteCharLeft - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DeleteCharLeft_ - commentId: Overload:Terminal.Gui.TextView.DeleteCharLeft - isSpec: "True" - fullName: Terminal.Gui.TextView.DeleteCharLeft - nameWithType: TextView.DeleteCharLeft -- uid: Terminal.Gui.TextView.DeleteCharRight - name: DeleteCharRight() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DeleteCharRight - commentId: M:Terminal.Gui.TextView.DeleteCharRight - fullName: Terminal.Gui.TextView.DeleteCharRight() - nameWithType: TextView.DeleteCharRight() -- uid: Terminal.Gui.TextView.DeleteCharRight* - name: DeleteCharRight - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DeleteCharRight_ - commentId: Overload:Terminal.Gui.TextView.DeleteCharRight - isSpec: "True" - fullName: Terminal.Gui.TextView.DeleteCharRight - nameWithType: TextView.DeleteCharRight -- uid: Terminal.Gui.TextView.DesiredCursorVisibility - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DesiredCursorVisibility - commentId: P:Terminal.Gui.TextView.DesiredCursorVisibility - fullName: Terminal.Gui.TextView.DesiredCursorVisibility - nameWithType: TextView.DesiredCursorVisibility -- uid: Terminal.Gui.TextView.DesiredCursorVisibility* - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_DesiredCursorVisibility_ - commentId: Overload:Terminal.Gui.TextView.DesiredCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.TextView.DesiredCursorVisibility - nameWithType: TextView.DesiredCursorVisibility -- uid: Terminal.Gui.TextView.FindNextText(NStack.ustring,System.Boolean@,System.Boolean,System.Boolean,NStack.ustring,System.Boolean) - name: FindNextText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_FindNextText_NStack_ustring_System_Boolean__System_Boolean_System_Boolean_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.TextView.FindNextText(NStack.ustring,System.Boolean@,System.Boolean,System.Boolean,NStack.ustring,System.Boolean) - name.vb: FindNextText(ustring, ByRef Boolean, Boolean, Boolean, ustring, Boolean) - fullName: Terminal.Gui.TextView.FindNextText(NStack.ustring, out System.Boolean, System.Boolean, System.Boolean, NStack.ustring, System.Boolean) - fullName.vb: Terminal.Gui.TextView.FindNextText(NStack.ustring, ByRef System.Boolean, System.Boolean, System.Boolean, NStack.ustring, System.Boolean) - nameWithType: TextView.FindNextText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean) - nameWithType.vb: TextView.FindNextText(ustring, ByRef Boolean, Boolean, Boolean, ustring, Boolean) -- uid: Terminal.Gui.TextView.FindNextText* - name: FindNextText - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_FindNextText_ - commentId: Overload:Terminal.Gui.TextView.FindNextText - isSpec: "True" - fullName: Terminal.Gui.TextView.FindNextText - nameWithType: TextView.FindNextText -- uid: Terminal.Gui.TextView.FindPreviousText(NStack.ustring,System.Boolean@,System.Boolean,System.Boolean,NStack.ustring,System.Boolean) - name: FindPreviousText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_FindPreviousText_NStack_ustring_System_Boolean__System_Boolean_System_Boolean_NStack_ustring_System_Boolean_ - commentId: M:Terminal.Gui.TextView.FindPreviousText(NStack.ustring,System.Boolean@,System.Boolean,System.Boolean,NStack.ustring,System.Boolean) - name.vb: FindPreviousText(ustring, ByRef Boolean, Boolean, Boolean, ustring, Boolean) - fullName: Terminal.Gui.TextView.FindPreviousText(NStack.ustring, out System.Boolean, System.Boolean, System.Boolean, NStack.ustring, System.Boolean) - fullName.vb: Terminal.Gui.TextView.FindPreviousText(NStack.ustring, ByRef System.Boolean, System.Boolean, System.Boolean, NStack.ustring, System.Boolean) - nameWithType: TextView.FindPreviousText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean) - nameWithType.vb: TextView.FindPreviousText(ustring, ByRef Boolean, Boolean, Boolean, ustring, Boolean) -- uid: Terminal.Gui.TextView.FindPreviousText* - name: FindPreviousText - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_FindPreviousText_ - commentId: Overload:Terminal.Gui.TextView.FindPreviousText - isSpec: "True" - fullName: Terminal.Gui.TextView.FindPreviousText - nameWithType: TextView.FindPreviousText -- uid: Terminal.Gui.TextView.FindTextChanged - name: FindTextChanged() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_FindTextChanged - commentId: M:Terminal.Gui.TextView.FindTextChanged - fullName: Terminal.Gui.TextView.FindTextChanged() - nameWithType: TextView.FindTextChanged() -- uid: Terminal.Gui.TextView.FindTextChanged* - name: FindTextChanged - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_FindTextChanged_ - commentId: Overload:Terminal.Gui.TextView.FindTextChanged - isSpec: "True" - fullName: Terminal.Gui.TextView.FindTextChanged - nameWithType: TextView.FindTextChanged -- uid: Terminal.Gui.TextView.Frame - name: Frame - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Frame - commentId: P:Terminal.Gui.TextView.Frame - fullName: Terminal.Gui.TextView.Frame - nameWithType: TextView.Frame -- uid: Terminal.Gui.TextView.Frame* - name: Frame - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Frame_ - commentId: Overload:Terminal.Gui.TextView.Frame - isSpec: "True" - fullName: Terminal.Gui.TextView.Frame - nameWithType: TextView.Frame -- uid: Terminal.Gui.TextView.GetCurrentLine - name: GetCurrentLine() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_GetCurrentLine - commentId: M:Terminal.Gui.TextView.GetCurrentLine - fullName: Terminal.Gui.TextView.GetCurrentLine() - nameWithType: TextView.GetCurrentLine() -- uid: Terminal.Gui.TextView.GetCurrentLine* - name: GetCurrentLine - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_GetCurrentLine_ - commentId: Overload:Terminal.Gui.TextView.GetCurrentLine - isSpec: "True" - fullName: Terminal.Gui.TextView.GetCurrentLine - nameWithType: TextView.GetCurrentLine -- uid: Terminal.Gui.TextView.GetNormalColor - name: GetNormalColor() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_GetNormalColor - commentId: M:Terminal.Gui.TextView.GetNormalColor - fullName: Terminal.Gui.TextView.GetNormalColor() - nameWithType: TextView.GetNormalColor() -- uid: Terminal.Gui.TextView.GetNormalColor* - name: GetNormalColor - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_GetNormalColor_ - commentId: Overload:Terminal.Gui.TextView.GetNormalColor - isSpec: "True" - fullName: Terminal.Gui.TextView.GetNormalColor - nameWithType: TextView.GetNormalColor -- uid: Terminal.Gui.TextView.HasHistoryChanges - name: HasHistoryChanges - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_HasHistoryChanges - commentId: P:Terminal.Gui.TextView.HasHistoryChanges - fullName: Terminal.Gui.TextView.HasHistoryChanges - nameWithType: TextView.HasHistoryChanges -- uid: Terminal.Gui.TextView.HasHistoryChanges* - name: HasHistoryChanges - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_HasHistoryChanges_ - commentId: Overload:Terminal.Gui.TextView.HasHistoryChanges - isSpec: "True" - fullName: Terminal.Gui.TextView.HasHistoryChanges - nameWithType: TextView.HasHistoryChanges -- uid: Terminal.Gui.TextView.InsertText(System.String) - name: InsertText(String) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_InsertText_System_String_ - commentId: M:Terminal.Gui.TextView.InsertText(System.String) - fullName: Terminal.Gui.TextView.InsertText(System.String) - nameWithType: TextView.InsertText(String) -- uid: Terminal.Gui.TextView.InsertText* - name: InsertText - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_InsertText_ - commentId: Overload:Terminal.Gui.TextView.InsertText - isSpec: "True" - fullName: Terminal.Gui.TextView.InsertText - nameWithType: TextView.InsertText -- uid: Terminal.Gui.TextView.IsDirty - name: IsDirty - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_IsDirty - commentId: P:Terminal.Gui.TextView.IsDirty - fullName: Terminal.Gui.TextView.IsDirty - nameWithType: TextView.IsDirty -- uid: Terminal.Gui.TextView.IsDirty* - name: IsDirty - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_IsDirty_ - commentId: Overload:Terminal.Gui.TextView.IsDirty - isSpec: "True" - fullName: Terminal.Gui.TextView.IsDirty - nameWithType: TextView.IsDirty -- uid: Terminal.Gui.TextView.LeftColumn - name: LeftColumn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_LeftColumn - commentId: P:Terminal.Gui.TextView.LeftColumn - fullName: Terminal.Gui.TextView.LeftColumn - nameWithType: TextView.LeftColumn -- uid: Terminal.Gui.TextView.LeftColumn* - name: LeftColumn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_LeftColumn_ - commentId: Overload:Terminal.Gui.TextView.LeftColumn - isSpec: "True" - fullName: Terminal.Gui.TextView.LeftColumn - nameWithType: TextView.LeftColumn -- uid: Terminal.Gui.TextView.Lines - name: Lines - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Lines - commentId: P:Terminal.Gui.TextView.Lines - fullName: Terminal.Gui.TextView.Lines - nameWithType: TextView.Lines -- uid: Terminal.Gui.TextView.Lines* - name: Lines - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Lines_ - commentId: Overload:Terminal.Gui.TextView.Lines - isSpec: "True" - fullName: Terminal.Gui.TextView.Lines - nameWithType: TextView.Lines -- uid: Terminal.Gui.TextView.LoadFile(System.String) - name: LoadFile(String) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_LoadFile_System_String_ - commentId: M:Terminal.Gui.TextView.LoadFile(System.String) - fullName: Terminal.Gui.TextView.LoadFile(System.String) - nameWithType: TextView.LoadFile(String) -- uid: Terminal.Gui.TextView.LoadFile* - name: LoadFile - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_LoadFile_ - commentId: Overload:Terminal.Gui.TextView.LoadFile - isSpec: "True" - fullName: Terminal.Gui.TextView.LoadFile - nameWithType: TextView.LoadFile -- uid: Terminal.Gui.TextView.LoadStream(System.IO.Stream) - name: LoadStream(Stream) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_LoadStream_System_IO_Stream_ - commentId: M:Terminal.Gui.TextView.LoadStream(System.IO.Stream) - fullName: Terminal.Gui.TextView.LoadStream(System.IO.Stream) - nameWithType: TextView.LoadStream(Stream) -- uid: Terminal.Gui.TextView.LoadStream* - name: LoadStream - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_LoadStream_ - commentId: Overload:Terminal.Gui.TextView.LoadStream - isSpec: "True" - fullName: Terminal.Gui.TextView.LoadStream - nameWithType: TextView.LoadStream -- uid: Terminal.Gui.TextView.Maxlength - name: Maxlength - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Maxlength - commentId: P:Terminal.Gui.TextView.Maxlength - fullName: Terminal.Gui.TextView.Maxlength - nameWithType: TextView.Maxlength -- uid: Terminal.Gui.TextView.Maxlength* - name: Maxlength - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Maxlength_ - commentId: Overload:Terminal.Gui.TextView.Maxlength - isSpec: "True" - fullName: Terminal.Gui.TextView.Maxlength - nameWithType: TextView.Maxlength -- uid: Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: TextView.MouseEvent(MouseEvent) -- uid: Terminal.Gui.TextView.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_MouseEvent_ - commentId: Overload:Terminal.Gui.TextView.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.TextView.MouseEvent - nameWithType: TextView.MouseEvent -- uid: Terminal.Gui.TextView.MoveEnd - name: MoveEnd() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_MoveEnd - commentId: M:Terminal.Gui.TextView.MoveEnd - fullName: Terminal.Gui.TextView.MoveEnd() - nameWithType: TextView.MoveEnd() -- uid: Terminal.Gui.TextView.MoveEnd* - name: MoveEnd - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_MoveEnd_ - commentId: Overload:Terminal.Gui.TextView.MoveEnd - isSpec: "True" - fullName: Terminal.Gui.TextView.MoveEnd - nameWithType: TextView.MoveEnd -- uid: Terminal.Gui.TextView.MoveHome - name: MoveHome() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_MoveHome - commentId: M:Terminal.Gui.TextView.MoveHome - fullName: Terminal.Gui.TextView.MoveHome() - nameWithType: TextView.MoveHome() -- uid: Terminal.Gui.TextView.MoveHome* - name: MoveHome - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_MoveHome_ - commentId: Overload:Terminal.Gui.TextView.MoveHome - isSpec: "True" - fullName: Terminal.Gui.TextView.MoveHome - nameWithType: TextView.MoveHome -- uid: Terminal.Gui.TextView.Multiline - name: Multiline - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Multiline - commentId: P:Terminal.Gui.TextView.Multiline - fullName: Terminal.Gui.TextView.Multiline - nameWithType: TextView.Multiline -- uid: Terminal.Gui.TextView.Multiline* - name: Multiline - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Multiline_ - commentId: Overload:Terminal.Gui.TextView.Multiline - isSpec: "True" - fullName: Terminal.Gui.TextView.Multiline - nameWithType: TextView.Multiline -- uid: Terminal.Gui.TextView.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.TextView.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.TextView.OnEnter(Terminal.Gui.View) - nameWithType: TextView.OnEnter(View) -- uid: Terminal.Gui.TextView.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnEnter_ - commentId: Overload:Terminal.Gui.TextView.OnEnter - isSpec: "True" - fullName: Terminal.Gui.TextView.OnEnter - nameWithType: TextView.OnEnter -- uid: Terminal.Gui.TextView.OnKeyUp(Terminal.Gui.KeyEvent) - name: OnKeyUp(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnKeyUp_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TextView.OnKeyUp(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TextView.OnKeyUp(Terminal.Gui.KeyEvent) - nameWithType: TextView.OnKeyUp(KeyEvent) -- uid: Terminal.Gui.TextView.OnKeyUp* - name: OnKeyUp - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnKeyUp_ - commentId: Overload:Terminal.Gui.TextView.OnKeyUp - isSpec: "True" - fullName: Terminal.Gui.TextView.OnKeyUp - nameWithType: TextView.OnKeyUp -- uid: Terminal.Gui.TextView.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.TextView.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.TextView.OnLeave(Terminal.Gui.View) - nameWithType: TextView.OnLeave(View) -- uid: Terminal.Gui.TextView.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnLeave_ - commentId: Overload:Terminal.Gui.TextView.OnLeave - isSpec: "True" - fullName: Terminal.Gui.TextView.OnLeave - nameWithType: TextView.OnLeave -- uid: Terminal.Gui.TextView.OnUnwrappedCursorPosition(System.Nullable{System.Int32},System.Nullable{System.Int32}) - name: OnUnwrappedCursorPosition(Nullable, Nullable) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnUnwrappedCursorPosition_System_Nullable_System_Int32__System_Nullable_System_Int32__ - commentId: M:Terminal.Gui.TextView.OnUnwrappedCursorPosition(System.Nullable{System.Int32},System.Nullable{System.Int32}) - name.vb: OnUnwrappedCursorPosition(Nullable(Of Int32), Nullable(Of Int32)) - fullName: Terminal.Gui.TextView.OnUnwrappedCursorPosition(System.Nullable, System.Nullable) - fullName.vb: Terminal.Gui.TextView.OnUnwrappedCursorPosition(System.Nullable(Of System.Int32), System.Nullable(Of System.Int32)) - nameWithType: TextView.OnUnwrappedCursorPosition(Nullable, Nullable) - nameWithType.vb: TextView.OnUnwrappedCursorPosition(Nullable(Of Int32), Nullable(Of Int32)) -- uid: Terminal.Gui.TextView.OnUnwrappedCursorPosition* - name: OnUnwrappedCursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_OnUnwrappedCursorPosition_ - commentId: Overload:Terminal.Gui.TextView.OnUnwrappedCursorPosition - isSpec: "True" - fullName: Terminal.Gui.TextView.OnUnwrappedCursorPosition - nameWithType: TextView.OnUnwrappedCursorPosition -- uid: Terminal.Gui.TextView.Paste - name: Paste() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Paste - commentId: M:Terminal.Gui.TextView.Paste - fullName: Terminal.Gui.TextView.Paste() - nameWithType: TextView.Paste() -- uid: Terminal.Gui.TextView.Paste* - name: Paste - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Paste_ - commentId: Overload:Terminal.Gui.TextView.Paste - isSpec: "True" - fullName: Terminal.Gui.TextView.Paste - nameWithType: TextView.Paste -- uid: Terminal.Gui.TextView.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_PositionCursor - commentId: M:Terminal.Gui.TextView.PositionCursor - fullName: Terminal.Gui.TextView.PositionCursor() - nameWithType: TextView.PositionCursor() -- uid: Terminal.Gui.TextView.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_PositionCursor_ - commentId: Overload:Terminal.Gui.TextView.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.TextView.PositionCursor - nameWithType: TextView.PositionCursor -- uid: Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TextView.ProcessKey(KeyEvent) -- uid: Terminal.Gui.TextView.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ProcessKey_ - commentId: Overload:Terminal.Gui.TextView.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TextView.ProcessKey - nameWithType: TextView.ProcessKey -- uid: Terminal.Gui.TextView.ReadOnly - name: ReadOnly - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ReadOnly - commentId: P:Terminal.Gui.TextView.ReadOnly - fullName: Terminal.Gui.TextView.ReadOnly - nameWithType: TextView.ReadOnly -- uid: Terminal.Gui.TextView.ReadOnly* - name: ReadOnly - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ReadOnly_ - commentId: Overload:Terminal.Gui.TextView.ReadOnly - isSpec: "True" - fullName: Terminal.Gui.TextView.ReadOnly - nameWithType: TextView.ReadOnly -- uid: Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) - nameWithType: TextView.Redraw(Rect) -- uid: Terminal.Gui.TextView.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Redraw_ - commentId: Overload:Terminal.Gui.TextView.Redraw - isSpec: "True" - fullName: Terminal.Gui.TextView.Redraw - nameWithType: TextView.Redraw -- uid: Terminal.Gui.TextView.ReplaceAllText(NStack.ustring,System.Boolean,System.Boolean,NStack.ustring) - name: ReplaceAllText(ustring, Boolean, Boolean, ustring) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ReplaceAllText_NStack_ustring_System_Boolean_System_Boolean_NStack_ustring_ - commentId: M:Terminal.Gui.TextView.ReplaceAllText(NStack.ustring,System.Boolean,System.Boolean,NStack.ustring) - fullName: Terminal.Gui.TextView.ReplaceAllText(NStack.ustring, System.Boolean, System.Boolean, NStack.ustring) - nameWithType: TextView.ReplaceAllText(ustring, Boolean, Boolean, ustring) -- uid: Terminal.Gui.TextView.ReplaceAllText* - name: ReplaceAllText - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ReplaceAllText_ - commentId: Overload:Terminal.Gui.TextView.ReplaceAllText - isSpec: "True" - fullName: Terminal.Gui.TextView.ReplaceAllText - nameWithType: TextView.ReplaceAllText -- uid: Terminal.Gui.TextView.RightOffset - name: RightOffset - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_RightOffset - commentId: P:Terminal.Gui.TextView.RightOffset - fullName: Terminal.Gui.TextView.RightOffset - nameWithType: TextView.RightOffset -- uid: Terminal.Gui.TextView.RightOffset* - name: RightOffset - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_RightOffset_ - commentId: Overload:Terminal.Gui.TextView.RightOffset - isSpec: "True" - fullName: Terminal.Gui.TextView.RightOffset - nameWithType: TextView.RightOffset -- uid: Terminal.Gui.TextView.ScrollTo(System.Int32,System.Boolean) - name: ScrollTo(Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ScrollTo_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.TextView.ScrollTo(System.Int32,System.Boolean) - fullName: Terminal.Gui.TextView.ScrollTo(System.Int32, System.Boolean) - nameWithType: TextView.ScrollTo(Int32, Boolean) -- uid: Terminal.Gui.TextView.ScrollTo* - name: ScrollTo - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ScrollTo_ - commentId: Overload:Terminal.Gui.TextView.ScrollTo - isSpec: "True" - fullName: Terminal.Gui.TextView.ScrollTo - nameWithType: TextView.ScrollTo -- uid: Terminal.Gui.TextView.SelectAll - name: SelectAll() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectAll - commentId: M:Terminal.Gui.TextView.SelectAll - fullName: Terminal.Gui.TextView.SelectAll() - nameWithType: TextView.SelectAll() -- uid: Terminal.Gui.TextView.SelectAll* - name: SelectAll - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectAll_ - commentId: Overload:Terminal.Gui.TextView.SelectAll - isSpec: "True" - fullName: Terminal.Gui.TextView.SelectAll - nameWithType: TextView.SelectAll -- uid: Terminal.Gui.TextView.SelectedLength - name: SelectedLength - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectedLength - commentId: P:Terminal.Gui.TextView.SelectedLength - fullName: Terminal.Gui.TextView.SelectedLength - nameWithType: TextView.SelectedLength -- uid: Terminal.Gui.TextView.SelectedLength* - name: SelectedLength - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectedLength_ - commentId: Overload:Terminal.Gui.TextView.SelectedLength - isSpec: "True" - fullName: Terminal.Gui.TextView.SelectedLength - nameWithType: TextView.SelectedLength -- uid: Terminal.Gui.TextView.SelectedText - name: SelectedText - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectedText - commentId: P:Terminal.Gui.TextView.SelectedText - fullName: Terminal.Gui.TextView.SelectedText - nameWithType: TextView.SelectedText -- uid: Terminal.Gui.TextView.SelectedText* - name: SelectedText - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectedText_ - commentId: Overload:Terminal.Gui.TextView.SelectedText - isSpec: "True" - fullName: Terminal.Gui.TextView.SelectedText - nameWithType: TextView.SelectedText -- uid: Terminal.Gui.TextView.Selecting - name: Selecting - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Selecting - commentId: P:Terminal.Gui.TextView.Selecting - fullName: Terminal.Gui.TextView.Selecting - nameWithType: TextView.Selecting -- uid: Terminal.Gui.TextView.Selecting* - name: Selecting - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Selecting_ - commentId: Overload:Terminal.Gui.TextView.Selecting - isSpec: "True" - fullName: Terminal.Gui.TextView.Selecting - nameWithType: TextView.Selecting -- uid: Terminal.Gui.TextView.SelectionStartColumn - name: SelectionStartColumn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectionStartColumn - commentId: P:Terminal.Gui.TextView.SelectionStartColumn - fullName: Terminal.Gui.TextView.SelectionStartColumn - nameWithType: TextView.SelectionStartColumn -- uid: Terminal.Gui.TextView.SelectionStartColumn* - name: SelectionStartColumn - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectionStartColumn_ - commentId: Overload:Terminal.Gui.TextView.SelectionStartColumn - isSpec: "True" - fullName: Terminal.Gui.TextView.SelectionStartColumn - nameWithType: TextView.SelectionStartColumn -- uid: Terminal.Gui.TextView.SelectionStartRow - name: SelectionStartRow - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectionStartRow - commentId: P:Terminal.Gui.TextView.SelectionStartRow - fullName: Terminal.Gui.TextView.SelectionStartRow - nameWithType: TextView.SelectionStartRow -- uid: Terminal.Gui.TextView.SelectionStartRow* - name: SelectionStartRow - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SelectionStartRow_ - commentId: Overload:Terminal.Gui.TextView.SelectionStartRow - isSpec: "True" - fullName: Terminal.Gui.TextView.SelectionStartRow - nameWithType: TextView.SelectionStartRow -- uid: Terminal.Gui.TextView.SetNormalColor - name: SetNormalColor() - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetNormalColor - commentId: M:Terminal.Gui.TextView.SetNormalColor - fullName: Terminal.Gui.TextView.SetNormalColor() - nameWithType: TextView.SetNormalColor() -- uid: Terminal.Gui.TextView.SetNormalColor(System.Collections.Generic.List{System.Rune},System.Int32) - name: SetNormalColor(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetNormalColor_System_Collections_Generic_List_System_Rune__System_Int32_ - commentId: M:Terminal.Gui.TextView.SetNormalColor(System.Collections.Generic.List{System.Rune},System.Int32) - name.vb: SetNormalColor(List(Of Rune), Int32) - fullName: Terminal.Gui.TextView.SetNormalColor(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.TextView.SetNormalColor(System.Collections.Generic.List(Of System.Rune), System.Int32) - nameWithType: TextView.SetNormalColor(List, Int32) - nameWithType.vb: TextView.SetNormalColor(List(Of Rune), Int32) -- uid: Terminal.Gui.TextView.SetNormalColor* - name: SetNormalColor - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetNormalColor_ - commentId: Overload:Terminal.Gui.TextView.SetNormalColor - isSpec: "True" - fullName: Terminal.Gui.TextView.SetNormalColor - nameWithType: TextView.SetNormalColor -- uid: Terminal.Gui.TextView.SetReadOnlyColor(System.Collections.Generic.List{System.Rune},System.Int32) - name: SetReadOnlyColor(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetReadOnlyColor_System_Collections_Generic_List_System_Rune__System_Int32_ - commentId: M:Terminal.Gui.TextView.SetReadOnlyColor(System.Collections.Generic.List{System.Rune},System.Int32) - name.vb: SetReadOnlyColor(List(Of Rune), Int32) - fullName: Terminal.Gui.TextView.SetReadOnlyColor(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.TextView.SetReadOnlyColor(System.Collections.Generic.List(Of System.Rune), System.Int32) - nameWithType: TextView.SetReadOnlyColor(List, Int32) - nameWithType.vb: TextView.SetReadOnlyColor(List(Of Rune), Int32) -- uid: Terminal.Gui.TextView.SetReadOnlyColor* - name: SetReadOnlyColor - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetReadOnlyColor_ - commentId: Overload:Terminal.Gui.TextView.SetReadOnlyColor - isSpec: "True" - fullName: Terminal.Gui.TextView.SetReadOnlyColor - nameWithType: TextView.SetReadOnlyColor -- uid: Terminal.Gui.TextView.SetSelectionColor(System.Collections.Generic.List{System.Rune},System.Int32) - name: SetSelectionColor(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetSelectionColor_System_Collections_Generic_List_System_Rune__System_Int32_ - commentId: M:Terminal.Gui.TextView.SetSelectionColor(System.Collections.Generic.List{System.Rune},System.Int32) - name.vb: SetSelectionColor(List(Of Rune), Int32) - fullName: Terminal.Gui.TextView.SetSelectionColor(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.TextView.SetSelectionColor(System.Collections.Generic.List(Of System.Rune), System.Int32) - nameWithType: TextView.SetSelectionColor(List, Int32) - nameWithType.vb: TextView.SetSelectionColor(List(Of Rune), Int32) -- uid: Terminal.Gui.TextView.SetSelectionColor* - name: SetSelectionColor - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetSelectionColor_ - commentId: Overload:Terminal.Gui.TextView.SetSelectionColor - isSpec: "True" - fullName: Terminal.Gui.TextView.SetSelectionColor - nameWithType: TextView.SetSelectionColor -- uid: Terminal.Gui.TextView.SetUsedColor(System.Collections.Generic.List{System.Rune},System.Int32) - name: SetUsedColor(List, Int32) - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetUsedColor_System_Collections_Generic_List_System_Rune__System_Int32_ - commentId: M:Terminal.Gui.TextView.SetUsedColor(System.Collections.Generic.List{System.Rune},System.Int32) - name.vb: SetUsedColor(List(Of Rune), Int32) - fullName: Terminal.Gui.TextView.SetUsedColor(System.Collections.Generic.List, System.Int32) - fullName.vb: Terminal.Gui.TextView.SetUsedColor(System.Collections.Generic.List(Of System.Rune), System.Int32) - nameWithType: TextView.SetUsedColor(List, Int32) - nameWithType.vb: TextView.SetUsedColor(List(Of Rune), Int32) -- uid: Terminal.Gui.TextView.SetUsedColor* - name: SetUsedColor - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_SetUsedColor_ - commentId: Overload:Terminal.Gui.TextView.SetUsedColor - isSpec: "True" - fullName: Terminal.Gui.TextView.SetUsedColor - nameWithType: TextView.SetUsedColor -- uid: Terminal.Gui.TextView.TabWidth - name: TabWidth - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_TabWidth - commentId: P:Terminal.Gui.TextView.TabWidth - fullName: Terminal.Gui.TextView.TabWidth - nameWithType: TextView.TabWidth -- uid: Terminal.Gui.TextView.TabWidth* - name: TabWidth - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_TabWidth_ - commentId: Overload:Terminal.Gui.TextView.TabWidth - isSpec: "True" - fullName: Terminal.Gui.TextView.TabWidth - nameWithType: TextView.TabWidth -- uid: Terminal.Gui.TextView.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Text - commentId: P:Terminal.Gui.TextView.Text - fullName: Terminal.Gui.TextView.Text - nameWithType: TextView.Text -- uid: Terminal.Gui.TextView.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Text_ - commentId: Overload:Terminal.Gui.TextView.Text - isSpec: "True" - fullName: Terminal.Gui.TextView.Text - nameWithType: TextView.Text -- uid: Terminal.Gui.TextView.TextChanged - name: TextChanged - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_TextChanged - commentId: E:Terminal.Gui.TextView.TextChanged - fullName: Terminal.Gui.TextView.TextChanged - nameWithType: TextView.TextChanged -- uid: Terminal.Gui.TextView.TopRow - name: TopRow - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_TopRow - commentId: P:Terminal.Gui.TextView.TopRow - fullName: Terminal.Gui.TextView.TopRow - nameWithType: TextView.TopRow -- uid: Terminal.Gui.TextView.TopRow* - name: TopRow - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_TopRow_ - commentId: Overload:Terminal.Gui.TextView.TopRow - isSpec: "True" - fullName: Terminal.Gui.TextView.TopRow - nameWithType: TextView.TopRow -- uid: Terminal.Gui.TextView.UnwrappedCursorPosition - name: UnwrappedCursorPosition - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_UnwrappedCursorPosition - commentId: E:Terminal.Gui.TextView.UnwrappedCursorPosition - fullName: Terminal.Gui.TextView.UnwrappedCursorPosition - nameWithType: TextView.UnwrappedCursorPosition -- uid: Terminal.Gui.TextView.Used - name: Used - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Used - commentId: P:Terminal.Gui.TextView.Used - fullName: Terminal.Gui.TextView.Used - nameWithType: TextView.Used -- uid: Terminal.Gui.TextView.Used* - name: Used - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Used_ - commentId: Overload:Terminal.Gui.TextView.Used - isSpec: "True" - fullName: Terminal.Gui.TextView.Used - nameWithType: TextView.Used -- uid: Terminal.Gui.TextView.WordWrap - name: WordWrap - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_WordWrap - commentId: P:Terminal.Gui.TextView.WordWrap - fullName: Terminal.Gui.TextView.WordWrap - nameWithType: TextView.WordWrap -- uid: Terminal.Gui.TextView.WordWrap* - name: WordWrap - href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_WordWrap_ - commentId: Overload:Terminal.Gui.TextView.WordWrap - isSpec: "True" - fullName: Terminal.Gui.TextView.WordWrap - nameWithType: TextView.WordWrap -- uid: Terminal.Gui.TextViewAutocomplete - name: TextViewAutocomplete - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html - commentId: T:Terminal.Gui.TextViewAutocomplete - fullName: Terminal.Gui.TextViewAutocomplete - nameWithType: TextViewAutocomplete -- uid: Terminal.Gui.TextViewAutocomplete.DeleteTextBackwards - name: DeleteTextBackwards() - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html#Terminal_Gui_TextViewAutocomplete_DeleteTextBackwards - commentId: M:Terminal.Gui.TextViewAutocomplete.DeleteTextBackwards - fullName: Terminal.Gui.TextViewAutocomplete.DeleteTextBackwards() - nameWithType: TextViewAutocomplete.DeleteTextBackwards() -- uid: Terminal.Gui.TextViewAutocomplete.DeleteTextBackwards* - name: DeleteTextBackwards - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html#Terminal_Gui_TextViewAutocomplete_DeleteTextBackwards_ - commentId: Overload:Terminal.Gui.TextViewAutocomplete.DeleteTextBackwards - isSpec: "True" - fullName: Terminal.Gui.TextViewAutocomplete.DeleteTextBackwards - nameWithType: TextViewAutocomplete.DeleteTextBackwards -- uid: Terminal.Gui.TextViewAutocomplete.GetCurrentWord - name: GetCurrentWord() - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html#Terminal_Gui_TextViewAutocomplete_GetCurrentWord - commentId: M:Terminal.Gui.TextViewAutocomplete.GetCurrentWord - fullName: Terminal.Gui.TextViewAutocomplete.GetCurrentWord() - nameWithType: TextViewAutocomplete.GetCurrentWord() -- uid: Terminal.Gui.TextViewAutocomplete.GetCurrentWord* - name: GetCurrentWord - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html#Terminal_Gui_TextViewAutocomplete_GetCurrentWord_ - commentId: Overload:Terminal.Gui.TextViewAutocomplete.GetCurrentWord - isSpec: "True" - fullName: Terminal.Gui.TextViewAutocomplete.GetCurrentWord - nameWithType: TextViewAutocomplete.GetCurrentWord -- uid: Terminal.Gui.TextViewAutocomplete.InsertText(System.String) - name: InsertText(String) - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html#Terminal_Gui_TextViewAutocomplete_InsertText_System_String_ - commentId: M:Terminal.Gui.TextViewAutocomplete.InsertText(System.String) - fullName: Terminal.Gui.TextViewAutocomplete.InsertText(System.String) - nameWithType: TextViewAutocomplete.InsertText(String) -- uid: Terminal.Gui.TextViewAutocomplete.InsertText* - name: InsertText - href: api/Terminal.Gui/Terminal.Gui.TextViewAutocomplete.html#Terminal_Gui_TextViewAutocomplete_InsertText_ - commentId: Overload:Terminal.Gui.TextViewAutocomplete.InsertText - isSpec: "True" - fullName: Terminal.Gui.TextViewAutocomplete.InsertText - nameWithType: TextViewAutocomplete.InsertText -- uid: Terminal.Gui.Thickness - name: Thickness - href: api/Terminal.Gui/Terminal.Gui.Thickness.html - commentId: T:Terminal.Gui.Thickness - fullName: Terminal.Gui.Thickness - nameWithType: Thickness -- uid: Terminal.Gui.Thickness.#ctor(System.Int32) - name: Thickness(Int32) - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness__ctor_System_Int32_ - commentId: M:Terminal.Gui.Thickness.#ctor(System.Int32) - fullName: Terminal.Gui.Thickness.Thickness(System.Int32) - nameWithType: Thickness.Thickness(Int32) -- uid: Terminal.Gui.Thickness.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) - name: Thickness(Int32, Int32, Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness__ctor_System_Int32_System_Int32_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.Thickness.#ctor(System.Int32,System.Int32,System.Int32,System.Int32) - fullName: Terminal.Gui.Thickness.Thickness(System.Int32, System.Int32, System.Int32, System.Int32) - nameWithType: Thickness.Thickness(Int32, Int32, Int32, Int32) -- uid: Terminal.Gui.Thickness.#ctor* - name: Thickness - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness__ctor_ - commentId: Overload:Terminal.Gui.Thickness.#ctor - isSpec: "True" - fullName: Terminal.Gui.Thickness.Thickness - nameWithType: Thickness.Thickness -- uid: Terminal.Gui.Thickness.Bottom - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness_Bottom - commentId: F:Terminal.Gui.Thickness.Bottom - fullName: Terminal.Gui.Thickness.Bottom - nameWithType: Thickness.Bottom -- uid: Terminal.Gui.Thickness.Left - name: Left - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness_Left - commentId: F:Terminal.Gui.Thickness.Left - fullName: Terminal.Gui.Thickness.Left - nameWithType: Thickness.Left -- uid: Terminal.Gui.Thickness.Right - name: Right - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness_Right - commentId: F:Terminal.Gui.Thickness.Right - fullName: Terminal.Gui.Thickness.Right - nameWithType: Thickness.Right -- uid: Terminal.Gui.Thickness.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness_Top - commentId: F:Terminal.Gui.Thickness.Top - fullName: Terminal.Gui.Thickness.Top - nameWithType: Thickness.Top -- uid: Terminal.Gui.Thickness.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness_ToString - commentId: M:Terminal.Gui.Thickness.ToString - fullName: Terminal.Gui.Thickness.ToString() - nameWithType: Thickness.ToString() -- uid: Terminal.Gui.Thickness.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.Thickness.html#Terminal_Gui_Thickness_ToString_ - commentId: Overload:Terminal.Gui.Thickness.ToString - isSpec: "True" - fullName: Terminal.Gui.Thickness.ToString - nameWithType: Thickness.ToString -- uid: Terminal.Gui.TimeField - name: TimeField - href: api/Terminal.Gui/Terminal.Gui.TimeField.html - commentId: T:Terminal.Gui.TimeField - fullName: Terminal.Gui.TimeField - nameWithType: TimeField -- uid: Terminal.Gui.TimeField.#ctor - name: TimeField() - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField__ctor - commentId: M:Terminal.Gui.TimeField.#ctor - fullName: Terminal.Gui.TimeField.TimeField() - nameWithType: TimeField.TimeField() -- uid: Terminal.Gui.TimeField.#ctor(System.Int32,System.Int32,System.TimeSpan,System.Boolean) - name: TimeField(Int32, Int32, TimeSpan, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField__ctor_System_Int32_System_Int32_System_TimeSpan_System_Boolean_ - commentId: M:Terminal.Gui.TimeField.#ctor(System.Int32,System.Int32,System.TimeSpan,System.Boolean) - fullName: Terminal.Gui.TimeField.TimeField(System.Int32, System.Int32, System.TimeSpan, System.Boolean) - nameWithType: TimeField.TimeField(Int32, Int32, TimeSpan, Boolean) -- uid: Terminal.Gui.TimeField.#ctor(System.TimeSpan) - name: TimeField(TimeSpan) - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField__ctor_System_TimeSpan_ - commentId: M:Terminal.Gui.TimeField.#ctor(System.TimeSpan) - fullName: Terminal.Gui.TimeField.TimeField(System.TimeSpan) - nameWithType: TimeField.TimeField(TimeSpan) -- uid: Terminal.Gui.TimeField.#ctor* - name: TimeField - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField__ctor_ - commentId: Overload:Terminal.Gui.TimeField.#ctor - isSpec: "True" - fullName: Terminal.Gui.TimeField.TimeField - nameWithType: TimeField.TimeField -- uid: Terminal.Gui.TimeField.CursorPosition - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_CursorPosition - commentId: P:Terminal.Gui.TimeField.CursorPosition - fullName: Terminal.Gui.TimeField.CursorPosition - nameWithType: TimeField.CursorPosition -- uid: Terminal.Gui.TimeField.CursorPosition* - name: CursorPosition - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_CursorPosition_ - commentId: Overload:Terminal.Gui.TimeField.CursorPosition - isSpec: "True" - fullName: Terminal.Gui.TimeField.CursorPosition - nameWithType: TimeField.CursorPosition -- uid: Terminal.Gui.TimeField.DeleteCharLeft(System.Boolean) - name: DeleteCharLeft(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_DeleteCharLeft_System_Boolean_ - commentId: M:Terminal.Gui.TimeField.DeleteCharLeft(System.Boolean) - fullName: Terminal.Gui.TimeField.DeleteCharLeft(System.Boolean) - nameWithType: TimeField.DeleteCharLeft(Boolean) -- uid: Terminal.Gui.TimeField.DeleteCharLeft* - name: DeleteCharLeft - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_DeleteCharLeft_ - commentId: Overload:Terminal.Gui.TimeField.DeleteCharLeft - isSpec: "True" - fullName: Terminal.Gui.TimeField.DeleteCharLeft - nameWithType: TimeField.DeleteCharLeft -- uid: Terminal.Gui.TimeField.DeleteCharRight - name: DeleteCharRight() - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_DeleteCharRight - commentId: M:Terminal.Gui.TimeField.DeleteCharRight - fullName: Terminal.Gui.TimeField.DeleteCharRight() - nameWithType: TimeField.DeleteCharRight() -- uid: Terminal.Gui.TimeField.DeleteCharRight* - name: DeleteCharRight - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_DeleteCharRight_ - commentId: Overload:Terminal.Gui.TimeField.DeleteCharRight - isSpec: "True" - fullName: Terminal.Gui.TimeField.DeleteCharRight - nameWithType: TimeField.DeleteCharRight -- uid: Terminal.Gui.TimeField.IsShortFormat - name: IsShortFormat - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_IsShortFormat - commentId: P:Terminal.Gui.TimeField.IsShortFormat - fullName: Terminal.Gui.TimeField.IsShortFormat - nameWithType: TimeField.IsShortFormat -- uid: Terminal.Gui.TimeField.IsShortFormat* - name: IsShortFormat - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_IsShortFormat_ - commentId: Overload:Terminal.Gui.TimeField.IsShortFormat - isSpec: "True" - fullName: Terminal.Gui.TimeField.IsShortFormat - nameWithType: TimeField.IsShortFormat -- uid: Terminal.Gui.TimeField.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.TimeField.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.TimeField.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: TimeField.MouseEvent(MouseEvent) -- uid: Terminal.Gui.TimeField.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_MouseEvent_ - commentId: Overload:Terminal.Gui.TimeField.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.TimeField.MouseEvent - nameWithType: TimeField.MouseEvent -- uid: Terminal.Gui.TimeField.OnTimeChanged(Terminal.Gui.DateTimeEventArgs{System.TimeSpan}) - name: OnTimeChanged(DateTimeEventArgs) - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_OnTimeChanged_Terminal_Gui_DateTimeEventArgs_System_TimeSpan__ - commentId: M:Terminal.Gui.TimeField.OnTimeChanged(Terminal.Gui.DateTimeEventArgs{System.TimeSpan}) - name.vb: OnTimeChanged(DateTimeEventArgs(Of TimeSpan)) - fullName: Terminal.Gui.TimeField.OnTimeChanged(Terminal.Gui.DateTimeEventArgs) - fullName.vb: Terminal.Gui.TimeField.OnTimeChanged(Terminal.Gui.DateTimeEventArgs(Of System.TimeSpan)) - nameWithType: TimeField.OnTimeChanged(DateTimeEventArgs) - nameWithType.vb: TimeField.OnTimeChanged(DateTimeEventArgs(Of TimeSpan)) -- uid: Terminal.Gui.TimeField.OnTimeChanged* - name: OnTimeChanged - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_OnTimeChanged_ - commentId: Overload:Terminal.Gui.TimeField.OnTimeChanged - isSpec: "True" - fullName: Terminal.Gui.TimeField.OnTimeChanged - nameWithType: TimeField.OnTimeChanged -- uid: Terminal.Gui.TimeField.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TimeField.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TimeField.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TimeField.ProcessKey(KeyEvent) -- uid: Terminal.Gui.TimeField.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_ProcessKey_ - commentId: Overload:Terminal.Gui.TimeField.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TimeField.ProcessKey - nameWithType: TimeField.ProcessKey -- uid: Terminal.Gui.TimeField.Time - name: Time - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_Time - commentId: P:Terminal.Gui.TimeField.Time - fullName: Terminal.Gui.TimeField.Time - nameWithType: TimeField.Time -- uid: Terminal.Gui.TimeField.Time* - name: Time - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_Time_ - commentId: Overload:Terminal.Gui.TimeField.Time - isSpec: "True" - fullName: Terminal.Gui.TimeField.Time - nameWithType: TimeField.Time -- uid: Terminal.Gui.TimeField.TimeChanged - name: TimeChanged - href: api/Terminal.Gui/Terminal.Gui.TimeField.html#Terminal_Gui_TimeField_TimeChanged - commentId: E:Terminal.Gui.TimeField.TimeChanged - fullName: Terminal.Gui.TimeField.TimeChanged - nameWithType: TimeField.TimeChanged -- uid: Terminal.Gui.Toplevel - name: Toplevel - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html - commentId: T:Terminal.Gui.Toplevel - fullName: Terminal.Gui.Toplevel - nameWithType: Toplevel -- uid: Terminal.Gui.Toplevel.#ctor - name: Toplevel() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel__ctor - commentId: M:Terminal.Gui.Toplevel.#ctor - fullName: Terminal.Gui.Toplevel.Toplevel() - nameWithType: Toplevel.Toplevel() -- uid: Terminal.Gui.Toplevel.#ctor(Terminal.Gui.Rect) - name: Toplevel(Rect) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Toplevel.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.Toplevel.Toplevel(Terminal.Gui.Rect) - nameWithType: Toplevel.Toplevel(Rect) -- uid: Terminal.Gui.Toplevel.#ctor* - name: Toplevel - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel__ctor_ - commentId: Overload:Terminal.Gui.Toplevel.#ctor - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Toplevel - nameWithType: Toplevel.Toplevel -- uid: Terminal.Gui.Toplevel.Activate - name: Activate - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Activate - commentId: E:Terminal.Gui.Toplevel.Activate - fullName: Terminal.Gui.Toplevel.Activate - nameWithType: Toplevel.Activate -- uid: Terminal.Gui.Toplevel.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Toplevel.Add(Terminal.Gui.View) - fullName: Terminal.Gui.Toplevel.Add(Terminal.Gui.View) - nameWithType: Toplevel.Add(View) -- uid: Terminal.Gui.Toplevel.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Add_ - commentId: Overload:Terminal.Gui.Toplevel.Add - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Add - nameWithType: Toplevel.Add -- uid: Terminal.Gui.Toplevel.AllChildClosed - name: AllChildClosed - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_AllChildClosed - commentId: E:Terminal.Gui.Toplevel.AllChildClosed - fullName: Terminal.Gui.Toplevel.AllChildClosed - nameWithType: Toplevel.AllChildClosed -- uid: Terminal.Gui.Toplevel.AlternateBackwardKeyChanged - name: AlternateBackwardKeyChanged - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_AlternateBackwardKeyChanged - commentId: E:Terminal.Gui.Toplevel.AlternateBackwardKeyChanged - fullName: Terminal.Gui.Toplevel.AlternateBackwardKeyChanged - nameWithType: Toplevel.AlternateBackwardKeyChanged -- uid: Terminal.Gui.Toplevel.AlternateForwardKeyChanged - name: AlternateForwardKeyChanged - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_AlternateForwardKeyChanged - commentId: E:Terminal.Gui.Toplevel.AlternateForwardKeyChanged - fullName: Terminal.Gui.Toplevel.AlternateForwardKeyChanged - nameWithType: Toplevel.AlternateForwardKeyChanged -- uid: Terminal.Gui.Toplevel.CanFocus - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_CanFocus - commentId: P:Terminal.Gui.Toplevel.CanFocus - fullName: Terminal.Gui.Toplevel.CanFocus - nameWithType: Toplevel.CanFocus -- uid: Terminal.Gui.Toplevel.CanFocus* - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_CanFocus_ - commentId: Overload:Terminal.Gui.Toplevel.CanFocus - isSpec: "True" - fullName: Terminal.Gui.Toplevel.CanFocus - nameWithType: Toplevel.CanFocus -- uid: Terminal.Gui.Toplevel.ChildClosed - name: ChildClosed - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ChildClosed - commentId: E:Terminal.Gui.Toplevel.ChildClosed - fullName: Terminal.Gui.Toplevel.ChildClosed - nameWithType: Toplevel.ChildClosed -- uid: Terminal.Gui.Toplevel.ChildLoaded - name: ChildLoaded - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ChildLoaded - commentId: E:Terminal.Gui.Toplevel.ChildLoaded - fullName: Terminal.Gui.Toplevel.ChildLoaded - nameWithType: Toplevel.ChildLoaded -- uid: Terminal.Gui.Toplevel.ChildUnloaded - name: ChildUnloaded - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ChildUnloaded - commentId: E:Terminal.Gui.Toplevel.ChildUnloaded - fullName: Terminal.Gui.Toplevel.ChildUnloaded - nameWithType: Toplevel.ChildUnloaded -- uid: Terminal.Gui.Toplevel.Closed - name: Closed - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Closed - commentId: E:Terminal.Gui.Toplevel.Closed - fullName: Terminal.Gui.Toplevel.Closed - nameWithType: Toplevel.Closed -- uid: Terminal.Gui.Toplevel.Closing - name: Closing - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Closing - commentId: E:Terminal.Gui.Toplevel.Closing - fullName: Terminal.Gui.Toplevel.Closing - nameWithType: Toplevel.Closing -- uid: Terminal.Gui.Toplevel.Create - name: Create() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Create - commentId: M:Terminal.Gui.Toplevel.Create - fullName: Terminal.Gui.Toplevel.Create() - nameWithType: Toplevel.Create() -- uid: Terminal.Gui.Toplevel.Create* - name: Create - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Create_ - commentId: Overload:Terminal.Gui.Toplevel.Create - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Create - nameWithType: Toplevel.Create -- uid: Terminal.Gui.Toplevel.Deactivate - name: Deactivate - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Deactivate - commentId: E:Terminal.Gui.Toplevel.Deactivate - fullName: Terminal.Gui.Toplevel.Deactivate - nameWithType: Toplevel.Deactivate -- uid: Terminal.Gui.Toplevel.GetTopMdiChild(System.Type,System.String[]) - name: GetTopMdiChild(Type, String[]) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_GetTopMdiChild_System_Type_System_String___ - commentId: M:Terminal.Gui.Toplevel.GetTopMdiChild(System.Type,System.String[]) - name.vb: GetTopMdiChild(Type, String()) - fullName: Terminal.Gui.Toplevel.GetTopMdiChild(System.Type, System.String[]) - fullName.vb: Terminal.Gui.Toplevel.GetTopMdiChild(System.Type, System.String()) - nameWithType: Toplevel.GetTopMdiChild(Type, String[]) - nameWithType.vb: Toplevel.GetTopMdiChild(Type, String()) -- uid: Terminal.Gui.Toplevel.GetTopMdiChild* - name: GetTopMdiChild - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_GetTopMdiChild_ - commentId: Overload:Terminal.Gui.Toplevel.GetTopMdiChild - isSpec: "True" - fullName: Terminal.Gui.Toplevel.GetTopMdiChild - nameWithType: Toplevel.GetTopMdiChild -- uid: Terminal.Gui.Toplevel.IsMdiChild - name: IsMdiChild - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_IsMdiChild - commentId: P:Terminal.Gui.Toplevel.IsMdiChild - fullName: Terminal.Gui.Toplevel.IsMdiChild - nameWithType: Toplevel.IsMdiChild -- uid: Terminal.Gui.Toplevel.IsMdiChild* - name: IsMdiChild - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_IsMdiChild_ - commentId: Overload:Terminal.Gui.Toplevel.IsMdiChild - isSpec: "True" - fullName: Terminal.Gui.Toplevel.IsMdiChild - nameWithType: Toplevel.IsMdiChild -- uid: Terminal.Gui.Toplevel.IsMdiContainer - name: IsMdiContainer - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_IsMdiContainer - commentId: P:Terminal.Gui.Toplevel.IsMdiContainer - fullName: Terminal.Gui.Toplevel.IsMdiContainer - nameWithType: Toplevel.IsMdiContainer -- uid: Terminal.Gui.Toplevel.IsMdiContainer* - name: IsMdiContainer - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_IsMdiContainer_ - commentId: Overload:Terminal.Gui.Toplevel.IsMdiContainer - isSpec: "True" - fullName: Terminal.Gui.Toplevel.IsMdiContainer - nameWithType: Toplevel.IsMdiContainer -- uid: Terminal.Gui.Toplevel.Loaded - name: Loaded - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Loaded - commentId: E:Terminal.Gui.Toplevel.Loaded - fullName: Terminal.Gui.Toplevel.Loaded - nameWithType: Toplevel.Loaded -- uid: Terminal.Gui.Toplevel.MenuBar - name: MenuBar - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MenuBar - commentId: P:Terminal.Gui.Toplevel.MenuBar - fullName: Terminal.Gui.Toplevel.MenuBar - nameWithType: Toplevel.MenuBar -- uid: Terminal.Gui.Toplevel.MenuBar* - name: MenuBar - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MenuBar_ - commentId: Overload:Terminal.Gui.Toplevel.MenuBar - isSpec: "True" - fullName: Terminal.Gui.Toplevel.MenuBar - nameWithType: Toplevel.MenuBar -- uid: Terminal.Gui.Toplevel.Modal - name: Modal - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Modal - commentId: P:Terminal.Gui.Toplevel.Modal - fullName: Terminal.Gui.Toplevel.Modal - nameWithType: Toplevel.Modal -- uid: Terminal.Gui.Toplevel.Modal* - name: Modal - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Modal_ - commentId: Overload:Terminal.Gui.Toplevel.Modal - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Modal - nameWithType: Toplevel.Modal -- uid: Terminal.Gui.Toplevel.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.Toplevel.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.Toplevel.MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: Toplevel.MouseEvent(MouseEvent) -- uid: Terminal.Gui.Toplevel.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MouseEvent_ - commentId: Overload:Terminal.Gui.Toplevel.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.Toplevel.MouseEvent - nameWithType: Toplevel.MouseEvent -- uid: Terminal.Gui.Toplevel.MoveNext - name: MoveNext() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MoveNext - commentId: M:Terminal.Gui.Toplevel.MoveNext - fullName: Terminal.Gui.Toplevel.MoveNext() - nameWithType: Toplevel.MoveNext() -- uid: Terminal.Gui.Toplevel.MoveNext* - name: MoveNext - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MoveNext_ - commentId: Overload:Terminal.Gui.Toplevel.MoveNext - isSpec: "True" - fullName: Terminal.Gui.Toplevel.MoveNext - nameWithType: Toplevel.MoveNext -- uid: Terminal.Gui.Toplevel.MovePrevious - name: MovePrevious() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MovePrevious - commentId: M:Terminal.Gui.Toplevel.MovePrevious - fullName: Terminal.Gui.Toplevel.MovePrevious() - nameWithType: Toplevel.MovePrevious() -- uid: Terminal.Gui.Toplevel.MovePrevious* - name: MovePrevious - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_MovePrevious_ - commentId: Overload:Terminal.Gui.Toplevel.MovePrevious - isSpec: "True" - fullName: Terminal.Gui.Toplevel.MovePrevious - nameWithType: Toplevel.MovePrevious -- uid: Terminal.Gui.Toplevel.OnAlternateBackwardKeyChanged(Terminal.Gui.Key) - name: OnAlternateBackwardKeyChanged(Key) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnAlternateBackwardKeyChanged_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.Toplevel.OnAlternateBackwardKeyChanged(Terminal.Gui.Key) - fullName: Terminal.Gui.Toplevel.OnAlternateBackwardKeyChanged(Terminal.Gui.Key) - nameWithType: Toplevel.OnAlternateBackwardKeyChanged(Key) -- uid: Terminal.Gui.Toplevel.OnAlternateBackwardKeyChanged* - name: OnAlternateBackwardKeyChanged - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnAlternateBackwardKeyChanged_ - commentId: Overload:Terminal.Gui.Toplevel.OnAlternateBackwardKeyChanged - isSpec: "True" - fullName: Terminal.Gui.Toplevel.OnAlternateBackwardKeyChanged - nameWithType: Toplevel.OnAlternateBackwardKeyChanged -- uid: Terminal.Gui.Toplevel.OnAlternateForwardKeyChanged(Terminal.Gui.Key) - name: OnAlternateForwardKeyChanged(Key) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnAlternateForwardKeyChanged_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.Toplevel.OnAlternateForwardKeyChanged(Terminal.Gui.Key) - fullName: Terminal.Gui.Toplevel.OnAlternateForwardKeyChanged(Terminal.Gui.Key) - nameWithType: Toplevel.OnAlternateForwardKeyChanged(Key) -- uid: Terminal.Gui.Toplevel.OnAlternateForwardKeyChanged* - name: OnAlternateForwardKeyChanged - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnAlternateForwardKeyChanged_ - commentId: Overload:Terminal.Gui.Toplevel.OnAlternateForwardKeyChanged - isSpec: "True" - fullName: Terminal.Gui.Toplevel.OnAlternateForwardKeyChanged - nameWithType: Toplevel.OnAlternateForwardKeyChanged -- uid: Terminal.Gui.Toplevel.OnKeyDown(Terminal.Gui.KeyEvent) - name: OnKeyDown(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnKeyDown_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Toplevel.OnKeyDown(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Toplevel.OnKeyDown(Terminal.Gui.KeyEvent) - nameWithType: Toplevel.OnKeyDown(KeyEvent) -- uid: Terminal.Gui.Toplevel.OnKeyDown* - name: OnKeyDown - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnKeyDown_ - commentId: Overload:Terminal.Gui.Toplevel.OnKeyDown - isSpec: "True" - fullName: Terminal.Gui.Toplevel.OnKeyDown - nameWithType: Toplevel.OnKeyDown -- uid: Terminal.Gui.Toplevel.OnKeyUp(Terminal.Gui.KeyEvent) - name: OnKeyUp(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnKeyUp_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Toplevel.OnKeyUp(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Toplevel.OnKeyUp(Terminal.Gui.KeyEvent) - nameWithType: Toplevel.OnKeyUp(KeyEvent) -- uid: Terminal.Gui.Toplevel.OnKeyUp* - name: OnKeyUp - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnKeyUp_ - commentId: Overload:Terminal.Gui.Toplevel.OnKeyUp - isSpec: "True" - fullName: Terminal.Gui.Toplevel.OnKeyUp - nameWithType: Toplevel.OnKeyUp -- uid: Terminal.Gui.Toplevel.OnLoaded - name: OnLoaded() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnLoaded - commentId: M:Terminal.Gui.Toplevel.OnLoaded - fullName: Terminal.Gui.Toplevel.OnLoaded() - nameWithType: Toplevel.OnLoaded() -- uid: Terminal.Gui.Toplevel.OnLoaded* - name: OnLoaded - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnLoaded_ - commentId: Overload:Terminal.Gui.Toplevel.OnLoaded - isSpec: "True" - fullName: Terminal.Gui.Toplevel.OnLoaded - nameWithType: Toplevel.OnLoaded -- uid: Terminal.Gui.Toplevel.OnQuitKeyChanged(Terminal.Gui.Key) - name: OnQuitKeyChanged(Key) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnQuitKeyChanged_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.Toplevel.OnQuitKeyChanged(Terminal.Gui.Key) - fullName: Terminal.Gui.Toplevel.OnQuitKeyChanged(Terminal.Gui.Key) - nameWithType: Toplevel.OnQuitKeyChanged(Key) -- uid: Terminal.Gui.Toplevel.OnQuitKeyChanged* - name: OnQuitKeyChanged - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_OnQuitKeyChanged_ - commentId: Overload:Terminal.Gui.Toplevel.OnQuitKeyChanged - isSpec: "True" - fullName: Terminal.Gui.Toplevel.OnQuitKeyChanged - nameWithType: Toplevel.OnQuitKeyChanged -- uid: Terminal.Gui.Toplevel.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_PositionCursor - commentId: M:Terminal.Gui.Toplevel.PositionCursor - fullName: Terminal.Gui.Toplevel.PositionCursor() - nameWithType: Toplevel.PositionCursor() -- uid: Terminal.Gui.Toplevel.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_PositionCursor_ - commentId: Overload:Terminal.Gui.Toplevel.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.Toplevel.PositionCursor - nameWithType: Toplevel.PositionCursor -- uid: Terminal.Gui.Toplevel.PositionToplevel(Terminal.Gui.Toplevel) - name: PositionToplevel(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_PositionToplevel_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.Toplevel.PositionToplevel(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.Toplevel.PositionToplevel(Terminal.Gui.Toplevel) - nameWithType: Toplevel.PositionToplevel(Toplevel) -- uid: Terminal.Gui.Toplevel.PositionToplevel* - name: PositionToplevel - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_PositionToplevel_ - commentId: Overload:Terminal.Gui.Toplevel.PositionToplevel - isSpec: "True" - fullName: Terminal.Gui.Toplevel.PositionToplevel - nameWithType: Toplevel.PositionToplevel -- uid: Terminal.Gui.Toplevel.ProcessColdKey(Terminal.Gui.KeyEvent) - name: ProcessColdKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessColdKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Toplevel.ProcessColdKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Toplevel.ProcessColdKey(Terminal.Gui.KeyEvent) - nameWithType: Toplevel.ProcessColdKey(KeyEvent) -- uid: Terminal.Gui.Toplevel.ProcessColdKey* - name: ProcessColdKey - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessColdKey_ - commentId: Overload:Terminal.Gui.Toplevel.ProcessColdKey - isSpec: "True" - fullName: Terminal.Gui.Toplevel.ProcessColdKey - nameWithType: Toplevel.ProcessColdKey -- uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: Toplevel.ProcessKey(KeyEvent) -- uid: Terminal.Gui.Toplevel.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessKey_ - commentId: Overload:Terminal.Gui.Toplevel.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.Toplevel.ProcessKey - nameWithType: Toplevel.ProcessKey -- uid: Terminal.Gui.Toplevel.QuitKeyChanged - name: QuitKeyChanged - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_QuitKeyChanged - commentId: E:Terminal.Gui.Toplevel.QuitKeyChanged - fullName: Terminal.Gui.Toplevel.QuitKeyChanged - nameWithType: Toplevel.QuitKeyChanged -- uid: Terminal.Gui.Toplevel.Ready - name: Ready - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Ready - commentId: E:Terminal.Gui.Toplevel.Ready - fullName: Terminal.Gui.Toplevel.Ready - nameWithType: Toplevel.Ready -- uid: Terminal.Gui.Toplevel.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Toplevel.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.Toplevel.Redraw(Terminal.Gui.Rect) - nameWithType: Toplevel.Redraw(Rect) -- uid: Terminal.Gui.Toplevel.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Redraw_ - commentId: Overload:Terminal.Gui.Toplevel.Redraw - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Redraw - nameWithType: Toplevel.Redraw -- uid: Terminal.Gui.Toplevel.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Toplevel.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.Toplevel.Remove(Terminal.Gui.View) - nameWithType: Toplevel.Remove(View) -- uid: Terminal.Gui.Toplevel.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Remove_ - commentId: Overload:Terminal.Gui.Toplevel.Remove - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Remove - nameWithType: Toplevel.Remove -- uid: Terminal.Gui.Toplevel.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_RemoveAll - commentId: M:Terminal.Gui.Toplevel.RemoveAll - fullName: Terminal.Gui.Toplevel.RemoveAll() - nameWithType: Toplevel.RemoveAll() -- uid: Terminal.Gui.Toplevel.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_RemoveAll_ - commentId: Overload:Terminal.Gui.Toplevel.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.Toplevel.RemoveAll - nameWithType: Toplevel.RemoveAll -- uid: Terminal.Gui.Toplevel.RequestStop - name: RequestStop() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_RequestStop - commentId: M:Terminal.Gui.Toplevel.RequestStop - fullName: Terminal.Gui.Toplevel.RequestStop() - nameWithType: Toplevel.RequestStop() -- uid: Terminal.Gui.Toplevel.RequestStop(Terminal.Gui.Toplevel) - name: RequestStop(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_RequestStop_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.Toplevel.RequestStop(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.Toplevel.RequestStop(Terminal.Gui.Toplevel) - nameWithType: Toplevel.RequestStop(Toplevel) -- uid: Terminal.Gui.Toplevel.RequestStop* - name: RequestStop - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_RequestStop_ - commentId: Overload:Terminal.Gui.Toplevel.RequestStop - isSpec: "True" - fullName: Terminal.Gui.Toplevel.RequestStop - nameWithType: Toplevel.RequestStop -- uid: Terminal.Gui.Toplevel.Resized - name: Resized - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Resized - commentId: E:Terminal.Gui.Toplevel.Resized - fullName: Terminal.Gui.Toplevel.Resized - nameWithType: Toplevel.Resized -- uid: Terminal.Gui.Toplevel.Running - name: Running - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Running - commentId: P:Terminal.Gui.Toplevel.Running - fullName: Terminal.Gui.Toplevel.Running - nameWithType: Toplevel.Running -- uid: Terminal.Gui.Toplevel.Running* - name: Running - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Running_ - commentId: Overload:Terminal.Gui.Toplevel.Running - isSpec: "True" - fullName: Terminal.Gui.Toplevel.Running - nameWithType: Toplevel.Running -- uid: Terminal.Gui.Toplevel.ShowChild(Terminal.Gui.Toplevel) - name: ShowChild(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ShowChild_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.Toplevel.ShowChild(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.Toplevel.ShowChild(Terminal.Gui.Toplevel) - nameWithType: Toplevel.ShowChild(Toplevel) -- uid: Terminal.Gui.Toplevel.ShowChild* - name: ShowChild - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ShowChild_ - commentId: Overload:Terminal.Gui.Toplevel.ShowChild - isSpec: "True" - fullName: Terminal.Gui.Toplevel.ShowChild - nameWithType: Toplevel.ShowChild -- uid: Terminal.Gui.Toplevel.StatusBar - name: StatusBar - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_StatusBar - commentId: P:Terminal.Gui.Toplevel.StatusBar - fullName: Terminal.Gui.Toplevel.StatusBar - nameWithType: Toplevel.StatusBar -- uid: Terminal.Gui.Toplevel.StatusBar* - name: StatusBar - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_StatusBar_ - commentId: Overload:Terminal.Gui.Toplevel.StatusBar - isSpec: "True" - fullName: Terminal.Gui.Toplevel.StatusBar - nameWithType: Toplevel.StatusBar -- uid: Terminal.Gui.Toplevel.Unloaded - name: Unloaded - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Unloaded - commentId: E:Terminal.Gui.Toplevel.Unloaded - fullName: Terminal.Gui.Toplevel.Unloaded - nameWithType: Toplevel.Unloaded -- uid: Terminal.Gui.Toplevel.WillPresent - name: WillPresent() - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_WillPresent - commentId: M:Terminal.Gui.Toplevel.WillPresent - fullName: Terminal.Gui.Toplevel.WillPresent() - nameWithType: Toplevel.WillPresent() -- uid: Terminal.Gui.Toplevel.WillPresent* - name: WillPresent - href: api/Terminal.Gui/Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_WillPresent_ - commentId: Overload:Terminal.Gui.Toplevel.WillPresent - isSpec: "True" - fullName: Terminal.Gui.Toplevel.WillPresent - nameWithType: Toplevel.WillPresent -- uid: Terminal.Gui.ToplevelClosingEventArgs - name: ToplevelClosingEventArgs - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html - commentId: T:Terminal.Gui.ToplevelClosingEventArgs - fullName: Terminal.Gui.ToplevelClosingEventArgs - nameWithType: ToplevelClosingEventArgs -- uid: Terminal.Gui.ToplevelClosingEventArgs.#ctor(Terminal.Gui.Toplevel) - name: ToplevelClosingEventArgs(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html#Terminal_Gui_ToplevelClosingEventArgs__ctor_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.ToplevelClosingEventArgs.#ctor(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.ToplevelClosingEventArgs.ToplevelClosingEventArgs(Terminal.Gui.Toplevel) - nameWithType: ToplevelClosingEventArgs.ToplevelClosingEventArgs(Toplevel) -- uid: Terminal.Gui.ToplevelClosingEventArgs.#ctor* - name: ToplevelClosingEventArgs - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html#Terminal_Gui_ToplevelClosingEventArgs__ctor_ - commentId: Overload:Terminal.Gui.ToplevelClosingEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.ToplevelClosingEventArgs.ToplevelClosingEventArgs - nameWithType: ToplevelClosingEventArgs.ToplevelClosingEventArgs -- uid: Terminal.Gui.ToplevelClosingEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html#Terminal_Gui_ToplevelClosingEventArgs_Cancel - commentId: P:Terminal.Gui.ToplevelClosingEventArgs.Cancel - fullName: Terminal.Gui.ToplevelClosingEventArgs.Cancel - nameWithType: ToplevelClosingEventArgs.Cancel -- uid: Terminal.Gui.ToplevelClosingEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html#Terminal_Gui_ToplevelClosingEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.ToplevelClosingEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.ToplevelClosingEventArgs.Cancel - nameWithType: ToplevelClosingEventArgs.Cancel -- uid: Terminal.Gui.ToplevelClosingEventArgs.RequestingTop - name: RequestingTop - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html#Terminal_Gui_ToplevelClosingEventArgs_RequestingTop - commentId: P:Terminal.Gui.ToplevelClosingEventArgs.RequestingTop - fullName: Terminal.Gui.ToplevelClosingEventArgs.RequestingTop - nameWithType: ToplevelClosingEventArgs.RequestingTop -- uid: Terminal.Gui.ToplevelClosingEventArgs.RequestingTop* - name: RequestingTop - href: api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html#Terminal_Gui_ToplevelClosingEventArgs_RequestingTop_ - commentId: Overload:Terminal.Gui.ToplevelClosingEventArgs.RequestingTop - isSpec: "True" - fullName: Terminal.Gui.ToplevelClosingEventArgs.RequestingTop - nameWithType: ToplevelClosingEventArgs.RequestingTop -- uid: Terminal.Gui.ToplevelComparer - name: ToplevelComparer - href: api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html - commentId: T:Terminal.Gui.ToplevelComparer - fullName: Terminal.Gui.ToplevelComparer - nameWithType: ToplevelComparer -- uid: Terminal.Gui.ToplevelComparer.Compare(Terminal.Gui.Toplevel,Terminal.Gui.Toplevel) - name: Compare(Toplevel, Toplevel) - href: api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html#Terminal_Gui_ToplevelComparer_Compare_Terminal_Gui_Toplevel_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.ToplevelComparer.Compare(Terminal.Gui.Toplevel,Terminal.Gui.Toplevel) - fullName: Terminal.Gui.ToplevelComparer.Compare(Terminal.Gui.Toplevel, Terminal.Gui.Toplevel) - nameWithType: ToplevelComparer.Compare(Toplevel, Toplevel) -- uid: Terminal.Gui.ToplevelComparer.Compare* - name: Compare - href: api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html#Terminal_Gui_ToplevelComparer_Compare_ - commentId: Overload:Terminal.Gui.ToplevelComparer.Compare - isSpec: "True" - fullName: Terminal.Gui.ToplevelComparer.Compare - nameWithType: ToplevelComparer.Compare -- uid: Terminal.Gui.ToplevelEqualityComparer - name: ToplevelEqualityComparer - href: api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html - commentId: T:Terminal.Gui.ToplevelEqualityComparer - fullName: Terminal.Gui.ToplevelEqualityComparer - nameWithType: ToplevelEqualityComparer -- uid: Terminal.Gui.ToplevelEqualityComparer.Equals(Terminal.Gui.Toplevel,Terminal.Gui.Toplevel) - name: Equals(Toplevel, Toplevel) - href: api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html#Terminal_Gui_ToplevelEqualityComparer_Equals_Terminal_Gui_Toplevel_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.ToplevelEqualityComparer.Equals(Terminal.Gui.Toplevel,Terminal.Gui.Toplevel) - fullName: Terminal.Gui.ToplevelEqualityComparer.Equals(Terminal.Gui.Toplevel, Terminal.Gui.Toplevel) - nameWithType: ToplevelEqualityComparer.Equals(Toplevel, Toplevel) -- uid: Terminal.Gui.ToplevelEqualityComparer.Equals* - name: Equals - href: api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html#Terminal_Gui_ToplevelEqualityComparer_Equals_ - commentId: Overload:Terminal.Gui.ToplevelEqualityComparer.Equals - isSpec: "True" - fullName: Terminal.Gui.ToplevelEqualityComparer.Equals - nameWithType: ToplevelEqualityComparer.Equals -- uid: Terminal.Gui.ToplevelEqualityComparer.GetHashCode(Terminal.Gui.Toplevel) - name: GetHashCode(Toplevel) - href: api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html#Terminal_Gui_ToplevelEqualityComparer_GetHashCode_Terminal_Gui_Toplevel_ - commentId: M:Terminal.Gui.ToplevelEqualityComparer.GetHashCode(Terminal.Gui.Toplevel) - fullName: Terminal.Gui.ToplevelEqualityComparer.GetHashCode(Terminal.Gui.Toplevel) - nameWithType: ToplevelEqualityComparer.GetHashCode(Toplevel) -- uid: Terminal.Gui.ToplevelEqualityComparer.GetHashCode* - name: GetHashCode - href: api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html#Terminal_Gui_ToplevelEqualityComparer_GetHashCode_ - commentId: Overload:Terminal.Gui.ToplevelEqualityComparer.GetHashCode - isSpec: "True" - fullName: Terminal.Gui.ToplevelEqualityComparer.GetHashCode - nameWithType: ToplevelEqualityComparer.GetHashCode -- uid: Terminal.Gui.Trees - name: Terminal.Gui.Trees - href: api/Terminal.Gui/Terminal.Gui.Trees.html - commentId: N:Terminal.Gui.Trees - fullName: Terminal.Gui.Trees - nameWithType: Terminal.Gui.Trees -- uid: Terminal.Gui.Trees.AspectGetterDelegate`1 - name: AspectGetterDelegate - href: api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html - commentId: T:Terminal.Gui.Trees.AspectGetterDelegate`1 - name.vb: AspectGetterDelegate(Of T) - fullName: Terminal.Gui.Trees.AspectGetterDelegate - fullName.vb: Terminal.Gui.Trees.AspectGetterDelegate(Of T) - nameWithType: AspectGetterDelegate - nameWithType.vb: AspectGetterDelegate(Of T) -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1 - name: DelegateTreeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html - commentId: T:Terminal.Gui.Trees.DelegateTreeBuilder`1 - name.vb: DelegateTreeBuilder(Of T) - fullName: Terminal.Gui.Trees.DelegateTreeBuilder - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T) - nameWithType: DelegateTreeBuilder - nameWithType.vb: DelegateTreeBuilder(Of T) -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`0}}) - name: DelegateTreeBuilder(Func>) - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1__ctor_System_Func__0_System_Collections_Generic_IEnumerable__0___ - commentId: M:Terminal.Gui.Trees.DelegateTreeBuilder`1.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`0}}) - name.vb: DelegateTreeBuilder(Func(Of T, IEnumerable(Of T))) - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.DelegateTreeBuilder(System.Func>) - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).DelegateTreeBuilder(System.Func(Of T, System.Collections.Generic.IEnumerable(Of T))) - nameWithType: DelegateTreeBuilder.DelegateTreeBuilder(Func>) - nameWithType.vb: DelegateTreeBuilder(Of T).DelegateTreeBuilder(Func(Of T, IEnumerable(Of T))) -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`0}},System.Func{`0,System.Boolean}) - name: DelegateTreeBuilder(Func>, Func) - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1__ctor_System_Func__0_System_Collections_Generic_IEnumerable__0___System_Func__0_System_Boolean__ - commentId: M:Terminal.Gui.Trees.DelegateTreeBuilder`1.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`0}},System.Func{`0,System.Boolean}) - name.vb: DelegateTreeBuilder(Func(Of T, IEnumerable(Of T)), Func(Of T, Boolean)) - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.DelegateTreeBuilder(System.Func>, System.Func) - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).DelegateTreeBuilder(System.Func(Of T, System.Collections.Generic.IEnumerable(Of T)), System.Func(Of T, System.Boolean)) - nameWithType: DelegateTreeBuilder.DelegateTreeBuilder(Func>, Func) - nameWithType.vb: DelegateTreeBuilder(Of T).DelegateTreeBuilder(Func(Of T, IEnumerable(Of T)), Func(Of T, Boolean)) -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.#ctor* - name: DelegateTreeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1__ctor_ - commentId: Overload:Terminal.Gui.Trees.DelegateTreeBuilder`1.#ctor - isSpec: "True" - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.DelegateTreeBuilder - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).DelegateTreeBuilder - nameWithType: DelegateTreeBuilder.DelegateTreeBuilder - nameWithType.vb: DelegateTreeBuilder(Of T).DelegateTreeBuilder -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.CanExpand(`0) - name: CanExpand(T) - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1_CanExpand__0_ - commentId: M:Terminal.Gui.Trees.DelegateTreeBuilder`1.CanExpand(`0) - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.CanExpand(T) - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).CanExpand(T) - nameWithType: DelegateTreeBuilder.CanExpand(T) - nameWithType.vb: DelegateTreeBuilder(Of T).CanExpand(T) -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.CanExpand* - name: CanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1_CanExpand_ - commentId: Overload:Terminal.Gui.Trees.DelegateTreeBuilder`1.CanExpand - isSpec: "True" - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.CanExpand - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).CanExpand - nameWithType: DelegateTreeBuilder.CanExpand - nameWithType.vb: DelegateTreeBuilder(Of T).CanExpand -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.GetChildren(`0) - name: GetChildren(T) - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1_GetChildren__0_ - commentId: M:Terminal.Gui.Trees.DelegateTreeBuilder`1.GetChildren(`0) - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.GetChildren(T) - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).GetChildren(T) - nameWithType: DelegateTreeBuilder.GetChildren(T) - nameWithType.vb: DelegateTreeBuilder(Of T).GetChildren(T) -- uid: Terminal.Gui.Trees.DelegateTreeBuilder`1.GetChildren* - name: GetChildren - href: api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html#Terminal_Gui_Trees_DelegateTreeBuilder_1_GetChildren_ - commentId: Overload:Terminal.Gui.Trees.DelegateTreeBuilder`1.GetChildren - isSpec: "True" - fullName: Terminal.Gui.Trees.DelegateTreeBuilder.GetChildren - fullName.vb: Terminal.Gui.Trees.DelegateTreeBuilder(Of T).GetChildren - nameWithType: DelegateTreeBuilder.GetChildren - nameWithType.vb: DelegateTreeBuilder(Of T).GetChildren -- uid: Terminal.Gui.Trees.ITreeBuilder`1 - name: ITreeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html - commentId: T:Terminal.Gui.Trees.ITreeBuilder`1 - name.vb: ITreeBuilder(Of T) - fullName: Terminal.Gui.Trees.ITreeBuilder - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T) - nameWithType: ITreeBuilder - nameWithType.vb: ITreeBuilder(Of T) -- uid: Terminal.Gui.Trees.ITreeBuilder`1.CanExpand(`0) - name: CanExpand(T) - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html#Terminal_Gui_Trees_ITreeBuilder_1_CanExpand__0_ - commentId: M:Terminal.Gui.Trees.ITreeBuilder`1.CanExpand(`0) - fullName: Terminal.Gui.Trees.ITreeBuilder.CanExpand(T) - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T).CanExpand(T) - nameWithType: ITreeBuilder.CanExpand(T) - nameWithType.vb: ITreeBuilder(Of T).CanExpand(T) -- uid: Terminal.Gui.Trees.ITreeBuilder`1.CanExpand* - name: CanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html#Terminal_Gui_Trees_ITreeBuilder_1_CanExpand_ - commentId: Overload:Terminal.Gui.Trees.ITreeBuilder`1.CanExpand - isSpec: "True" - fullName: Terminal.Gui.Trees.ITreeBuilder.CanExpand - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T).CanExpand - nameWithType: ITreeBuilder.CanExpand - nameWithType.vb: ITreeBuilder(Of T).CanExpand -- uid: Terminal.Gui.Trees.ITreeBuilder`1.GetChildren(`0) - name: GetChildren(T) - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html#Terminal_Gui_Trees_ITreeBuilder_1_GetChildren__0_ - commentId: M:Terminal.Gui.Trees.ITreeBuilder`1.GetChildren(`0) - fullName: Terminal.Gui.Trees.ITreeBuilder.GetChildren(T) - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T).GetChildren(T) - nameWithType: ITreeBuilder.GetChildren(T) - nameWithType.vb: ITreeBuilder(Of T).GetChildren(T) -- uid: Terminal.Gui.Trees.ITreeBuilder`1.GetChildren* - name: GetChildren - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html#Terminal_Gui_Trees_ITreeBuilder_1_GetChildren_ - commentId: Overload:Terminal.Gui.Trees.ITreeBuilder`1.GetChildren - isSpec: "True" - fullName: Terminal.Gui.Trees.ITreeBuilder.GetChildren - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T).GetChildren - nameWithType: ITreeBuilder.GetChildren - nameWithType.vb: ITreeBuilder(Of T).GetChildren -- uid: Terminal.Gui.Trees.ITreeBuilder`1.SupportsCanExpand - name: SupportsCanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html#Terminal_Gui_Trees_ITreeBuilder_1_SupportsCanExpand - commentId: P:Terminal.Gui.Trees.ITreeBuilder`1.SupportsCanExpand - fullName: Terminal.Gui.Trees.ITreeBuilder.SupportsCanExpand - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T).SupportsCanExpand - nameWithType: ITreeBuilder.SupportsCanExpand - nameWithType.vb: ITreeBuilder(Of T).SupportsCanExpand -- uid: Terminal.Gui.Trees.ITreeBuilder`1.SupportsCanExpand* - name: SupportsCanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html#Terminal_Gui_Trees_ITreeBuilder_1_SupportsCanExpand_ - commentId: Overload:Terminal.Gui.Trees.ITreeBuilder`1.SupportsCanExpand - isSpec: "True" - fullName: Terminal.Gui.Trees.ITreeBuilder.SupportsCanExpand - fullName.vb: Terminal.Gui.Trees.ITreeBuilder(Of T).SupportsCanExpand - nameWithType: ITreeBuilder.SupportsCanExpand - nameWithType.vb: ITreeBuilder(Of T).SupportsCanExpand -- uid: Terminal.Gui.Trees.ITreeNode - name: ITreeNode - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html - commentId: T:Terminal.Gui.Trees.ITreeNode - fullName: Terminal.Gui.Trees.ITreeNode - nameWithType: ITreeNode -- uid: Terminal.Gui.Trees.ITreeNode.Children - name: Children - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html#Terminal_Gui_Trees_ITreeNode_Children - commentId: P:Terminal.Gui.Trees.ITreeNode.Children - fullName: Terminal.Gui.Trees.ITreeNode.Children - nameWithType: ITreeNode.Children -- uid: Terminal.Gui.Trees.ITreeNode.Children* - name: Children - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html#Terminal_Gui_Trees_ITreeNode_Children_ - commentId: Overload:Terminal.Gui.Trees.ITreeNode.Children - isSpec: "True" - fullName: Terminal.Gui.Trees.ITreeNode.Children - nameWithType: ITreeNode.Children -- uid: Terminal.Gui.Trees.ITreeNode.Tag - name: Tag - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html#Terminal_Gui_Trees_ITreeNode_Tag - commentId: P:Terminal.Gui.Trees.ITreeNode.Tag - fullName: Terminal.Gui.Trees.ITreeNode.Tag - nameWithType: ITreeNode.Tag -- uid: Terminal.Gui.Trees.ITreeNode.Tag* - name: Tag - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html#Terminal_Gui_Trees_ITreeNode_Tag_ - commentId: Overload:Terminal.Gui.Trees.ITreeNode.Tag - isSpec: "True" - fullName: Terminal.Gui.Trees.ITreeNode.Tag - nameWithType: ITreeNode.Tag -- uid: Terminal.Gui.Trees.ITreeNode.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html#Terminal_Gui_Trees_ITreeNode_Text - commentId: P:Terminal.Gui.Trees.ITreeNode.Text - fullName: Terminal.Gui.Trees.ITreeNode.Text - nameWithType: ITreeNode.Text -- uid: Terminal.Gui.Trees.ITreeNode.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html#Terminal_Gui_Trees_ITreeNode_Text_ - commentId: Overload:Terminal.Gui.Trees.ITreeNode.Text - isSpec: "True" - fullName: Terminal.Gui.Trees.ITreeNode.Text - nameWithType: ITreeNode.Text -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1 - name: ObjectActivatedEventArgs - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html - commentId: T:Terminal.Gui.Trees.ObjectActivatedEventArgs`1 - name.vb: ObjectActivatedEventArgs(Of T) - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T) - nameWithType: ObjectActivatedEventArgs - nameWithType.vb: ObjectActivatedEventArgs(Of T) -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1.#ctor(Terminal.Gui.TreeView{`0},`0) - name: ObjectActivatedEventArgs(TreeView, T) - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html#Terminal_Gui_Trees_ObjectActivatedEventArgs_1__ctor_Terminal_Gui_TreeView__0___0_ - commentId: M:Terminal.Gui.Trees.ObjectActivatedEventArgs`1.#ctor(Terminal.Gui.TreeView{`0},`0) - name.vb: ObjectActivatedEventArgs(TreeView(Of T), T) - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs.ObjectActivatedEventArgs(Terminal.Gui.TreeView, T) - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T).ObjectActivatedEventArgs(Terminal.Gui.TreeView(Of T), T) - nameWithType: ObjectActivatedEventArgs.ObjectActivatedEventArgs(TreeView, T) - nameWithType.vb: ObjectActivatedEventArgs(Of T).ObjectActivatedEventArgs(TreeView(Of T), T) -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1.#ctor* - name: ObjectActivatedEventArgs - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html#Terminal_Gui_Trees_ObjectActivatedEventArgs_1__ctor_ - commentId: Overload:Terminal.Gui.Trees.ObjectActivatedEventArgs`1.#ctor - isSpec: "True" - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs.ObjectActivatedEventArgs - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T).ObjectActivatedEventArgs - nameWithType: ObjectActivatedEventArgs.ObjectActivatedEventArgs - nameWithType.vb: ObjectActivatedEventArgs(Of T).ObjectActivatedEventArgs -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1.ActivatedObject - name: ActivatedObject - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html#Terminal_Gui_Trees_ObjectActivatedEventArgs_1_ActivatedObject - commentId: P:Terminal.Gui.Trees.ObjectActivatedEventArgs`1.ActivatedObject - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs.ActivatedObject - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T).ActivatedObject - nameWithType: ObjectActivatedEventArgs.ActivatedObject - nameWithType.vb: ObjectActivatedEventArgs(Of T).ActivatedObject -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1.ActivatedObject* - name: ActivatedObject - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html#Terminal_Gui_Trees_ObjectActivatedEventArgs_1_ActivatedObject_ - commentId: Overload:Terminal.Gui.Trees.ObjectActivatedEventArgs`1.ActivatedObject - isSpec: "True" - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs.ActivatedObject - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T).ActivatedObject - nameWithType: ObjectActivatedEventArgs.ActivatedObject - nameWithType.vb: ObjectActivatedEventArgs(Of T).ActivatedObject -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1.Tree - name: Tree - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html#Terminal_Gui_Trees_ObjectActivatedEventArgs_1_Tree - commentId: P:Terminal.Gui.Trees.ObjectActivatedEventArgs`1.Tree - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs.Tree - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T).Tree - nameWithType: ObjectActivatedEventArgs.Tree - nameWithType.vb: ObjectActivatedEventArgs(Of T).Tree -- uid: Terminal.Gui.Trees.ObjectActivatedEventArgs`1.Tree* - name: Tree - href: api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html#Terminal_Gui_Trees_ObjectActivatedEventArgs_1_Tree_ - commentId: Overload:Terminal.Gui.Trees.ObjectActivatedEventArgs`1.Tree - isSpec: "True" - fullName: Terminal.Gui.Trees.ObjectActivatedEventArgs.Tree - fullName.vb: Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T).Tree - nameWithType: ObjectActivatedEventArgs.Tree - nameWithType.vb: ObjectActivatedEventArgs(Of T).Tree -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1 - name: SelectionChangedEventArgs - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html - commentId: T:Terminal.Gui.Trees.SelectionChangedEventArgs`1 - name.vb: SelectionChangedEventArgs(Of T) - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T) - nameWithType: SelectionChangedEventArgs - nameWithType.vb: SelectionChangedEventArgs(Of T) -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.#ctor(Terminal.Gui.TreeView{`0},`0,`0) - name: SelectionChangedEventArgs(TreeView, T, T) - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1__ctor_Terminal_Gui_TreeView__0___0__0_ - commentId: M:Terminal.Gui.Trees.SelectionChangedEventArgs`1.#ctor(Terminal.Gui.TreeView{`0},`0,`0) - name.vb: SelectionChangedEventArgs(TreeView(Of T), T, T) - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.SelectionChangedEventArgs(Terminal.Gui.TreeView, T, T) - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).SelectionChangedEventArgs(Terminal.Gui.TreeView(Of T), T, T) - nameWithType: SelectionChangedEventArgs.SelectionChangedEventArgs(TreeView, T, T) - nameWithType.vb: SelectionChangedEventArgs(Of T).SelectionChangedEventArgs(TreeView(Of T), T, T) -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.#ctor* - name: SelectionChangedEventArgs - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1__ctor_ - commentId: Overload:Terminal.Gui.Trees.SelectionChangedEventArgs`1.#ctor - isSpec: "True" - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.SelectionChangedEventArgs - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).SelectionChangedEventArgs - nameWithType: SelectionChangedEventArgs.SelectionChangedEventArgs - nameWithType.vb: SelectionChangedEventArgs(Of T).SelectionChangedEventArgs -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.NewValue - name: NewValue - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1_NewValue - commentId: P:Terminal.Gui.Trees.SelectionChangedEventArgs`1.NewValue - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.NewValue - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).NewValue - nameWithType: SelectionChangedEventArgs.NewValue - nameWithType.vb: SelectionChangedEventArgs(Of T).NewValue -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.NewValue* - name: NewValue - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1_NewValue_ - commentId: Overload:Terminal.Gui.Trees.SelectionChangedEventArgs`1.NewValue - isSpec: "True" - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.NewValue - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).NewValue - nameWithType: SelectionChangedEventArgs.NewValue - nameWithType.vb: SelectionChangedEventArgs(Of T).NewValue -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.OldValue - name: OldValue - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1_OldValue - commentId: P:Terminal.Gui.Trees.SelectionChangedEventArgs`1.OldValue - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.OldValue - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).OldValue - nameWithType: SelectionChangedEventArgs.OldValue - nameWithType.vb: SelectionChangedEventArgs(Of T).OldValue -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.OldValue* - name: OldValue - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1_OldValue_ - commentId: Overload:Terminal.Gui.Trees.SelectionChangedEventArgs`1.OldValue - isSpec: "True" - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.OldValue - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).OldValue - nameWithType: SelectionChangedEventArgs.OldValue - nameWithType.vb: SelectionChangedEventArgs(Of T).OldValue -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.Tree - name: Tree - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1_Tree - commentId: P:Terminal.Gui.Trees.SelectionChangedEventArgs`1.Tree - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.Tree - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).Tree - nameWithType: SelectionChangedEventArgs.Tree - nameWithType.vb: SelectionChangedEventArgs(Of T).Tree -- uid: Terminal.Gui.Trees.SelectionChangedEventArgs`1.Tree* - name: Tree - href: api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html#Terminal_Gui_Trees_SelectionChangedEventArgs_1_Tree_ - commentId: Overload:Terminal.Gui.Trees.SelectionChangedEventArgs`1.Tree - isSpec: "True" - fullName: Terminal.Gui.Trees.SelectionChangedEventArgs.Tree - fullName.vb: Terminal.Gui.Trees.SelectionChangedEventArgs(Of T).Tree - nameWithType: SelectionChangedEventArgs.Tree - nameWithType.vb: SelectionChangedEventArgs(Of T).Tree -- uid: Terminal.Gui.Trees.TreeBuilder`1 - name: TreeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html - commentId: T:Terminal.Gui.Trees.TreeBuilder`1 - name.vb: TreeBuilder(Of T) - fullName: Terminal.Gui.Trees.TreeBuilder - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T) - nameWithType: TreeBuilder - nameWithType.vb: TreeBuilder(Of T) -- uid: Terminal.Gui.Trees.TreeBuilder`1.#ctor(System.Boolean) - name: TreeBuilder(Boolean) - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1__ctor_System_Boolean_ - commentId: M:Terminal.Gui.Trees.TreeBuilder`1.#ctor(System.Boolean) - fullName: Terminal.Gui.Trees.TreeBuilder.TreeBuilder(System.Boolean) - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).TreeBuilder(System.Boolean) - nameWithType: TreeBuilder.TreeBuilder(Boolean) - nameWithType.vb: TreeBuilder(Of T).TreeBuilder(Boolean) -- uid: Terminal.Gui.Trees.TreeBuilder`1.#ctor* - name: TreeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1__ctor_ - commentId: Overload:Terminal.Gui.Trees.TreeBuilder`1.#ctor - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeBuilder.TreeBuilder - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).TreeBuilder - nameWithType: TreeBuilder.TreeBuilder - nameWithType.vb: TreeBuilder(Of T).TreeBuilder -- uid: Terminal.Gui.Trees.TreeBuilder`1.CanExpand(`0) - name: CanExpand(T) - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1_CanExpand__0_ - commentId: M:Terminal.Gui.Trees.TreeBuilder`1.CanExpand(`0) - fullName: Terminal.Gui.Trees.TreeBuilder.CanExpand(T) - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).CanExpand(T) - nameWithType: TreeBuilder.CanExpand(T) - nameWithType.vb: TreeBuilder(Of T).CanExpand(T) -- uid: Terminal.Gui.Trees.TreeBuilder`1.CanExpand* - name: CanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1_CanExpand_ - commentId: Overload:Terminal.Gui.Trees.TreeBuilder`1.CanExpand - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeBuilder.CanExpand - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).CanExpand - nameWithType: TreeBuilder.CanExpand - nameWithType.vb: TreeBuilder(Of T).CanExpand -- uid: Terminal.Gui.Trees.TreeBuilder`1.GetChildren(`0) - name: GetChildren(T) - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1_GetChildren__0_ - commentId: M:Terminal.Gui.Trees.TreeBuilder`1.GetChildren(`0) - fullName: Terminal.Gui.Trees.TreeBuilder.GetChildren(T) - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).GetChildren(T) - nameWithType: TreeBuilder.GetChildren(T) - nameWithType.vb: TreeBuilder(Of T).GetChildren(T) -- uid: Terminal.Gui.Trees.TreeBuilder`1.GetChildren* - name: GetChildren - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1_GetChildren_ - commentId: Overload:Terminal.Gui.Trees.TreeBuilder`1.GetChildren - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeBuilder.GetChildren - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).GetChildren - nameWithType: TreeBuilder.GetChildren - nameWithType.vb: TreeBuilder(Of T).GetChildren -- uid: Terminal.Gui.Trees.TreeBuilder`1.SupportsCanExpand - name: SupportsCanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1_SupportsCanExpand - commentId: P:Terminal.Gui.Trees.TreeBuilder`1.SupportsCanExpand - fullName: Terminal.Gui.Trees.TreeBuilder.SupportsCanExpand - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).SupportsCanExpand - nameWithType: TreeBuilder.SupportsCanExpand - nameWithType.vb: TreeBuilder(Of T).SupportsCanExpand -- uid: Terminal.Gui.Trees.TreeBuilder`1.SupportsCanExpand* - name: SupportsCanExpand - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html#Terminal_Gui_Trees_TreeBuilder_1_SupportsCanExpand_ - commentId: Overload:Terminal.Gui.Trees.TreeBuilder`1.SupportsCanExpand - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeBuilder.SupportsCanExpand - fullName.vb: Terminal.Gui.Trees.TreeBuilder(Of T).SupportsCanExpand - nameWithType: TreeBuilder.SupportsCanExpand - nameWithType.vb: TreeBuilder(Of T).SupportsCanExpand -- uid: Terminal.Gui.Trees.TreeNode - name: TreeNode - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html - commentId: T:Terminal.Gui.Trees.TreeNode - fullName: Terminal.Gui.Trees.TreeNode - nameWithType: TreeNode -- uid: Terminal.Gui.Trees.TreeNode.#ctor - name: TreeNode() - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode__ctor - commentId: M:Terminal.Gui.Trees.TreeNode.#ctor - fullName: Terminal.Gui.Trees.TreeNode.TreeNode() - nameWithType: TreeNode.TreeNode() -- uid: Terminal.Gui.Trees.TreeNode.#ctor(System.String) - name: TreeNode(String) - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode__ctor_System_String_ - commentId: M:Terminal.Gui.Trees.TreeNode.#ctor(System.String) - fullName: Terminal.Gui.Trees.TreeNode.TreeNode(System.String) - nameWithType: TreeNode.TreeNode(String) -- uid: Terminal.Gui.Trees.TreeNode.#ctor* - name: TreeNode - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode__ctor_ - commentId: Overload:Terminal.Gui.Trees.TreeNode.#ctor - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNode.TreeNode - nameWithType: TreeNode.TreeNode -- uid: Terminal.Gui.Trees.TreeNode.Children - name: Children - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_Children - commentId: P:Terminal.Gui.Trees.TreeNode.Children - fullName: Terminal.Gui.Trees.TreeNode.Children - nameWithType: TreeNode.Children -- uid: Terminal.Gui.Trees.TreeNode.Children* - name: Children - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_Children_ - commentId: Overload:Terminal.Gui.Trees.TreeNode.Children - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNode.Children - nameWithType: TreeNode.Children -- uid: Terminal.Gui.Trees.TreeNode.Tag - name: Tag - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_Tag - commentId: P:Terminal.Gui.Trees.TreeNode.Tag - fullName: Terminal.Gui.Trees.TreeNode.Tag - nameWithType: TreeNode.Tag -- uid: Terminal.Gui.Trees.TreeNode.Tag* - name: Tag - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_Tag_ - commentId: Overload:Terminal.Gui.Trees.TreeNode.Tag - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNode.Tag - nameWithType: TreeNode.Tag -- uid: Terminal.Gui.Trees.TreeNode.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_Text - commentId: P:Terminal.Gui.Trees.TreeNode.Text - fullName: Terminal.Gui.Trees.TreeNode.Text - nameWithType: TreeNode.Text -- uid: Terminal.Gui.Trees.TreeNode.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_Text_ - commentId: Overload:Terminal.Gui.Trees.TreeNode.Text - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNode.Text - nameWithType: TreeNode.Text -- uid: Terminal.Gui.Trees.TreeNode.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_ToString - commentId: M:Terminal.Gui.Trees.TreeNode.ToString - fullName: Terminal.Gui.Trees.TreeNode.ToString() - nameWithType: TreeNode.ToString() -- uid: Terminal.Gui.Trees.TreeNode.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html#Terminal_Gui_Trees_TreeNode_ToString_ - commentId: Overload:Terminal.Gui.Trees.TreeNode.ToString - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNode.ToString - nameWithType: TreeNode.ToString -- uid: Terminal.Gui.Trees.TreeNodeBuilder - name: TreeNodeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html - commentId: T:Terminal.Gui.Trees.TreeNodeBuilder - fullName: Terminal.Gui.Trees.TreeNodeBuilder - nameWithType: TreeNodeBuilder -- uid: Terminal.Gui.Trees.TreeNodeBuilder.#ctor - name: TreeNodeBuilder() - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html#Terminal_Gui_Trees_TreeNodeBuilder__ctor - commentId: M:Terminal.Gui.Trees.TreeNodeBuilder.#ctor - fullName: Terminal.Gui.Trees.TreeNodeBuilder.TreeNodeBuilder() - nameWithType: TreeNodeBuilder.TreeNodeBuilder() -- uid: Terminal.Gui.Trees.TreeNodeBuilder.#ctor* - name: TreeNodeBuilder - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html#Terminal_Gui_Trees_TreeNodeBuilder__ctor_ - commentId: Overload:Terminal.Gui.Trees.TreeNodeBuilder.#ctor - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNodeBuilder.TreeNodeBuilder - nameWithType: TreeNodeBuilder.TreeNodeBuilder -- uid: Terminal.Gui.Trees.TreeNodeBuilder.GetChildren(Terminal.Gui.Trees.ITreeNode) - name: GetChildren(ITreeNode) - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html#Terminal_Gui_Trees_TreeNodeBuilder_GetChildren_Terminal_Gui_Trees_ITreeNode_ - commentId: M:Terminal.Gui.Trees.TreeNodeBuilder.GetChildren(Terminal.Gui.Trees.ITreeNode) - fullName: Terminal.Gui.Trees.TreeNodeBuilder.GetChildren(Terminal.Gui.Trees.ITreeNode) - nameWithType: TreeNodeBuilder.GetChildren(ITreeNode) -- uid: Terminal.Gui.Trees.TreeNodeBuilder.GetChildren* - name: GetChildren - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html#Terminal_Gui_Trees_TreeNodeBuilder_GetChildren_ - commentId: Overload:Terminal.Gui.Trees.TreeNodeBuilder.GetChildren - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeNodeBuilder.GetChildren - nameWithType: TreeNodeBuilder.GetChildren -- uid: Terminal.Gui.Trees.TreeStyle - name: TreeStyle - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html - commentId: T:Terminal.Gui.Trees.TreeStyle - fullName: Terminal.Gui.Trees.TreeStyle - nameWithType: TreeStyle -- uid: Terminal.Gui.Trees.TreeStyle.CollapseableSymbol - name: CollapseableSymbol - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_CollapseableSymbol - commentId: P:Terminal.Gui.Trees.TreeStyle.CollapseableSymbol - fullName: Terminal.Gui.Trees.TreeStyle.CollapseableSymbol - nameWithType: TreeStyle.CollapseableSymbol -- uid: Terminal.Gui.Trees.TreeStyle.CollapseableSymbol* - name: CollapseableSymbol - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_CollapseableSymbol_ - commentId: Overload:Terminal.Gui.Trees.TreeStyle.CollapseableSymbol - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeStyle.CollapseableSymbol - nameWithType: TreeStyle.CollapseableSymbol -- uid: Terminal.Gui.Trees.TreeStyle.ColorExpandSymbol - name: ColorExpandSymbol - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_ColorExpandSymbol - commentId: P:Terminal.Gui.Trees.TreeStyle.ColorExpandSymbol - fullName: Terminal.Gui.Trees.TreeStyle.ColorExpandSymbol - nameWithType: TreeStyle.ColorExpandSymbol -- uid: Terminal.Gui.Trees.TreeStyle.ColorExpandSymbol* - name: ColorExpandSymbol - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_ColorExpandSymbol_ - commentId: Overload:Terminal.Gui.Trees.TreeStyle.ColorExpandSymbol - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeStyle.ColorExpandSymbol - nameWithType: TreeStyle.ColorExpandSymbol -- uid: Terminal.Gui.Trees.TreeStyle.ExpandableSymbol - name: ExpandableSymbol - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_ExpandableSymbol - commentId: P:Terminal.Gui.Trees.TreeStyle.ExpandableSymbol - fullName: Terminal.Gui.Trees.TreeStyle.ExpandableSymbol - nameWithType: TreeStyle.ExpandableSymbol -- uid: Terminal.Gui.Trees.TreeStyle.ExpandableSymbol* - name: ExpandableSymbol - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_ExpandableSymbol_ - commentId: Overload:Terminal.Gui.Trees.TreeStyle.ExpandableSymbol - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeStyle.ExpandableSymbol - nameWithType: TreeStyle.ExpandableSymbol -- uid: Terminal.Gui.Trees.TreeStyle.InvertExpandSymbolColors - name: InvertExpandSymbolColors - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_InvertExpandSymbolColors - commentId: P:Terminal.Gui.Trees.TreeStyle.InvertExpandSymbolColors - fullName: Terminal.Gui.Trees.TreeStyle.InvertExpandSymbolColors - nameWithType: TreeStyle.InvertExpandSymbolColors -- uid: Terminal.Gui.Trees.TreeStyle.InvertExpandSymbolColors* - name: InvertExpandSymbolColors - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_InvertExpandSymbolColors_ - commentId: Overload:Terminal.Gui.Trees.TreeStyle.InvertExpandSymbolColors - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeStyle.InvertExpandSymbolColors - nameWithType: TreeStyle.InvertExpandSymbolColors -- uid: Terminal.Gui.Trees.TreeStyle.LeaveLastRow - name: LeaveLastRow - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_LeaveLastRow - commentId: P:Terminal.Gui.Trees.TreeStyle.LeaveLastRow - fullName: Terminal.Gui.Trees.TreeStyle.LeaveLastRow - nameWithType: TreeStyle.LeaveLastRow -- uid: Terminal.Gui.Trees.TreeStyle.LeaveLastRow* - name: LeaveLastRow - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_LeaveLastRow_ - commentId: Overload:Terminal.Gui.Trees.TreeStyle.LeaveLastRow - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeStyle.LeaveLastRow - nameWithType: TreeStyle.LeaveLastRow -- uid: Terminal.Gui.Trees.TreeStyle.ShowBranchLines - name: ShowBranchLines - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_ShowBranchLines - commentId: P:Terminal.Gui.Trees.TreeStyle.ShowBranchLines - fullName: Terminal.Gui.Trees.TreeStyle.ShowBranchLines - nameWithType: TreeStyle.ShowBranchLines -- uid: Terminal.Gui.Trees.TreeStyle.ShowBranchLines* - name: ShowBranchLines - href: api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html#Terminal_Gui_Trees_TreeStyle_ShowBranchLines_ - commentId: Overload:Terminal.Gui.Trees.TreeStyle.ShowBranchLines - isSpec: "True" - fullName: Terminal.Gui.Trees.TreeStyle.ShowBranchLines - nameWithType: TreeStyle.ShowBranchLines -- uid: Terminal.Gui.TreeView - name: TreeView - href: api/Terminal.Gui/Terminal.Gui.TreeView.html - commentId: T:Terminal.Gui.TreeView - fullName: Terminal.Gui.TreeView - nameWithType: TreeView -- uid: Terminal.Gui.TreeView.#ctor - name: TreeView() - href: api/Terminal.Gui/Terminal.Gui.TreeView.html#Terminal_Gui_TreeView__ctor - commentId: M:Terminal.Gui.TreeView.#ctor - fullName: Terminal.Gui.TreeView.TreeView() - nameWithType: TreeView.TreeView() -- uid: Terminal.Gui.TreeView.#ctor* - name: TreeView - href: api/Terminal.Gui/Terminal.Gui.TreeView.html#Terminal_Gui_TreeView__ctor_ - commentId: Overload:Terminal.Gui.TreeView.#ctor - isSpec: "True" - fullName: Terminal.Gui.TreeView.TreeView - nameWithType: TreeView.TreeView -- uid: Terminal.Gui.TreeView`1 - name: TreeView - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html - commentId: T:Terminal.Gui.TreeView`1 - name.vb: TreeView(Of T) - fullName: Terminal.Gui.TreeView - fullName.vb: Terminal.Gui.TreeView(Of T) - nameWithType: TreeView - nameWithType.vb: TreeView(Of T) -- uid: Terminal.Gui.TreeView`1.#ctor - name: TreeView() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1__ctor - commentId: M:Terminal.Gui.TreeView`1.#ctor - fullName: Terminal.Gui.TreeView.TreeView() - fullName.vb: Terminal.Gui.TreeView(Of T).TreeView() - nameWithType: TreeView.TreeView() - nameWithType.vb: TreeView(Of T).TreeView() -- uid: Terminal.Gui.TreeView`1.#ctor(Terminal.Gui.Trees.ITreeBuilder{`0}) - name: TreeView(ITreeBuilder) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1__ctor_Terminal_Gui_Trees_ITreeBuilder__0__ - commentId: M:Terminal.Gui.TreeView`1.#ctor(Terminal.Gui.Trees.ITreeBuilder{`0}) - name.vb: TreeView(ITreeBuilder(Of T)) - fullName: Terminal.Gui.TreeView.TreeView(Terminal.Gui.Trees.ITreeBuilder) - fullName.vb: Terminal.Gui.TreeView(Of T).TreeView(Terminal.Gui.Trees.ITreeBuilder(Of T)) - nameWithType: TreeView.TreeView(ITreeBuilder) - nameWithType.vb: TreeView(Of T).TreeView(ITreeBuilder(Of T)) -- uid: Terminal.Gui.TreeView`1.#ctor* - name: TreeView - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1__ctor_ - commentId: Overload:Terminal.Gui.TreeView`1.#ctor - isSpec: "True" - fullName: Terminal.Gui.TreeView.TreeView - fullName.vb: Terminal.Gui.TreeView(Of T).TreeView - nameWithType: TreeView.TreeView - nameWithType.vb: TreeView(Of T).TreeView -- uid: Terminal.Gui.TreeView`1.ActivateSelectedObjectIfAny - name: ActivateSelectedObjectIfAny() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ActivateSelectedObjectIfAny - commentId: M:Terminal.Gui.TreeView`1.ActivateSelectedObjectIfAny - fullName: Terminal.Gui.TreeView.ActivateSelectedObjectIfAny() - fullName.vb: Terminal.Gui.TreeView(Of T).ActivateSelectedObjectIfAny() - nameWithType: TreeView.ActivateSelectedObjectIfAny() - nameWithType.vb: TreeView(Of T).ActivateSelectedObjectIfAny() -- uid: Terminal.Gui.TreeView`1.ActivateSelectedObjectIfAny* - name: ActivateSelectedObjectIfAny - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ActivateSelectedObjectIfAny_ - commentId: Overload:Terminal.Gui.TreeView`1.ActivateSelectedObjectIfAny - isSpec: "True" - fullName: Terminal.Gui.TreeView.ActivateSelectedObjectIfAny - fullName.vb: Terminal.Gui.TreeView(Of T).ActivateSelectedObjectIfAny - nameWithType: TreeView.ActivateSelectedObjectIfAny - nameWithType.vb: TreeView(Of T).ActivateSelectedObjectIfAny -- uid: Terminal.Gui.TreeView`1.AddObject(`0) - name: AddObject(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AddObject__0_ - commentId: M:Terminal.Gui.TreeView`1.AddObject(`0) - fullName: Terminal.Gui.TreeView.AddObject(T) - fullName.vb: Terminal.Gui.TreeView(Of T).AddObject(T) - nameWithType: TreeView.AddObject(T) - nameWithType.vb: TreeView(Of T).AddObject(T) -- uid: Terminal.Gui.TreeView`1.AddObject* - name: AddObject - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AddObject_ - commentId: Overload:Terminal.Gui.TreeView`1.AddObject - isSpec: "True" - fullName: Terminal.Gui.TreeView.AddObject - fullName.vb: Terminal.Gui.TreeView(Of T).AddObject - nameWithType: TreeView.AddObject - nameWithType.vb: TreeView(Of T).AddObject -- uid: Terminal.Gui.TreeView`1.AddObjects(System.Collections.Generic.IEnumerable{`0}) - name: AddObjects(IEnumerable) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AddObjects_System_Collections_Generic_IEnumerable__0__ - commentId: M:Terminal.Gui.TreeView`1.AddObjects(System.Collections.Generic.IEnumerable{`0}) - name.vb: AddObjects(IEnumerable(Of T)) - fullName: Terminal.Gui.TreeView.AddObjects(System.Collections.Generic.IEnumerable) - fullName.vb: Terminal.Gui.TreeView(Of T).AddObjects(System.Collections.Generic.IEnumerable(Of T)) - nameWithType: TreeView.AddObjects(IEnumerable) - nameWithType.vb: TreeView(Of T).AddObjects(IEnumerable(Of T)) -- uid: Terminal.Gui.TreeView`1.AddObjects* - name: AddObjects - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AddObjects_ - commentId: Overload:Terminal.Gui.TreeView`1.AddObjects - isSpec: "True" - fullName: Terminal.Gui.TreeView.AddObjects - fullName.vb: Terminal.Gui.TreeView(Of T).AddObjects - nameWithType: TreeView.AddObjects - nameWithType.vb: TreeView(Of T).AddObjects -- uid: Terminal.Gui.TreeView`1.AdjustSelection(System.Int32,System.Boolean) - name: AdjustSelection(Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelection_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.AdjustSelection(System.Int32,System.Boolean) - fullName: Terminal.Gui.TreeView.AdjustSelection(System.Int32, System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelection(System.Int32, System.Boolean) - nameWithType: TreeView.AdjustSelection(Int32, Boolean) - nameWithType.vb: TreeView(Of T).AdjustSelection(Int32, Boolean) -- uid: Terminal.Gui.TreeView`1.AdjustSelection* - name: AdjustSelection - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelection_ - commentId: Overload:Terminal.Gui.TreeView`1.AdjustSelection - isSpec: "True" - fullName: Terminal.Gui.TreeView.AdjustSelection - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelection - nameWithType: TreeView.AdjustSelection - nameWithType.vb: TreeView(Of T).AdjustSelection -- uid: Terminal.Gui.TreeView`1.AdjustSelectionToBranchEnd - name: AdjustSelectionToBranchEnd() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelectionToBranchEnd - commentId: M:Terminal.Gui.TreeView`1.AdjustSelectionToBranchEnd - fullName: Terminal.Gui.TreeView.AdjustSelectionToBranchEnd() - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelectionToBranchEnd() - nameWithType: TreeView.AdjustSelectionToBranchEnd() - nameWithType.vb: TreeView(Of T).AdjustSelectionToBranchEnd() -- uid: Terminal.Gui.TreeView`1.AdjustSelectionToBranchEnd* - name: AdjustSelectionToBranchEnd - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelectionToBranchEnd_ - commentId: Overload:Terminal.Gui.TreeView`1.AdjustSelectionToBranchEnd - isSpec: "True" - fullName: Terminal.Gui.TreeView.AdjustSelectionToBranchEnd - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelectionToBranchEnd - nameWithType: TreeView.AdjustSelectionToBranchEnd - nameWithType.vb: TreeView(Of T).AdjustSelectionToBranchEnd -- uid: Terminal.Gui.TreeView`1.AdjustSelectionToBranchStart - name: AdjustSelectionToBranchStart() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelectionToBranchStart - commentId: M:Terminal.Gui.TreeView`1.AdjustSelectionToBranchStart - fullName: Terminal.Gui.TreeView.AdjustSelectionToBranchStart() - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelectionToBranchStart() - nameWithType: TreeView.AdjustSelectionToBranchStart() - nameWithType.vb: TreeView(Of T).AdjustSelectionToBranchStart() -- uid: Terminal.Gui.TreeView`1.AdjustSelectionToBranchStart* - name: AdjustSelectionToBranchStart - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelectionToBranchStart_ - commentId: Overload:Terminal.Gui.TreeView`1.AdjustSelectionToBranchStart - isSpec: "True" - fullName: Terminal.Gui.TreeView.AdjustSelectionToBranchStart - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelectionToBranchStart - nameWithType: TreeView.AdjustSelectionToBranchStart - nameWithType.vb: TreeView(Of T).AdjustSelectionToBranchStart -- uid: Terminal.Gui.TreeView`1.AdjustSelectionToNextItemBeginningWith(System.Char,System.StringComparison) - name: AdjustSelectionToNextItemBeginningWith(Char, StringComparison) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelectionToNextItemBeginningWith_System_Char_System_StringComparison_ - commentId: M:Terminal.Gui.TreeView`1.AdjustSelectionToNextItemBeginningWith(System.Char,System.StringComparison) - fullName: Terminal.Gui.TreeView.AdjustSelectionToNextItemBeginningWith(System.Char, System.StringComparison) - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelectionToNextItemBeginningWith(System.Char, System.StringComparison) - nameWithType: TreeView.AdjustSelectionToNextItemBeginningWith(Char, StringComparison) - nameWithType.vb: TreeView(Of T).AdjustSelectionToNextItemBeginningWith(Char, StringComparison) -- uid: Terminal.Gui.TreeView`1.AdjustSelectionToNextItemBeginningWith* - name: AdjustSelectionToNextItemBeginningWith - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AdjustSelectionToNextItemBeginningWith_ - commentId: Overload:Terminal.Gui.TreeView`1.AdjustSelectionToNextItemBeginningWith - isSpec: "True" - fullName: Terminal.Gui.TreeView.AdjustSelectionToNextItemBeginningWith - fullName.vb: Terminal.Gui.TreeView(Of T).AdjustSelectionToNextItemBeginningWith - nameWithType: TreeView.AdjustSelectionToNextItemBeginningWith - nameWithType.vb: TreeView(Of T).AdjustSelectionToNextItemBeginningWith -- uid: Terminal.Gui.TreeView`1.AllowLetterBasedNavigation - name: AllowLetterBasedNavigation - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AllowLetterBasedNavigation - commentId: P:Terminal.Gui.TreeView`1.AllowLetterBasedNavigation - fullName: Terminal.Gui.TreeView.AllowLetterBasedNavigation - fullName.vb: Terminal.Gui.TreeView(Of T).AllowLetterBasedNavigation - nameWithType: TreeView.AllowLetterBasedNavigation - nameWithType.vb: TreeView(Of T).AllowLetterBasedNavigation -- uid: Terminal.Gui.TreeView`1.AllowLetterBasedNavigation* - name: AllowLetterBasedNavigation - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AllowLetterBasedNavigation_ - commentId: Overload:Terminal.Gui.TreeView`1.AllowLetterBasedNavigation - isSpec: "True" - fullName: Terminal.Gui.TreeView.AllowLetterBasedNavigation - fullName.vb: Terminal.Gui.TreeView(Of T).AllowLetterBasedNavigation - nameWithType: TreeView.AllowLetterBasedNavigation - nameWithType.vb: TreeView(Of T).AllowLetterBasedNavigation -- uid: Terminal.Gui.TreeView`1.AspectGetter - name: AspectGetter - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AspectGetter - commentId: P:Terminal.Gui.TreeView`1.AspectGetter - fullName: Terminal.Gui.TreeView.AspectGetter - fullName.vb: Terminal.Gui.TreeView(Of T).AspectGetter - nameWithType: TreeView.AspectGetter - nameWithType.vb: TreeView(Of T).AspectGetter -- uid: Terminal.Gui.TreeView`1.AspectGetter* - name: AspectGetter - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_AspectGetter_ - commentId: Overload:Terminal.Gui.TreeView`1.AspectGetter - isSpec: "True" - fullName: Terminal.Gui.TreeView.AspectGetter - fullName.vb: Terminal.Gui.TreeView(Of T).AspectGetter - nameWithType: TreeView.AspectGetter - nameWithType.vb: TreeView(Of T).AspectGetter -- uid: Terminal.Gui.TreeView`1.CanExpand(`0) - name: CanExpand(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CanExpand__0_ - commentId: M:Terminal.Gui.TreeView`1.CanExpand(`0) - fullName: Terminal.Gui.TreeView.CanExpand(T) - fullName.vb: Terminal.Gui.TreeView(Of T).CanExpand(T) - nameWithType: TreeView.CanExpand(T) - nameWithType.vb: TreeView(Of T).CanExpand(T) -- uid: Terminal.Gui.TreeView`1.CanExpand* - name: CanExpand - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CanExpand_ - commentId: Overload:Terminal.Gui.TreeView`1.CanExpand - isSpec: "True" - fullName: Terminal.Gui.TreeView.CanExpand - fullName.vb: Terminal.Gui.TreeView(Of T).CanExpand - nameWithType: TreeView.CanExpand - nameWithType.vb: TreeView(Of T).CanExpand -- uid: Terminal.Gui.TreeView`1.ClearObjects - name: ClearObjects() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ClearObjects - commentId: M:Terminal.Gui.TreeView`1.ClearObjects - fullName: Terminal.Gui.TreeView.ClearObjects() - fullName.vb: Terminal.Gui.TreeView(Of T).ClearObjects() - nameWithType: TreeView.ClearObjects() - nameWithType.vb: TreeView(Of T).ClearObjects() -- uid: Terminal.Gui.TreeView`1.ClearObjects* - name: ClearObjects - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ClearObjects_ - commentId: Overload:Terminal.Gui.TreeView`1.ClearObjects - isSpec: "True" - fullName: Terminal.Gui.TreeView.ClearObjects - fullName.vb: Terminal.Gui.TreeView(Of T).ClearObjects - nameWithType: TreeView.ClearObjects - nameWithType.vb: TreeView(Of T).ClearObjects -- uid: Terminal.Gui.TreeView`1.Collapse - name: Collapse() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Collapse - commentId: M:Terminal.Gui.TreeView`1.Collapse - fullName: Terminal.Gui.TreeView.Collapse() - fullName.vb: Terminal.Gui.TreeView(Of T).Collapse() - nameWithType: TreeView.Collapse() - nameWithType.vb: TreeView(Of T).Collapse() -- uid: Terminal.Gui.TreeView`1.Collapse(`0) - name: Collapse(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Collapse__0_ - commentId: M:Terminal.Gui.TreeView`1.Collapse(`0) - fullName: Terminal.Gui.TreeView.Collapse(T) - fullName.vb: Terminal.Gui.TreeView(Of T).Collapse(T) - nameWithType: TreeView.Collapse(T) - nameWithType.vb: TreeView(Of T).Collapse(T) -- uid: Terminal.Gui.TreeView`1.Collapse* - name: Collapse - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Collapse_ - commentId: Overload:Terminal.Gui.TreeView`1.Collapse - isSpec: "True" - fullName: Terminal.Gui.TreeView.Collapse - fullName.vb: Terminal.Gui.TreeView(Of T).Collapse - nameWithType: TreeView.Collapse - nameWithType.vb: TreeView(Of T).Collapse -- uid: Terminal.Gui.TreeView`1.CollapseAll - name: CollapseAll() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CollapseAll - commentId: M:Terminal.Gui.TreeView`1.CollapseAll - fullName: Terminal.Gui.TreeView.CollapseAll() - fullName.vb: Terminal.Gui.TreeView(Of T).CollapseAll() - nameWithType: TreeView.CollapseAll() - nameWithType.vb: TreeView(Of T).CollapseAll() -- uid: Terminal.Gui.TreeView`1.CollapseAll(`0) - name: CollapseAll(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CollapseAll__0_ - commentId: M:Terminal.Gui.TreeView`1.CollapseAll(`0) - fullName: Terminal.Gui.TreeView.CollapseAll(T) - fullName.vb: Terminal.Gui.TreeView(Of T).CollapseAll(T) - nameWithType: TreeView.CollapseAll(T) - nameWithType.vb: TreeView(Of T).CollapseAll(T) -- uid: Terminal.Gui.TreeView`1.CollapseAll* - name: CollapseAll - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CollapseAll_ - commentId: Overload:Terminal.Gui.TreeView`1.CollapseAll - isSpec: "True" - fullName: Terminal.Gui.TreeView.CollapseAll - fullName.vb: Terminal.Gui.TreeView(Of T).CollapseAll - nameWithType: TreeView.CollapseAll - nameWithType.vb: TreeView(Of T).CollapseAll -- uid: Terminal.Gui.TreeView`1.CollapseImpl(`0,System.Boolean) - name: CollapseImpl(T, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CollapseImpl__0_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.CollapseImpl(`0,System.Boolean) - fullName: Terminal.Gui.TreeView.CollapseImpl(T, System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).CollapseImpl(T, System.Boolean) - nameWithType: TreeView.CollapseImpl(T, Boolean) - nameWithType.vb: TreeView(Of T).CollapseImpl(T, Boolean) -- uid: Terminal.Gui.TreeView`1.CollapseImpl* - name: CollapseImpl - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CollapseImpl_ - commentId: Overload:Terminal.Gui.TreeView`1.CollapseImpl - isSpec: "True" - fullName: Terminal.Gui.TreeView.CollapseImpl - fullName.vb: Terminal.Gui.TreeView(Of T).CollapseImpl - nameWithType: TreeView.CollapseImpl - nameWithType.vb: TreeView(Of T).CollapseImpl -- uid: Terminal.Gui.TreeView`1.ColorGetter - name: ColorGetter - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ColorGetter - commentId: P:Terminal.Gui.TreeView`1.ColorGetter - fullName: Terminal.Gui.TreeView.ColorGetter - fullName.vb: Terminal.Gui.TreeView(Of T).ColorGetter - nameWithType: TreeView.ColorGetter - nameWithType.vb: TreeView(Of T).ColorGetter -- uid: Terminal.Gui.TreeView`1.ColorGetter* - name: ColorGetter - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ColorGetter_ - commentId: Overload:Terminal.Gui.TreeView`1.ColorGetter - isSpec: "True" - fullName: Terminal.Gui.TreeView.ColorGetter - fullName.vb: Terminal.Gui.TreeView(Of T).ColorGetter - nameWithType: TreeView.ColorGetter - nameWithType.vb: TreeView(Of T).ColorGetter -- uid: Terminal.Gui.TreeView`1.ContentHeight - name: ContentHeight - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ContentHeight - commentId: P:Terminal.Gui.TreeView`1.ContentHeight - fullName: Terminal.Gui.TreeView.ContentHeight - fullName.vb: Terminal.Gui.TreeView(Of T).ContentHeight - nameWithType: TreeView.ContentHeight - nameWithType.vb: TreeView(Of T).ContentHeight -- uid: Terminal.Gui.TreeView`1.ContentHeight* - name: ContentHeight - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ContentHeight_ - commentId: Overload:Terminal.Gui.TreeView`1.ContentHeight - isSpec: "True" - fullName: Terminal.Gui.TreeView.ContentHeight - fullName.vb: Terminal.Gui.TreeView(Of T).ContentHeight - nameWithType: TreeView.ContentHeight - nameWithType.vb: TreeView(Of T).ContentHeight -- uid: Terminal.Gui.TreeView`1.CursorLeft(System.Boolean) - name: CursorLeft(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CursorLeft_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.CursorLeft(System.Boolean) - fullName: Terminal.Gui.TreeView.CursorLeft(System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).CursorLeft(System.Boolean) - nameWithType: TreeView.CursorLeft(Boolean) - nameWithType.vb: TreeView(Of T).CursorLeft(Boolean) -- uid: Terminal.Gui.TreeView`1.CursorLeft* - name: CursorLeft - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_CursorLeft_ - commentId: Overload:Terminal.Gui.TreeView`1.CursorLeft - isSpec: "True" - fullName: Terminal.Gui.TreeView.CursorLeft - fullName.vb: Terminal.Gui.TreeView(Of T).CursorLeft - nameWithType: TreeView.CursorLeft - nameWithType.vb: TreeView(Of T).CursorLeft -- uid: Terminal.Gui.TreeView`1.DesiredCursorVisibility - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_DesiredCursorVisibility - commentId: P:Terminal.Gui.TreeView`1.DesiredCursorVisibility - fullName: Terminal.Gui.TreeView.DesiredCursorVisibility - fullName.vb: Terminal.Gui.TreeView(Of T).DesiredCursorVisibility - nameWithType: TreeView.DesiredCursorVisibility - nameWithType.vb: TreeView(Of T).DesiredCursorVisibility -- uid: Terminal.Gui.TreeView`1.DesiredCursorVisibility* - name: DesiredCursorVisibility - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_DesiredCursorVisibility_ - commentId: Overload:Terminal.Gui.TreeView`1.DesiredCursorVisibility - isSpec: "True" - fullName: Terminal.Gui.TreeView.DesiredCursorVisibility - fullName.vb: Terminal.Gui.TreeView(Of T).DesiredCursorVisibility - nameWithType: TreeView.DesiredCursorVisibility - nameWithType.vb: TreeView(Of T).DesiredCursorVisibility -- uid: Terminal.Gui.TreeView`1.EnsureVisible(`0) - name: EnsureVisible(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_EnsureVisible__0_ - commentId: M:Terminal.Gui.TreeView`1.EnsureVisible(`0) - fullName: Terminal.Gui.TreeView.EnsureVisible(T) - fullName.vb: Terminal.Gui.TreeView(Of T).EnsureVisible(T) - nameWithType: TreeView.EnsureVisible(T) - nameWithType.vb: TreeView(Of T).EnsureVisible(T) -- uid: Terminal.Gui.TreeView`1.EnsureVisible* - name: EnsureVisible - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_EnsureVisible_ - commentId: Overload:Terminal.Gui.TreeView`1.EnsureVisible - isSpec: "True" - fullName: Terminal.Gui.TreeView.EnsureVisible - fullName.vb: Terminal.Gui.TreeView(Of T).EnsureVisible - nameWithType: TreeView.EnsureVisible - nameWithType.vb: TreeView(Of T).EnsureVisible -- uid: Terminal.Gui.TreeView`1.Expand - name: Expand() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Expand - commentId: M:Terminal.Gui.TreeView`1.Expand - fullName: Terminal.Gui.TreeView.Expand() - fullName.vb: Terminal.Gui.TreeView(Of T).Expand() - nameWithType: TreeView.Expand() - nameWithType.vb: TreeView(Of T).Expand() -- uid: Terminal.Gui.TreeView`1.Expand(`0) - name: Expand(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Expand__0_ - commentId: M:Terminal.Gui.TreeView`1.Expand(`0) - fullName: Terminal.Gui.TreeView.Expand(T) - fullName.vb: Terminal.Gui.TreeView(Of T).Expand(T) - nameWithType: TreeView.Expand(T) - nameWithType.vb: TreeView(Of T).Expand(T) -- uid: Terminal.Gui.TreeView`1.Expand* - name: Expand - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Expand_ - commentId: Overload:Terminal.Gui.TreeView`1.Expand - isSpec: "True" - fullName: Terminal.Gui.TreeView.Expand - fullName.vb: Terminal.Gui.TreeView(Of T).Expand - nameWithType: TreeView.Expand - nameWithType.vb: TreeView(Of T).Expand -- uid: Terminal.Gui.TreeView`1.ExpandAll - name: ExpandAll() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ExpandAll - commentId: M:Terminal.Gui.TreeView`1.ExpandAll - fullName: Terminal.Gui.TreeView.ExpandAll() - fullName.vb: Terminal.Gui.TreeView(Of T).ExpandAll() - nameWithType: TreeView.ExpandAll() - nameWithType.vb: TreeView(Of T).ExpandAll() -- uid: Terminal.Gui.TreeView`1.ExpandAll(`0) - name: ExpandAll(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ExpandAll__0_ - commentId: M:Terminal.Gui.TreeView`1.ExpandAll(`0) - fullName: Terminal.Gui.TreeView.ExpandAll(T) - fullName.vb: Terminal.Gui.TreeView(Of T).ExpandAll(T) - nameWithType: TreeView.ExpandAll(T) - nameWithType.vb: TreeView(Of T).ExpandAll(T) -- uid: Terminal.Gui.TreeView`1.ExpandAll* - name: ExpandAll - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ExpandAll_ - commentId: Overload:Terminal.Gui.TreeView`1.ExpandAll - isSpec: "True" - fullName: Terminal.Gui.TreeView.ExpandAll - fullName.vb: Terminal.Gui.TreeView(Of T).ExpandAll - nameWithType: TreeView.ExpandAll - nameWithType.vb: TreeView(Of T).ExpandAll -- uid: Terminal.Gui.TreeView`1.GetAllSelectedObjects - name: GetAllSelectedObjects() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetAllSelectedObjects - commentId: M:Terminal.Gui.TreeView`1.GetAllSelectedObjects - fullName: Terminal.Gui.TreeView.GetAllSelectedObjects() - fullName.vb: Terminal.Gui.TreeView(Of T).GetAllSelectedObjects() - nameWithType: TreeView.GetAllSelectedObjects() - nameWithType.vb: TreeView(Of T).GetAllSelectedObjects() -- uid: Terminal.Gui.TreeView`1.GetAllSelectedObjects* - name: GetAllSelectedObjects - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetAllSelectedObjects_ - commentId: Overload:Terminal.Gui.TreeView`1.GetAllSelectedObjects - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetAllSelectedObjects - fullName.vb: Terminal.Gui.TreeView(Of T).GetAllSelectedObjects - nameWithType: TreeView.GetAllSelectedObjects - nameWithType.vb: TreeView(Of T).GetAllSelectedObjects -- uid: Terminal.Gui.TreeView`1.GetChildren(`0) - name: GetChildren(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetChildren__0_ - commentId: M:Terminal.Gui.TreeView`1.GetChildren(`0) - fullName: Terminal.Gui.TreeView.GetChildren(T) - fullName.vb: Terminal.Gui.TreeView(Of T).GetChildren(T) - nameWithType: TreeView.GetChildren(T) - nameWithType.vb: TreeView(Of T).GetChildren(T) -- uid: Terminal.Gui.TreeView`1.GetChildren* - name: GetChildren - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetChildren_ - commentId: Overload:Terminal.Gui.TreeView`1.GetChildren - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetChildren - fullName.vb: Terminal.Gui.TreeView(Of T).GetChildren - nameWithType: TreeView.GetChildren - nameWithType.vb: TreeView(Of T).GetChildren -- uid: Terminal.Gui.TreeView`1.GetContentWidth(System.Boolean) - name: GetContentWidth(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetContentWidth_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.GetContentWidth(System.Boolean) - fullName: Terminal.Gui.TreeView.GetContentWidth(System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).GetContentWidth(System.Boolean) - nameWithType: TreeView.GetContentWidth(Boolean) - nameWithType.vb: TreeView(Of T).GetContentWidth(Boolean) -- uid: Terminal.Gui.TreeView`1.GetContentWidth* - name: GetContentWidth - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetContentWidth_ - commentId: Overload:Terminal.Gui.TreeView`1.GetContentWidth - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetContentWidth - fullName.vb: Terminal.Gui.TreeView(Of T).GetContentWidth - nameWithType: TreeView.GetContentWidth - nameWithType.vb: TreeView(Of T).GetContentWidth -- uid: Terminal.Gui.TreeView`1.GetObjectOnRow(System.Int32) - name: GetObjectOnRow(Int32) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetObjectOnRow_System_Int32_ - commentId: M:Terminal.Gui.TreeView`1.GetObjectOnRow(System.Int32) - fullName: Terminal.Gui.TreeView.GetObjectOnRow(System.Int32) - fullName.vb: Terminal.Gui.TreeView(Of T).GetObjectOnRow(System.Int32) - nameWithType: TreeView.GetObjectOnRow(Int32) - nameWithType.vb: TreeView(Of T).GetObjectOnRow(Int32) -- uid: Terminal.Gui.TreeView`1.GetObjectOnRow* - name: GetObjectOnRow - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetObjectOnRow_ - commentId: Overload:Terminal.Gui.TreeView`1.GetObjectOnRow - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetObjectOnRow - fullName.vb: Terminal.Gui.TreeView(Of T).GetObjectOnRow - nameWithType: TreeView.GetObjectOnRow - nameWithType.vb: TreeView(Of T).GetObjectOnRow -- uid: Terminal.Gui.TreeView`1.GetObjectRow(`0) - name: GetObjectRow(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetObjectRow__0_ - commentId: M:Terminal.Gui.TreeView`1.GetObjectRow(`0) - fullName: Terminal.Gui.TreeView.GetObjectRow(T) - fullName.vb: Terminal.Gui.TreeView(Of T).GetObjectRow(T) - nameWithType: TreeView.GetObjectRow(T) - nameWithType.vb: TreeView(Of T).GetObjectRow(T) -- uid: Terminal.Gui.TreeView`1.GetObjectRow* - name: GetObjectRow - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetObjectRow_ - commentId: Overload:Terminal.Gui.TreeView`1.GetObjectRow - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetObjectRow - fullName.vb: Terminal.Gui.TreeView(Of T).GetObjectRow - nameWithType: TreeView.GetObjectRow - nameWithType.vb: TreeView(Of T).GetObjectRow -- uid: Terminal.Gui.TreeView`1.GetParent(`0) - name: GetParent(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetParent__0_ - commentId: M:Terminal.Gui.TreeView`1.GetParent(`0) - fullName: Terminal.Gui.TreeView.GetParent(T) - fullName.vb: Terminal.Gui.TreeView(Of T).GetParent(T) - nameWithType: TreeView.GetParent(T) - nameWithType.vb: TreeView(Of T).GetParent(T) -- uid: Terminal.Gui.TreeView`1.GetParent* - name: GetParent - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetParent_ - commentId: Overload:Terminal.Gui.TreeView`1.GetParent - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetParent - fullName.vb: Terminal.Gui.TreeView(Of T).GetParent - nameWithType: TreeView.GetParent - nameWithType.vb: TreeView(Of T).GetParent -- uid: Terminal.Gui.TreeView`1.GetScrollOffsetOf(`0) - name: GetScrollOffsetOf(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetScrollOffsetOf__0_ - commentId: M:Terminal.Gui.TreeView`1.GetScrollOffsetOf(`0) - fullName: Terminal.Gui.TreeView.GetScrollOffsetOf(T) - fullName.vb: Terminal.Gui.TreeView(Of T).GetScrollOffsetOf(T) - nameWithType: TreeView.GetScrollOffsetOf(T) - nameWithType.vb: TreeView(Of T).GetScrollOffsetOf(T) -- uid: Terminal.Gui.TreeView`1.GetScrollOffsetOf* - name: GetScrollOffsetOf - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GetScrollOffsetOf_ - commentId: Overload:Terminal.Gui.TreeView`1.GetScrollOffsetOf - isSpec: "True" - fullName: Terminal.Gui.TreeView.GetScrollOffsetOf - fullName.vb: Terminal.Gui.TreeView(Of T).GetScrollOffsetOf - nameWithType: TreeView.GetScrollOffsetOf - nameWithType.vb: TreeView(Of T).GetScrollOffsetOf -- uid: Terminal.Gui.TreeView`1.GoTo(`0) - name: GoTo(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GoTo__0_ - commentId: M:Terminal.Gui.TreeView`1.GoTo(`0) - fullName: Terminal.Gui.TreeView.GoTo(T) - fullName.vb: Terminal.Gui.TreeView(Of T).GoTo(T) - nameWithType: TreeView.GoTo(T) - nameWithType.vb: TreeView(Of T).GoTo(T) -- uid: Terminal.Gui.TreeView`1.GoTo* - name: GoTo - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GoTo_ - commentId: Overload:Terminal.Gui.TreeView`1.GoTo - isSpec: "True" - fullName: Terminal.Gui.TreeView.GoTo - fullName.vb: Terminal.Gui.TreeView(Of T).GoTo - nameWithType: TreeView.GoTo - nameWithType.vb: TreeView(Of T).GoTo -- uid: Terminal.Gui.TreeView`1.GoToEnd - name: GoToEnd() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GoToEnd - commentId: M:Terminal.Gui.TreeView`1.GoToEnd - fullName: Terminal.Gui.TreeView.GoToEnd() - fullName.vb: Terminal.Gui.TreeView(Of T).GoToEnd() - nameWithType: TreeView.GoToEnd() - nameWithType.vb: TreeView(Of T).GoToEnd() -- uid: Terminal.Gui.TreeView`1.GoToEnd* - name: GoToEnd - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GoToEnd_ - commentId: Overload:Terminal.Gui.TreeView`1.GoToEnd - isSpec: "True" - fullName: Terminal.Gui.TreeView.GoToEnd - fullName.vb: Terminal.Gui.TreeView(Of T).GoToEnd - nameWithType: TreeView.GoToEnd - nameWithType.vb: TreeView(Of T).GoToEnd -- uid: Terminal.Gui.TreeView`1.GoToFirst - name: GoToFirst() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GoToFirst - commentId: M:Terminal.Gui.TreeView`1.GoToFirst - fullName: Terminal.Gui.TreeView.GoToFirst() - fullName.vb: Terminal.Gui.TreeView(Of T).GoToFirst() - nameWithType: TreeView.GoToFirst() - nameWithType.vb: TreeView(Of T).GoToFirst() -- uid: Terminal.Gui.TreeView`1.GoToFirst* - name: GoToFirst - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_GoToFirst_ - commentId: Overload:Terminal.Gui.TreeView`1.GoToFirst - isSpec: "True" - fullName: Terminal.Gui.TreeView.GoToFirst - fullName.vb: Terminal.Gui.TreeView(Of T).GoToFirst - nameWithType: TreeView.GoToFirst - nameWithType.vb: TreeView(Of T).GoToFirst -- uid: Terminal.Gui.TreeView`1.InvalidateLineMap - name: InvalidateLineMap() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_InvalidateLineMap - commentId: M:Terminal.Gui.TreeView`1.InvalidateLineMap - fullName: Terminal.Gui.TreeView.InvalidateLineMap() - fullName.vb: Terminal.Gui.TreeView(Of T).InvalidateLineMap() - nameWithType: TreeView.InvalidateLineMap() - nameWithType.vb: TreeView(Of T).InvalidateLineMap() -- uid: Terminal.Gui.TreeView`1.InvalidateLineMap* - name: InvalidateLineMap - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_InvalidateLineMap_ - commentId: Overload:Terminal.Gui.TreeView`1.InvalidateLineMap - isSpec: "True" - fullName: Terminal.Gui.TreeView.InvalidateLineMap - fullName.vb: Terminal.Gui.TreeView(Of T).InvalidateLineMap - nameWithType: TreeView.InvalidateLineMap - nameWithType.vb: TreeView(Of T).InvalidateLineMap -- uid: Terminal.Gui.TreeView`1.IsExpanded(`0) - name: IsExpanded(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_IsExpanded__0_ - commentId: M:Terminal.Gui.TreeView`1.IsExpanded(`0) - fullName: Terminal.Gui.TreeView.IsExpanded(T) - fullName.vb: Terminal.Gui.TreeView(Of T).IsExpanded(T) - nameWithType: TreeView.IsExpanded(T) - nameWithType.vb: TreeView(Of T).IsExpanded(T) -- uid: Terminal.Gui.TreeView`1.IsExpanded* - name: IsExpanded - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_IsExpanded_ - commentId: Overload:Terminal.Gui.TreeView`1.IsExpanded - isSpec: "True" - fullName: Terminal.Gui.TreeView.IsExpanded - fullName.vb: Terminal.Gui.TreeView(Of T).IsExpanded - nameWithType: TreeView.IsExpanded - nameWithType.vb: TreeView(Of T).IsExpanded -- uid: Terminal.Gui.TreeView`1.IsSelected(`0) - name: IsSelected(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_IsSelected__0_ - commentId: M:Terminal.Gui.TreeView`1.IsSelected(`0) - fullName: Terminal.Gui.TreeView.IsSelected(T) - fullName.vb: Terminal.Gui.TreeView(Of T).IsSelected(T) - nameWithType: TreeView.IsSelected(T) - nameWithType.vb: TreeView(Of T).IsSelected(T) -- uid: Terminal.Gui.TreeView`1.IsSelected* - name: IsSelected - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_IsSelected_ - commentId: Overload:Terminal.Gui.TreeView`1.IsSelected - isSpec: "True" - fullName: Terminal.Gui.TreeView.IsSelected - fullName.vb: Terminal.Gui.TreeView(Of T).IsSelected - nameWithType: TreeView.IsSelected - nameWithType.vb: TreeView(Of T).IsSelected -- uid: Terminal.Gui.TreeView`1.MouseEvent(Terminal.Gui.MouseEvent) - name: MouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.TreeView`1.MouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.TreeView.MouseEvent(Terminal.Gui.MouseEvent) - fullName.vb: Terminal.Gui.TreeView(Of T).MouseEvent(Terminal.Gui.MouseEvent) - nameWithType: TreeView.MouseEvent(MouseEvent) - nameWithType.vb: TreeView(Of T).MouseEvent(MouseEvent) -- uid: Terminal.Gui.TreeView`1.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MouseEvent_ - commentId: Overload:Terminal.Gui.TreeView`1.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.TreeView.MouseEvent - fullName.vb: Terminal.Gui.TreeView(Of T).MouseEvent - nameWithType: TreeView.MouseEvent - nameWithType.vb: TreeView(Of T).MouseEvent -- uid: Terminal.Gui.TreeView`1.MovePageDown(System.Boolean) - name: MovePageDown(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MovePageDown_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.MovePageDown(System.Boolean) - fullName: Terminal.Gui.TreeView.MovePageDown(System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).MovePageDown(System.Boolean) - nameWithType: TreeView.MovePageDown(Boolean) - nameWithType.vb: TreeView(Of T).MovePageDown(Boolean) -- uid: Terminal.Gui.TreeView`1.MovePageDown* - name: MovePageDown - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MovePageDown_ - commentId: Overload:Terminal.Gui.TreeView`1.MovePageDown - isSpec: "True" - fullName: Terminal.Gui.TreeView.MovePageDown - fullName.vb: Terminal.Gui.TreeView(Of T).MovePageDown - nameWithType: TreeView.MovePageDown - nameWithType.vb: TreeView(Of T).MovePageDown -- uid: Terminal.Gui.TreeView`1.MovePageUp(System.Boolean) - name: MovePageUp(Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MovePageUp_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.MovePageUp(System.Boolean) - fullName: Terminal.Gui.TreeView.MovePageUp(System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).MovePageUp(System.Boolean) - nameWithType: TreeView.MovePageUp(Boolean) - nameWithType.vb: TreeView(Of T).MovePageUp(Boolean) -- uid: Terminal.Gui.TreeView`1.MovePageUp* - name: MovePageUp - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MovePageUp_ - commentId: Overload:Terminal.Gui.TreeView`1.MovePageUp - isSpec: "True" - fullName: Terminal.Gui.TreeView.MovePageUp - fullName.vb: Terminal.Gui.TreeView(Of T).MovePageUp - nameWithType: TreeView.MovePageUp - nameWithType.vb: TreeView(Of T).MovePageUp -- uid: Terminal.Gui.TreeView`1.MultiSelect - name: MultiSelect - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MultiSelect - commentId: P:Terminal.Gui.TreeView`1.MultiSelect - fullName: Terminal.Gui.TreeView.MultiSelect - fullName.vb: Terminal.Gui.TreeView(Of T).MultiSelect - nameWithType: TreeView.MultiSelect - nameWithType.vb: TreeView(Of T).MultiSelect -- uid: Terminal.Gui.TreeView`1.MultiSelect* - name: MultiSelect - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_MultiSelect_ - commentId: Overload:Terminal.Gui.TreeView`1.MultiSelect - isSpec: "True" - fullName: Terminal.Gui.TreeView.MultiSelect - fullName.vb: Terminal.Gui.TreeView(Of T).MultiSelect - nameWithType: TreeView.MultiSelect - nameWithType.vb: TreeView(Of T).MultiSelect -- uid: Terminal.Gui.TreeView`1.NoBuilderError - name: NoBuilderError - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_NoBuilderError - commentId: F:Terminal.Gui.TreeView`1.NoBuilderError - fullName: Terminal.Gui.TreeView.NoBuilderError - fullName.vb: Terminal.Gui.TreeView(Of T).NoBuilderError - nameWithType: TreeView.NoBuilderError - nameWithType.vb: TreeView(Of T).NoBuilderError -- uid: Terminal.Gui.TreeView`1.ObjectActivated - name: ObjectActivated - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ObjectActivated - commentId: E:Terminal.Gui.TreeView`1.ObjectActivated - fullName: Terminal.Gui.TreeView.ObjectActivated - fullName.vb: Terminal.Gui.TreeView(Of T).ObjectActivated - nameWithType: TreeView.ObjectActivated - nameWithType.vb: TreeView(Of T).ObjectActivated -- uid: Terminal.Gui.TreeView`1.ObjectActivationButton - name: ObjectActivationButton - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ObjectActivationButton - commentId: P:Terminal.Gui.TreeView`1.ObjectActivationButton - fullName: Terminal.Gui.TreeView.ObjectActivationButton - fullName.vb: Terminal.Gui.TreeView(Of T).ObjectActivationButton - nameWithType: TreeView.ObjectActivationButton - nameWithType.vb: TreeView(Of T).ObjectActivationButton -- uid: Terminal.Gui.TreeView`1.ObjectActivationButton* - name: ObjectActivationButton - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ObjectActivationButton_ - commentId: Overload:Terminal.Gui.TreeView`1.ObjectActivationButton - isSpec: "True" - fullName: Terminal.Gui.TreeView.ObjectActivationButton - fullName.vb: Terminal.Gui.TreeView(Of T).ObjectActivationButton - nameWithType: TreeView.ObjectActivationButton - nameWithType.vb: TreeView(Of T).ObjectActivationButton -- uid: Terminal.Gui.TreeView`1.ObjectActivationKey - name: ObjectActivationKey - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ObjectActivationKey - commentId: P:Terminal.Gui.TreeView`1.ObjectActivationKey - fullName: Terminal.Gui.TreeView.ObjectActivationKey - fullName.vb: Terminal.Gui.TreeView(Of T).ObjectActivationKey - nameWithType: TreeView.ObjectActivationKey - nameWithType.vb: TreeView(Of T).ObjectActivationKey -- uid: Terminal.Gui.TreeView`1.ObjectActivationKey* - name: ObjectActivationKey - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ObjectActivationKey_ - commentId: Overload:Terminal.Gui.TreeView`1.ObjectActivationKey - isSpec: "True" - fullName: Terminal.Gui.TreeView.ObjectActivationKey - fullName.vb: Terminal.Gui.TreeView(Of T).ObjectActivationKey - nameWithType: TreeView.ObjectActivationKey - nameWithType.vb: TreeView(Of T).ObjectActivationKey -- uid: Terminal.Gui.TreeView`1.Objects - name: Objects - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Objects - commentId: P:Terminal.Gui.TreeView`1.Objects - fullName: Terminal.Gui.TreeView.Objects - fullName.vb: Terminal.Gui.TreeView(Of T).Objects - nameWithType: TreeView.Objects - nameWithType.vb: TreeView(Of T).Objects -- uid: Terminal.Gui.TreeView`1.Objects* - name: Objects - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Objects_ - commentId: Overload:Terminal.Gui.TreeView`1.Objects - isSpec: "True" - fullName: Terminal.Gui.TreeView.Objects - fullName.vb: Terminal.Gui.TreeView(Of T).Objects - nameWithType: TreeView.Objects - nameWithType.vb: TreeView(Of T).Objects -- uid: Terminal.Gui.TreeView`1.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.TreeView`1.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.TreeView.OnEnter(Terminal.Gui.View) - fullName.vb: Terminal.Gui.TreeView(Of T).OnEnter(Terminal.Gui.View) - nameWithType: TreeView.OnEnter(View) - nameWithType.vb: TreeView(Of T).OnEnter(View) -- uid: Terminal.Gui.TreeView`1.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_OnEnter_ - commentId: Overload:Terminal.Gui.TreeView`1.OnEnter - isSpec: "True" - fullName: Terminal.Gui.TreeView.OnEnter - fullName.vb: Terminal.Gui.TreeView(Of T).OnEnter - nameWithType: TreeView.OnEnter - nameWithType.vb: TreeView(Of T).OnEnter -- uid: Terminal.Gui.TreeView`1.OnObjectActivated(Terminal.Gui.Trees.ObjectActivatedEventArgs{`0}) - name: OnObjectActivated(ObjectActivatedEventArgs) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_OnObjectActivated_Terminal_Gui_Trees_ObjectActivatedEventArgs__0__ - commentId: M:Terminal.Gui.TreeView`1.OnObjectActivated(Terminal.Gui.Trees.ObjectActivatedEventArgs{`0}) - name.vb: OnObjectActivated(ObjectActivatedEventArgs(Of T)) - fullName: Terminal.Gui.TreeView.OnObjectActivated(Terminal.Gui.Trees.ObjectActivatedEventArgs) - fullName.vb: Terminal.Gui.TreeView(Of T).OnObjectActivated(Terminal.Gui.Trees.ObjectActivatedEventArgs(Of T)) - nameWithType: TreeView.OnObjectActivated(ObjectActivatedEventArgs) - nameWithType.vb: TreeView(Of T).OnObjectActivated(ObjectActivatedEventArgs(Of T)) -- uid: Terminal.Gui.TreeView`1.OnObjectActivated* - name: OnObjectActivated - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_OnObjectActivated_ - commentId: Overload:Terminal.Gui.TreeView`1.OnObjectActivated - isSpec: "True" - fullName: Terminal.Gui.TreeView.OnObjectActivated - fullName.vb: Terminal.Gui.TreeView(Of T).OnObjectActivated - nameWithType: TreeView.OnObjectActivated - nameWithType.vb: TreeView(Of T).OnObjectActivated -- uid: Terminal.Gui.TreeView`1.OnSelectionChanged(Terminal.Gui.Trees.SelectionChangedEventArgs{`0}) - name: OnSelectionChanged(SelectionChangedEventArgs) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_OnSelectionChanged_Terminal_Gui_Trees_SelectionChangedEventArgs__0__ - commentId: M:Terminal.Gui.TreeView`1.OnSelectionChanged(Terminal.Gui.Trees.SelectionChangedEventArgs{`0}) - name.vb: OnSelectionChanged(SelectionChangedEventArgs(Of T)) - fullName: Terminal.Gui.TreeView.OnSelectionChanged(Terminal.Gui.Trees.SelectionChangedEventArgs) - fullName.vb: Terminal.Gui.TreeView(Of T).OnSelectionChanged(Terminal.Gui.Trees.SelectionChangedEventArgs(Of T)) - nameWithType: TreeView.OnSelectionChanged(SelectionChangedEventArgs) - nameWithType.vb: TreeView(Of T).OnSelectionChanged(SelectionChangedEventArgs(Of T)) -- uid: Terminal.Gui.TreeView`1.OnSelectionChanged* - name: OnSelectionChanged - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_OnSelectionChanged_ - commentId: Overload:Terminal.Gui.TreeView`1.OnSelectionChanged - isSpec: "True" - fullName: Terminal.Gui.TreeView.OnSelectionChanged - fullName.vb: Terminal.Gui.TreeView(Of T).OnSelectionChanged - nameWithType: TreeView.OnSelectionChanged - nameWithType.vb: TreeView(Of T).OnSelectionChanged -- uid: Terminal.Gui.TreeView`1.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_PositionCursor - commentId: M:Terminal.Gui.TreeView`1.PositionCursor - fullName: Terminal.Gui.TreeView.PositionCursor() - fullName.vb: Terminal.Gui.TreeView(Of T).PositionCursor() - nameWithType: TreeView.PositionCursor() - nameWithType.vb: TreeView(Of T).PositionCursor() -- uid: Terminal.Gui.TreeView`1.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_PositionCursor_ - commentId: Overload:Terminal.Gui.TreeView`1.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.TreeView.PositionCursor - fullName.vb: Terminal.Gui.TreeView(Of T).PositionCursor - nameWithType: TreeView.PositionCursor - nameWithType.vb: TreeView(Of T).PositionCursor -- uid: Terminal.Gui.TreeView`1.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.TreeView`1.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.TreeView.ProcessKey(Terminal.Gui.KeyEvent) - fullName.vb: Terminal.Gui.TreeView(Of T).ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: TreeView.ProcessKey(KeyEvent) - nameWithType.vb: TreeView(Of T).ProcessKey(KeyEvent) -- uid: Terminal.Gui.TreeView`1.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ProcessKey_ - commentId: Overload:Terminal.Gui.TreeView`1.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.TreeView.ProcessKey - fullName.vb: Terminal.Gui.TreeView(Of T).ProcessKey - nameWithType: TreeView.ProcessKey - nameWithType.vb: TreeView(Of T).ProcessKey -- uid: Terminal.Gui.TreeView`1.RebuildTree - name: RebuildTree() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_RebuildTree - commentId: M:Terminal.Gui.TreeView`1.RebuildTree - fullName: Terminal.Gui.TreeView.RebuildTree() - fullName.vb: Terminal.Gui.TreeView(Of T).RebuildTree() - nameWithType: TreeView.RebuildTree() - nameWithType.vb: TreeView(Of T).RebuildTree() -- uid: Terminal.Gui.TreeView`1.RebuildTree* - name: RebuildTree - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_RebuildTree_ - commentId: Overload:Terminal.Gui.TreeView`1.RebuildTree - isSpec: "True" - fullName: Terminal.Gui.TreeView.RebuildTree - fullName.vb: Terminal.Gui.TreeView(Of T).RebuildTree - nameWithType: TreeView.RebuildTree - nameWithType.vb: TreeView(Of T).RebuildTree -- uid: Terminal.Gui.TreeView`1.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.TreeView`1.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.TreeView.Redraw(Terminal.Gui.Rect) - fullName.vb: Terminal.Gui.TreeView(Of T).Redraw(Terminal.Gui.Rect) - nameWithType: TreeView.Redraw(Rect) - nameWithType.vb: TreeView(Of T).Redraw(Rect) -- uid: Terminal.Gui.TreeView`1.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Redraw_ - commentId: Overload:Terminal.Gui.TreeView`1.Redraw - isSpec: "True" - fullName: Terminal.Gui.TreeView.Redraw - fullName.vb: Terminal.Gui.TreeView(Of T).Redraw - nameWithType: TreeView.Redraw - nameWithType.vb: TreeView(Of T).Redraw -- uid: Terminal.Gui.TreeView`1.RefreshObject(`0,System.Boolean) - name: RefreshObject(T, Boolean) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_RefreshObject__0_System_Boolean_ - commentId: M:Terminal.Gui.TreeView`1.RefreshObject(`0,System.Boolean) - fullName: Terminal.Gui.TreeView.RefreshObject(T, System.Boolean) - fullName.vb: Terminal.Gui.TreeView(Of T).RefreshObject(T, System.Boolean) - nameWithType: TreeView.RefreshObject(T, Boolean) - nameWithType.vb: TreeView(Of T).RefreshObject(T, Boolean) -- uid: Terminal.Gui.TreeView`1.RefreshObject* - name: RefreshObject - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_RefreshObject_ - commentId: Overload:Terminal.Gui.TreeView`1.RefreshObject - isSpec: "True" - fullName: Terminal.Gui.TreeView.RefreshObject - fullName.vb: Terminal.Gui.TreeView(Of T).RefreshObject - nameWithType: TreeView.RefreshObject - nameWithType.vb: TreeView(Of T).RefreshObject -- uid: Terminal.Gui.TreeView`1.Remove(`0) - name: Remove(T) - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Remove__0_ - commentId: M:Terminal.Gui.TreeView`1.Remove(`0) - fullName: Terminal.Gui.TreeView.Remove(T) - fullName.vb: Terminal.Gui.TreeView(Of T).Remove(T) - nameWithType: TreeView.Remove(T) - nameWithType.vb: TreeView(Of T).Remove(T) -- uid: Terminal.Gui.TreeView`1.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Remove_ - commentId: Overload:Terminal.Gui.TreeView`1.Remove - isSpec: "True" - fullName: Terminal.Gui.TreeView.Remove - fullName.vb: Terminal.Gui.TreeView(Of T).Remove - nameWithType: TreeView.Remove - nameWithType.vb: TreeView(Of T).Remove -- uid: Terminal.Gui.TreeView`1.ScrollDown - name: ScrollDown() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollDown - commentId: M:Terminal.Gui.TreeView`1.ScrollDown - fullName: Terminal.Gui.TreeView.ScrollDown() - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollDown() - nameWithType: TreeView.ScrollDown() - nameWithType.vb: TreeView(Of T).ScrollDown() -- uid: Terminal.Gui.TreeView`1.ScrollDown* - name: ScrollDown - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollDown_ - commentId: Overload:Terminal.Gui.TreeView`1.ScrollDown - isSpec: "True" - fullName: Terminal.Gui.TreeView.ScrollDown - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollDown - nameWithType: TreeView.ScrollDown - nameWithType.vb: TreeView(Of T).ScrollDown -- uid: Terminal.Gui.TreeView`1.ScrollOffsetHorizontal - name: ScrollOffsetHorizontal - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollOffsetHorizontal - commentId: P:Terminal.Gui.TreeView`1.ScrollOffsetHorizontal - fullName: Terminal.Gui.TreeView.ScrollOffsetHorizontal - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollOffsetHorizontal - nameWithType: TreeView.ScrollOffsetHorizontal - nameWithType.vb: TreeView(Of T).ScrollOffsetHorizontal -- uid: Terminal.Gui.TreeView`1.ScrollOffsetHorizontal* - name: ScrollOffsetHorizontal - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollOffsetHorizontal_ - commentId: Overload:Terminal.Gui.TreeView`1.ScrollOffsetHorizontal - isSpec: "True" - fullName: Terminal.Gui.TreeView.ScrollOffsetHorizontal - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollOffsetHorizontal - nameWithType: TreeView.ScrollOffsetHorizontal - nameWithType.vb: TreeView(Of T).ScrollOffsetHorizontal -- uid: Terminal.Gui.TreeView`1.ScrollOffsetVertical - name: ScrollOffsetVertical - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollOffsetVertical - commentId: P:Terminal.Gui.TreeView`1.ScrollOffsetVertical - fullName: Terminal.Gui.TreeView.ScrollOffsetVertical - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollOffsetVertical - nameWithType: TreeView.ScrollOffsetVertical - nameWithType.vb: TreeView(Of T).ScrollOffsetVertical -- uid: Terminal.Gui.TreeView`1.ScrollOffsetVertical* - name: ScrollOffsetVertical - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollOffsetVertical_ - commentId: Overload:Terminal.Gui.TreeView`1.ScrollOffsetVertical - isSpec: "True" - fullName: Terminal.Gui.TreeView.ScrollOffsetVertical - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollOffsetVertical - nameWithType: TreeView.ScrollOffsetVertical - nameWithType.vb: TreeView(Of T).ScrollOffsetVertical -- uid: Terminal.Gui.TreeView`1.ScrollUp - name: ScrollUp() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollUp - commentId: M:Terminal.Gui.TreeView`1.ScrollUp - fullName: Terminal.Gui.TreeView.ScrollUp() - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollUp() - nameWithType: TreeView.ScrollUp() - nameWithType.vb: TreeView(Of T).ScrollUp() -- uid: Terminal.Gui.TreeView`1.ScrollUp* - name: ScrollUp - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_ScrollUp_ - commentId: Overload:Terminal.Gui.TreeView`1.ScrollUp - isSpec: "True" - fullName: Terminal.Gui.TreeView.ScrollUp - fullName.vb: Terminal.Gui.TreeView(Of T).ScrollUp - nameWithType: TreeView.ScrollUp - nameWithType.vb: TreeView(Of T).ScrollUp -- uid: Terminal.Gui.TreeView`1.SelectAll - name: SelectAll() - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_SelectAll - commentId: M:Terminal.Gui.TreeView`1.SelectAll - fullName: Terminal.Gui.TreeView.SelectAll() - fullName.vb: Terminal.Gui.TreeView(Of T).SelectAll() - nameWithType: TreeView.SelectAll() - nameWithType.vb: TreeView(Of T).SelectAll() -- uid: Terminal.Gui.TreeView`1.SelectAll* - name: SelectAll - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_SelectAll_ - commentId: Overload:Terminal.Gui.TreeView`1.SelectAll - isSpec: "True" - fullName: Terminal.Gui.TreeView.SelectAll - fullName.vb: Terminal.Gui.TreeView(Of T).SelectAll - nameWithType: TreeView.SelectAll - nameWithType.vb: TreeView(Of T).SelectAll -- uid: Terminal.Gui.TreeView`1.SelectedObject - name: SelectedObject - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_SelectedObject - commentId: P:Terminal.Gui.TreeView`1.SelectedObject - fullName: Terminal.Gui.TreeView.SelectedObject - fullName.vb: Terminal.Gui.TreeView(Of T).SelectedObject - nameWithType: TreeView.SelectedObject - nameWithType.vb: TreeView(Of T).SelectedObject -- uid: Terminal.Gui.TreeView`1.SelectedObject* - name: SelectedObject - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_SelectedObject_ - commentId: Overload:Terminal.Gui.TreeView`1.SelectedObject - isSpec: "True" - fullName: Terminal.Gui.TreeView.SelectedObject - fullName.vb: Terminal.Gui.TreeView(Of T).SelectedObject - nameWithType: TreeView.SelectedObject - nameWithType.vb: TreeView(Of T).SelectedObject -- uid: Terminal.Gui.TreeView`1.SelectionChanged - name: SelectionChanged - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_SelectionChanged - commentId: E:Terminal.Gui.TreeView`1.SelectionChanged - fullName: Terminal.Gui.TreeView.SelectionChanged - fullName.vb: Terminal.Gui.TreeView(Of T).SelectionChanged - nameWithType: TreeView.SelectionChanged - nameWithType.vb: TreeView(Of T).SelectionChanged -- uid: Terminal.Gui.TreeView`1.Style - name: Style - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Style - commentId: P:Terminal.Gui.TreeView`1.Style - fullName: Terminal.Gui.TreeView.Style - fullName.vb: Terminal.Gui.TreeView(Of T).Style - nameWithType: TreeView.Style - nameWithType.vb: TreeView(Of T).Style -- uid: Terminal.Gui.TreeView`1.Style* - name: Style - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_Style_ - commentId: Overload:Terminal.Gui.TreeView`1.Style - isSpec: "True" - fullName: Terminal.Gui.TreeView.Style - fullName.vb: Terminal.Gui.TreeView(Of T).Style - nameWithType: TreeView.Style - nameWithType.vb: TreeView(Of T).Style -- uid: Terminal.Gui.TreeView`1.TreeBuilder - name: TreeBuilder - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_TreeBuilder - commentId: P:Terminal.Gui.TreeView`1.TreeBuilder - fullName: Terminal.Gui.TreeView.TreeBuilder - fullName.vb: Terminal.Gui.TreeView(Of T).TreeBuilder - nameWithType: TreeView.TreeBuilder - nameWithType.vb: TreeView(Of T).TreeBuilder -- uid: Terminal.Gui.TreeView`1.TreeBuilder* - name: TreeBuilder - href: api/Terminal.Gui/Terminal.Gui.TreeView-1.html#Terminal_Gui_TreeView_1_TreeBuilder_ - commentId: Overload:Terminal.Gui.TreeView`1.TreeBuilder - isSpec: "True" - fullName: Terminal.Gui.TreeView.TreeBuilder - fullName.vb: Terminal.Gui.TreeView(Of T).TreeBuilder - nameWithType: TreeView.TreeBuilder - nameWithType.vb: TreeView(Of T).TreeBuilder -- uid: Terminal.Gui.VerticalTextAlignment - name: VerticalTextAlignment - href: api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html - commentId: T:Terminal.Gui.VerticalTextAlignment - fullName: Terminal.Gui.VerticalTextAlignment - nameWithType: VerticalTextAlignment -- uid: Terminal.Gui.VerticalTextAlignment.Bottom - name: Bottom - href: api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html#Terminal_Gui_VerticalTextAlignment_Bottom - commentId: F:Terminal.Gui.VerticalTextAlignment.Bottom - fullName: Terminal.Gui.VerticalTextAlignment.Bottom - nameWithType: VerticalTextAlignment.Bottom -- uid: Terminal.Gui.VerticalTextAlignment.Justified - name: Justified - href: api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html#Terminal_Gui_VerticalTextAlignment_Justified - commentId: F:Terminal.Gui.VerticalTextAlignment.Justified - fullName: Terminal.Gui.VerticalTextAlignment.Justified - nameWithType: VerticalTextAlignment.Justified -- uid: Terminal.Gui.VerticalTextAlignment.Middle - name: Middle - href: api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html#Terminal_Gui_VerticalTextAlignment_Middle - commentId: F:Terminal.Gui.VerticalTextAlignment.Middle - fullName: Terminal.Gui.VerticalTextAlignment.Middle - nameWithType: VerticalTextAlignment.Middle -- uid: Terminal.Gui.VerticalTextAlignment.Top - name: Top - href: api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html#Terminal_Gui_VerticalTextAlignment_Top - commentId: F:Terminal.Gui.VerticalTextAlignment.Top - fullName: Terminal.Gui.VerticalTextAlignment.Top - nameWithType: VerticalTextAlignment.Top -- uid: Terminal.Gui.View - name: View - href: api/Terminal.Gui/Terminal.Gui.View.html - commentId: T:Terminal.Gui.View - fullName: Terminal.Gui.View - nameWithType: View -- uid: Terminal.Gui.View.#ctor - name: View() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View__ctor - commentId: M:Terminal.Gui.View.#ctor - fullName: Terminal.Gui.View.View() - nameWithType: View.View() -- uid: Terminal.Gui.View.#ctor(NStack.ustring,Terminal.Gui.TextDirection,Terminal.Gui.Border) - name: View(ustring, TextDirection, Border) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View__ctor_NStack_ustring_Terminal_Gui_TextDirection_Terminal_Gui_Border_ - commentId: M:Terminal.Gui.View.#ctor(NStack.ustring,Terminal.Gui.TextDirection,Terminal.Gui.Border) - fullName: Terminal.Gui.View.View(NStack.ustring, Terminal.Gui.TextDirection, Terminal.Gui.Border) - nameWithType: View.View(ustring, TextDirection, Border) -- uid: Terminal.Gui.View.#ctor(System.Int32,System.Int32,NStack.ustring) - name: View(Int32, Int32, ustring) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View__ctor_System_Int32_System_Int32_NStack_ustring_ - commentId: M:Terminal.Gui.View.#ctor(System.Int32,System.Int32,NStack.ustring) - fullName: Terminal.Gui.View.View(System.Int32, System.Int32, NStack.ustring) - nameWithType: View.View(Int32, Int32, ustring) -- uid: Terminal.Gui.View.#ctor(Terminal.Gui.Rect) - name: View(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View__ctor_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.#ctor(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.View(Terminal.Gui.Rect) - nameWithType: View.View(Rect) -- uid: Terminal.Gui.View.#ctor(Terminal.Gui.Rect,NStack.ustring,Terminal.Gui.Border) - name: View(Rect, ustring, Border) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View__ctor_Terminal_Gui_Rect_NStack_ustring_Terminal_Gui_Border_ - commentId: M:Terminal.Gui.View.#ctor(Terminal.Gui.Rect,NStack.ustring,Terminal.Gui.Border) - fullName: Terminal.Gui.View.View(Terminal.Gui.Rect, NStack.ustring, Terminal.Gui.Border) - nameWithType: View.View(Rect, ustring, Border) -- uid: Terminal.Gui.View.#ctor* - name: View - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View__ctor_ - commentId: Overload:Terminal.Gui.View.#ctor - isSpec: "True" - fullName: Terminal.Gui.View.View - nameWithType: View.View -- uid: Terminal.Gui.View.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.Add(Terminal.Gui.View) - fullName: Terminal.Gui.View.Add(Terminal.Gui.View) - nameWithType: View.Add(View) -- uid: Terminal.Gui.View.Add(Terminal.Gui.View[]) - name: Add(View[]) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View___ - commentId: M:Terminal.Gui.View.Add(Terminal.Gui.View[]) - name.vb: Add(View()) - fullName: Terminal.Gui.View.Add(Terminal.Gui.View[]) - fullName.vb: Terminal.Gui.View.Add(Terminal.Gui.View()) - nameWithType: View.Add(View[]) - nameWithType.vb: View.Add(View()) -- uid: Terminal.Gui.View.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Add_ - commentId: Overload:Terminal.Gui.View.Add - isSpec: "True" - fullName: Terminal.Gui.View.Add - nameWithType: View.Add -- uid: Terminal.Gui.View.AddCommand(Terminal.Gui.Command,System.Func{System.Nullable{System.Boolean}}) - name: AddCommand(Command, Func>) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AddCommand_Terminal_Gui_Command_System_Func_System_Nullable_System_Boolean___ - commentId: M:Terminal.Gui.View.AddCommand(Terminal.Gui.Command,System.Func{System.Nullable{System.Boolean}}) - name.vb: AddCommand(Command, Func(Of Nullable(Of Boolean))) - fullName: Terminal.Gui.View.AddCommand(Terminal.Gui.Command, System.Func>) - fullName.vb: Terminal.Gui.View.AddCommand(Terminal.Gui.Command, System.Func(Of System.Nullable(Of System.Boolean))) - nameWithType: View.AddCommand(Command, Func>) - nameWithType.vb: View.AddCommand(Command, Func(Of Nullable(Of Boolean))) -- uid: Terminal.Gui.View.AddCommand* - name: AddCommand - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AddCommand_ - commentId: Overload:Terminal.Gui.View.AddCommand - isSpec: "True" - fullName: Terminal.Gui.View.AddCommand - nameWithType: View.AddCommand -- uid: Terminal.Gui.View.Added - name: Added - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Added - commentId: E:Terminal.Gui.View.Added - fullName: Terminal.Gui.View.Added - nameWithType: View.Added -- uid: Terminal.Gui.View.AddKeyBinding(Terminal.Gui.Key,Terminal.Gui.Command[]) - name: AddKeyBinding(Key, Command[]) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AddKeyBinding_Terminal_Gui_Key_Terminal_Gui_Command___ - commentId: M:Terminal.Gui.View.AddKeyBinding(Terminal.Gui.Key,Terminal.Gui.Command[]) - name.vb: AddKeyBinding(Key, Command()) - fullName: Terminal.Gui.View.AddKeyBinding(Terminal.Gui.Key, Terminal.Gui.Command[]) - fullName.vb: Terminal.Gui.View.AddKeyBinding(Terminal.Gui.Key, Terminal.Gui.Command()) - nameWithType: View.AddKeyBinding(Key, Command[]) - nameWithType.vb: View.AddKeyBinding(Key, Command()) -- uid: Terminal.Gui.View.AddKeyBinding* - name: AddKeyBinding - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AddKeyBinding_ - commentId: Overload:Terminal.Gui.View.AddKeyBinding - isSpec: "True" - fullName: Terminal.Gui.View.AddKeyBinding - nameWithType: View.AddKeyBinding -- uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune) - name: AddRune(Int32, Int32, Rune) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AddRune_System_Int32_System_Int32_System_Rune_ - commentId: M:Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune) - fullName: Terminal.Gui.View.AddRune(System.Int32, System.Int32, System.Rune) - nameWithType: View.AddRune(Int32, Int32, Rune) -- uid: Terminal.Gui.View.AddRune* - name: AddRune - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AddRune_ - commentId: Overload:Terminal.Gui.View.AddRune - isSpec: "True" - fullName: Terminal.Gui.View.AddRune - nameWithType: View.AddRune -- uid: Terminal.Gui.View.AutoSize - name: AutoSize - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AutoSize - commentId: P:Terminal.Gui.View.AutoSize - fullName: Terminal.Gui.View.AutoSize - nameWithType: View.AutoSize -- uid: Terminal.Gui.View.AutoSize* - name: AutoSize - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_AutoSize_ - commentId: Overload:Terminal.Gui.View.AutoSize - isSpec: "True" - fullName: Terminal.Gui.View.AutoSize - nameWithType: View.AutoSize -- uid: Terminal.Gui.View.BeginInit - name: BeginInit() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_BeginInit - commentId: M:Terminal.Gui.View.BeginInit - fullName: Terminal.Gui.View.BeginInit() - nameWithType: View.BeginInit() -- uid: Terminal.Gui.View.BeginInit* - name: BeginInit - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_BeginInit_ - commentId: Overload:Terminal.Gui.View.BeginInit - isSpec: "True" - fullName: Terminal.Gui.View.BeginInit - nameWithType: View.BeginInit -- uid: Terminal.Gui.View.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Border - commentId: P:Terminal.Gui.View.Border - fullName: Terminal.Gui.View.Border - nameWithType: View.Border -- uid: Terminal.Gui.View.Border* - name: Border - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Border_ - commentId: Overload:Terminal.Gui.View.Border - isSpec: "True" - fullName: Terminal.Gui.View.Border - nameWithType: View.Border -- uid: Terminal.Gui.View.Bounds - name: Bounds - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Bounds - commentId: P:Terminal.Gui.View.Bounds - fullName: Terminal.Gui.View.Bounds - nameWithType: View.Bounds -- uid: Terminal.Gui.View.Bounds* - name: Bounds - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Bounds_ - commentId: Overload:Terminal.Gui.View.Bounds - isSpec: "True" - fullName: Terminal.Gui.View.Bounds - nameWithType: View.Bounds -- uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View) - name: BringSubviewForward(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewForward_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View) - fullName: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View) - nameWithType: View.BringSubviewForward(View) -- uid: Terminal.Gui.View.BringSubviewForward* - name: BringSubviewForward - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewForward_ - commentId: Overload:Terminal.Gui.View.BringSubviewForward - isSpec: "True" - fullName: Terminal.Gui.View.BringSubviewForward - nameWithType: View.BringSubviewForward -- uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View) - name: BringSubviewToFront(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewToFront_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View) - fullName: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View) - nameWithType: View.BringSubviewToFront(View) -- uid: Terminal.Gui.View.BringSubviewToFront* - name: BringSubviewToFront - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewToFront_ - commentId: Overload:Terminal.Gui.View.BringSubviewToFront - isSpec: "True" - fullName: Terminal.Gui.View.BringSubviewToFront - nameWithType: View.BringSubviewToFront -- uid: Terminal.Gui.View.CanFocus - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_CanFocus - commentId: P:Terminal.Gui.View.CanFocus - fullName: Terminal.Gui.View.CanFocus - nameWithType: View.CanFocus -- uid: Terminal.Gui.View.CanFocus* - name: CanFocus - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_CanFocus_ - commentId: Overload:Terminal.Gui.View.CanFocus - isSpec: "True" - fullName: Terminal.Gui.View.CanFocus - nameWithType: View.CanFocus -- uid: Terminal.Gui.View.CanFocusChanged - name: CanFocusChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_CanFocusChanged - commentId: E:Terminal.Gui.View.CanFocusChanged - fullName: Terminal.Gui.View.CanFocusChanged - nameWithType: View.CanFocusChanged -- uid: Terminal.Gui.View.Clear - name: Clear() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Clear - commentId: M:Terminal.Gui.View.Clear - fullName: Terminal.Gui.View.Clear() - nameWithType: View.Clear() -- uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect) - name: Clear(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Clear_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.Clear(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.Clear(Terminal.Gui.Rect) - nameWithType: View.Clear(Rect) -- uid: Terminal.Gui.View.Clear* - name: Clear - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Clear_ - commentId: Overload:Terminal.Gui.View.Clear - isSpec: "True" - fullName: Terminal.Gui.View.Clear - nameWithType: View.Clear -- uid: Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Command[]) - name: ClearKeybinding(Command[]) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_Terminal_Gui_Command___ - commentId: M:Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Command[]) - name.vb: ClearKeybinding(Command()) - fullName: Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Command[]) - fullName.vb: Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Command()) - nameWithType: View.ClearKeybinding(Command[]) - nameWithType.vb: View.ClearKeybinding(Command()) -- uid: Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Key) - name: ClearKeybinding(Key) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Key) - fullName: Terminal.Gui.View.ClearKeybinding(Terminal.Gui.Key) - nameWithType: View.ClearKeybinding(Key) -- uid: Terminal.Gui.View.ClearKeybinding* - name: ClearKeybinding - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_ - commentId: Overload:Terminal.Gui.View.ClearKeybinding - isSpec: "True" - fullName: Terminal.Gui.View.ClearKeybinding - nameWithType: View.ClearKeybinding -- uid: Terminal.Gui.View.ClearKeybindings - name: ClearKeybindings() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybindings - commentId: M:Terminal.Gui.View.ClearKeybindings - fullName: Terminal.Gui.View.ClearKeybindings() - nameWithType: View.ClearKeybindings() -- uid: Terminal.Gui.View.ClearKeybindings* - name: ClearKeybindings - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybindings_ - commentId: Overload:Terminal.Gui.View.ClearKeybindings - isSpec: "True" - fullName: Terminal.Gui.View.ClearKeybindings - nameWithType: View.ClearKeybindings -- uid: Terminal.Gui.View.ClearLayoutNeeded - name: ClearLayoutNeeded() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearLayoutNeeded - commentId: M:Terminal.Gui.View.ClearLayoutNeeded - fullName: Terminal.Gui.View.ClearLayoutNeeded() - nameWithType: View.ClearLayoutNeeded() -- uid: Terminal.Gui.View.ClearLayoutNeeded* - name: ClearLayoutNeeded - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearLayoutNeeded_ - commentId: Overload:Terminal.Gui.View.ClearLayoutNeeded - isSpec: "True" - fullName: Terminal.Gui.View.ClearLayoutNeeded - nameWithType: View.ClearLayoutNeeded -- uid: Terminal.Gui.View.ClearNeedsDisplay - name: ClearNeedsDisplay() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearNeedsDisplay - commentId: M:Terminal.Gui.View.ClearNeedsDisplay - fullName: Terminal.Gui.View.ClearNeedsDisplay() - nameWithType: View.ClearNeedsDisplay() -- uid: Terminal.Gui.View.ClearNeedsDisplay* - name: ClearNeedsDisplay - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClearNeedsDisplay_ - commentId: Overload:Terminal.Gui.View.ClearNeedsDisplay - isSpec: "True" - fullName: Terminal.Gui.View.ClearNeedsDisplay - nameWithType: View.ClearNeedsDisplay -- uid: Terminal.Gui.View.ClipToBounds - name: ClipToBounds() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClipToBounds - commentId: M:Terminal.Gui.View.ClipToBounds - fullName: Terminal.Gui.View.ClipToBounds() - nameWithType: View.ClipToBounds() -- uid: Terminal.Gui.View.ClipToBounds* - name: ClipToBounds - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ClipToBounds_ - commentId: Overload:Terminal.Gui.View.ClipToBounds - isSpec: "True" - fullName: Terminal.Gui.View.ClipToBounds - nameWithType: View.ClipToBounds -- uid: Terminal.Gui.View.ColorScheme - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ColorScheme - commentId: P:Terminal.Gui.View.ColorScheme - fullName: Terminal.Gui.View.ColorScheme - nameWithType: View.ColorScheme -- uid: Terminal.Gui.View.ColorScheme* - name: ColorScheme - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ColorScheme_ - commentId: Overload:Terminal.Gui.View.ColorScheme - isSpec: "True" - fullName: Terminal.Gui.View.ColorScheme - nameWithType: View.ColorScheme -- uid: Terminal.Gui.View.ContainsKeyBinding(Terminal.Gui.Key) - name: ContainsKeyBinding(Key) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ContainsKeyBinding_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.View.ContainsKeyBinding(Terminal.Gui.Key) - fullName: Terminal.Gui.View.ContainsKeyBinding(Terminal.Gui.Key) - nameWithType: View.ContainsKeyBinding(Key) -- uid: Terminal.Gui.View.ContainsKeyBinding* - name: ContainsKeyBinding - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ContainsKeyBinding_ - commentId: Overload:Terminal.Gui.View.ContainsKeyBinding - isSpec: "True" - fullName: Terminal.Gui.View.ContainsKeyBinding - nameWithType: View.ContainsKeyBinding -- uid: Terminal.Gui.View.Data - name: Data - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Data - commentId: P:Terminal.Gui.View.Data - fullName: Terminal.Gui.View.Data - nameWithType: View.Data -- uid: Terminal.Gui.View.Data* - name: Data - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Data_ - commentId: Overload:Terminal.Gui.View.Data - isSpec: "True" - fullName: Terminal.Gui.View.Data - nameWithType: View.Data -- uid: Terminal.Gui.View.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Dispose_System_Boolean_ - commentId: M:Terminal.Gui.View.Dispose(System.Boolean) - fullName: Terminal.Gui.View.Dispose(System.Boolean) - nameWithType: View.Dispose(Boolean) -- uid: Terminal.Gui.View.Dispose* - name: Dispose - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Dispose_ - commentId: Overload:Terminal.Gui.View.Dispose - isSpec: "True" - fullName: Terminal.Gui.View.Dispose - nameWithType: View.Dispose -- uid: Terminal.Gui.View.DrawContent - name: DrawContent - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawContent - commentId: E:Terminal.Gui.View.DrawContent - fullName: Terminal.Gui.View.DrawContent - nameWithType: View.DrawContent -- uid: Terminal.Gui.View.DrawContentComplete - name: DrawContentComplete - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawContentComplete - commentId: E:Terminal.Gui.View.DrawContentComplete - fullName: Terminal.Gui.View.DrawContentComplete - nameWithType: View.DrawContentComplete -- uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean) - name: DrawFrame(Rect, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawFrame_Terminal_Gui_Rect_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean) - fullName: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect, System.Int32, System.Boolean) - nameWithType: View.DrawFrame(Rect, Int32, Boolean) -- uid: Terminal.Gui.View.DrawFrame* - name: DrawFrame - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawFrame_ - commentId: Overload:Terminal.Gui.View.DrawFrame - isSpec: "True" - fullName: Terminal.Gui.View.DrawFrame - nameWithType: View.DrawFrame -- uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme) - name: DrawHotString(ustring, Boolean, ColorScheme) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_NStack_ustring_System_Boolean_Terminal_Gui_ColorScheme_ - commentId: M:Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme) - fullName: Terminal.Gui.View.DrawHotString(NStack.ustring, System.Boolean, Terminal.Gui.ColorScheme) - nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme) -- uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute) - name: DrawHotString(ustring, Attribute, Attribute) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_NStack_ustring_Terminal_Gui_Attribute_Terminal_Gui_Attribute_ - commentId: M:Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute) - fullName: Terminal.Gui.View.DrawHotString(NStack.ustring, Terminal.Gui.Attribute, Terminal.Gui.Attribute) - nameWithType: View.DrawHotString(ustring, Attribute, Attribute) -- uid: Terminal.Gui.View.DrawHotString* - name: DrawHotString - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_ - commentId: Overload:Terminal.Gui.View.DrawHotString - isSpec: "True" - fullName: Terminal.Gui.View.DrawHotString - nameWithType: View.DrawHotString -- uid: Terminal.Gui.View.Driver - name: Driver - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Driver - commentId: P:Terminal.Gui.View.Driver - fullName: Terminal.Gui.View.Driver - nameWithType: View.Driver -- uid: Terminal.Gui.View.Driver* - name: Driver - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Driver_ - commentId: Overload:Terminal.Gui.View.Driver - isSpec: "True" - fullName: Terminal.Gui.View.Driver - nameWithType: View.Driver -- uid: Terminal.Gui.View.Enabled - name: Enabled - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Enabled - commentId: P:Terminal.Gui.View.Enabled - fullName: Terminal.Gui.View.Enabled - nameWithType: View.Enabled -- uid: Terminal.Gui.View.Enabled* - name: Enabled - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Enabled_ - commentId: Overload:Terminal.Gui.View.Enabled - isSpec: "True" - fullName: Terminal.Gui.View.Enabled - nameWithType: View.Enabled -- uid: Terminal.Gui.View.EnabledChanged - name: EnabledChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_EnabledChanged - commentId: E:Terminal.Gui.View.EnabledChanged - fullName: Terminal.Gui.View.EnabledChanged - nameWithType: View.EnabledChanged -- uid: Terminal.Gui.View.EndInit - name: EndInit() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_EndInit - commentId: M:Terminal.Gui.View.EndInit - fullName: Terminal.Gui.View.EndInit() - nameWithType: View.EndInit() -- uid: Terminal.Gui.View.EndInit* - name: EndInit - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_EndInit_ - commentId: Overload:Terminal.Gui.View.EndInit - isSpec: "True" - fullName: Terminal.Gui.View.EndInit - nameWithType: View.EndInit -- uid: Terminal.Gui.View.EnsureFocus - name: EnsureFocus() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_EnsureFocus - commentId: M:Terminal.Gui.View.EnsureFocus - fullName: Terminal.Gui.View.EnsureFocus() - nameWithType: View.EnsureFocus() -- uid: Terminal.Gui.View.EnsureFocus* - name: EnsureFocus - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_EnsureFocus_ - commentId: Overload:Terminal.Gui.View.EnsureFocus - isSpec: "True" - fullName: Terminal.Gui.View.EnsureFocus - nameWithType: View.EnsureFocus -- uid: Terminal.Gui.View.Enter - name: Enter - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Enter - commentId: E:Terminal.Gui.View.Enter - fullName: Terminal.Gui.View.Enter - nameWithType: View.Enter -- uid: Terminal.Gui.View.Focused - name: Focused - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Focused - commentId: P:Terminal.Gui.View.Focused - fullName: Terminal.Gui.View.Focused - nameWithType: View.Focused -- uid: Terminal.Gui.View.Focused* - name: Focused - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Focused_ - commentId: Overload:Terminal.Gui.View.Focused - isSpec: "True" - fullName: Terminal.Gui.View.Focused - nameWithType: View.Focused -- uid: Terminal.Gui.View.FocusEventArgs - name: View.FocusEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html - commentId: T:Terminal.Gui.View.FocusEventArgs - fullName: Terminal.Gui.View.FocusEventArgs - nameWithType: View.FocusEventArgs -- uid: Terminal.Gui.View.FocusEventArgs.#ctor(Terminal.Gui.View) - name: FocusEventArgs(View) - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html#Terminal_Gui_View_FocusEventArgs__ctor_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.FocusEventArgs.#ctor(Terminal.Gui.View) - fullName: Terminal.Gui.View.FocusEventArgs.FocusEventArgs(Terminal.Gui.View) - nameWithType: View.FocusEventArgs.FocusEventArgs(View) -- uid: Terminal.Gui.View.FocusEventArgs.#ctor* - name: FocusEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html#Terminal_Gui_View_FocusEventArgs__ctor_ - commentId: Overload:Terminal.Gui.View.FocusEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.View.FocusEventArgs.FocusEventArgs - nameWithType: View.FocusEventArgs.FocusEventArgs -- uid: Terminal.Gui.View.FocusEventArgs.Handled - name: Handled - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html#Terminal_Gui_View_FocusEventArgs_Handled - commentId: P:Terminal.Gui.View.FocusEventArgs.Handled - fullName: Terminal.Gui.View.FocusEventArgs.Handled - nameWithType: View.FocusEventArgs.Handled -- uid: Terminal.Gui.View.FocusEventArgs.Handled* - name: Handled - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html#Terminal_Gui_View_FocusEventArgs_Handled_ - commentId: Overload:Terminal.Gui.View.FocusEventArgs.Handled - isSpec: "True" - fullName: Terminal.Gui.View.FocusEventArgs.Handled - nameWithType: View.FocusEventArgs.Handled -- uid: Terminal.Gui.View.FocusEventArgs.View - name: View - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html#Terminal_Gui_View_FocusEventArgs_View - commentId: P:Terminal.Gui.View.FocusEventArgs.View - fullName: Terminal.Gui.View.FocusEventArgs.View - nameWithType: View.FocusEventArgs.View -- uid: Terminal.Gui.View.FocusEventArgs.View* - name: View - href: api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html#Terminal_Gui_View_FocusEventArgs_View_ - commentId: Overload:Terminal.Gui.View.FocusEventArgs.View - isSpec: "True" - fullName: Terminal.Gui.View.FocusEventArgs.View - nameWithType: View.FocusEventArgs.View -- uid: Terminal.Gui.View.FocusFirst - name: FocusFirst() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusFirst - commentId: M:Terminal.Gui.View.FocusFirst - fullName: Terminal.Gui.View.FocusFirst() - nameWithType: View.FocusFirst() -- uid: Terminal.Gui.View.FocusFirst* - name: FocusFirst - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusFirst_ - commentId: Overload:Terminal.Gui.View.FocusFirst - isSpec: "True" - fullName: Terminal.Gui.View.FocusFirst - nameWithType: View.FocusFirst -- uid: Terminal.Gui.View.FocusLast - name: FocusLast() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusLast - commentId: M:Terminal.Gui.View.FocusLast - fullName: Terminal.Gui.View.FocusLast() - nameWithType: View.FocusLast() -- uid: Terminal.Gui.View.FocusLast* - name: FocusLast - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusLast_ - commentId: Overload:Terminal.Gui.View.FocusLast - isSpec: "True" - fullName: Terminal.Gui.View.FocusLast - nameWithType: View.FocusLast -- uid: Terminal.Gui.View.FocusNext - name: FocusNext() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusNext - commentId: M:Terminal.Gui.View.FocusNext - fullName: Terminal.Gui.View.FocusNext() - nameWithType: View.FocusNext() -- uid: Terminal.Gui.View.FocusNext* - name: FocusNext - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusNext_ - commentId: Overload:Terminal.Gui.View.FocusNext - isSpec: "True" - fullName: Terminal.Gui.View.FocusNext - nameWithType: View.FocusNext -- uid: Terminal.Gui.View.FocusPrev - name: FocusPrev() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusPrev - commentId: M:Terminal.Gui.View.FocusPrev - fullName: Terminal.Gui.View.FocusPrev() - nameWithType: View.FocusPrev() -- uid: Terminal.Gui.View.FocusPrev* - name: FocusPrev - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_FocusPrev_ - commentId: Overload:Terminal.Gui.View.FocusPrev - isSpec: "True" - fullName: Terminal.Gui.View.FocusPrev - nameWithType: View.FocusPrev -- uid: Terminal.Gui.View.ForceValidatePosDim - name: ForceValidatePosDim - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ForceValidatePosDim - commentId: P:Terminal.Gui.View.ForceValidatePosDim - fullName: Terminal.Gui.View.ForceValidatePosDim - nameWithType: View.ForceValidatePosDim -- uid: Terminal.Gui.View.ForceValidatePosDim* - name: ForceValidatePosDim - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ForceValidatePosDim_ - commentId: Overload:Terminal.Gui.View.ForceValidatePosDim - isSpec: "True" - fullName: Terminal.Gui.View.ForceValidatePosDim - nameWithType: View.ForceValidatePosDim -- uid: Terminal.Gui.View.Frame - name: Frame - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Frame - commentId: P:Terminal.Gui.View.Frame - fullName: Terminal.Gui.View.Frame - nameWithType: View.Frame -- uid: Terminal.Gui.View.Frame* - name: Frame - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Frame_ - commentId: Overload:Terminal.Gui.View.Frame - isSpec: "True" - fullName: Terminal.Gui.View.Frame - nameWithType: View.Frame -- uid: Terminal.Gui.View.GetAutoSize - name: GetAutoSize() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetAutoSize - commentId: M:Terminal.Gui.View.GetAutoSize - fullName: Terminal.Gui.View.GetAutoSize() - nameWithType: View.GetAutoSize() -- uid: Terminal.Gui.View.GetAutoSize* - name: GetAutoSize - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetAutoSize_ - commentId: Overload:Terminal.Gui.View.GetAutoSize - isSpec: "True" - fullName: Terminal.Gui.View.GetAutoSize - nameWithType: View.GetAutoSize -- uid: Terminal.Gui.View.GetBoundsTextFormatterSize - name: GetBoundsTextFormatterSize() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetBoundsTextFormatterSize - commentId: M:Terminal.Gui.View.GetBoundsTextFormatterSize - fullName: Terminal.Gui.View.GetBoundsTextFormatterSize() - nameWithType: View.GetBoundsTextFormatterSize() -- uid: Terminal.Gui.View.GetBoundsTextFormatterSize* - name: GetBoundsTextFormatterSize - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetBoundsTextFormatterSize_ - commentId: Overload:Terminal.Gui.View.GetBoundsTextFormatterSize - isSpec: "True" - fullName: Terminal.Gui.View.GetBoundsTextFormatterSize - nameWithType: View.GetBoundsTextFormatterSize -- uid: Terminal.Gui.View.GetCurrentHeight(System.Int32@) - name: GetCurrentHeight(out Int32) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentHeight_System_Int32__ - commentId: M:Terminal.Gui.View.GetCurrentHeight(System.Int32@) - name.vb: GetCurrentHeight(ByRef Int32) - fullName: Terminal.Gui.View.GetCurrentHeight(out System.Int32) - fullName.vb: Terminal.Gui.View.GetCurrentHeight(ByRef System.Int32) - nameWithType: View.GetCurrentHeight(out Int32) - nameWithType.vb: View.GetCurrentHeight(ByRef Int32) -- uid: Terminal.Gui.View.GetCurrentHeight* - name: GetCurrentHeight - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentHeight_ - commentId: Overload:Terminal.Gui.View.GetCurrentHeight - isSpec: "True" - fullName: Terminal.Gui.View.GetCurrentHeight - nameWithType: View.GetCurrentHeight -- uid: Terminal.Gui.View.GetCurrentWidth(System.Int32@) - name: GetCurrentWidth(out Int32) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentWidth_System_Int32__ - commentId: M:Terminal.Gui.View.GetCurrentWidth(System.Int32@) - name.vb: GetCurrentWidth(ByRef Int32) - fullName: Terminal.Gui.View.GetCurrentWidth(out System.Int32) - fullName.vb: Terminal.Gui.View.GetCurrentWidth(ByRef System.Int32) - nameWithType: View.GetCurrentWidth(out Int32) - nameWithType.vb: View.GetCurrentWidth(ByRef Int32) -- uid: Terminal.Gui.View.GetCurrentWidth* - name: GetCurrentWidth - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentWidth_ - commentId: Overload:Terminal.Gui.View.GetCurrentWidth - isSpec: "True" - fullName: Terminal.Gui.View.GetCurrentWidth - nameWithType: View.GetCurrentWidth -- uid: Terminal.Gui.View.GetHotKeySpecifierLength(System.Boolean) - name: GetHotKeySpecifierLength(Boolean) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetHotKeySpecifierLength_System_Boolean_ - commentId: M:Terminal.Gui.View.GetHotKeySpecifierLength(System.Boolean) - fullName: Terminal.Gui.View.GetHotKeySpecifierLength(System.Boolean) - nameWithType: View.GetHotKeySpecifierLength(Boolean) -- uid: Terminal.Gui.View.GetHotKeySpecifierLength* - name: GetHotKeySpecifierLength - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetHotKeySpecifierLength_ - commentId: Overload:Terminal.Gui.View.GetHotKeySpecifierLength - isSpec: "True" - fullName: Terminal.Gui.View.GetHotKeySpecifierLength - nameWithType: View.GetHotKeySpecifierLength -- uid: Terminal.Gui.View.GetKeyFromCommand(Terminal.Gui.Command[]) - name: GetKeyFromCommand(Command[]) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetKeyFromCommand_Terminal_Gui_Command___ - commentId: M:Terminal.Gui.View.GetKeyFromCommand(Terminal.Gui.Command[]) - name.vb: GetKeyFromCommand(Command()) - fullName: Terminal.Gui.View.GetKeyFromCommand(Terminal.Gui.Command[]) - fullName.vb: Terminal.Gui.View.GetKeyFromCommand(Terminal.Gui.Command()) - nameWithType: View.GetKeyFromCommand(Command[]) - nameWithType.vb: View.GetKeyFromCommand(Command()) -- uid: Terminal.Gui.View.GetKeyFromCommand* - name: GetKeyFromCommand - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetKeyFromCommand_ - commentId: Overload:Terminal.Gui.View.GetKeyFromCommand - isSpec: "True" - fullName: Terminal.Gui.View.GetKeyFromCommand - nameWithType: View.GetKeyFromCommand -- uid: Terminal.Gui.View.GetMinWidthHeight(Terminal.Gui.Size@) - name: GetMinWidthHeight(out Size) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetMinWidthHeight_Terminal_Gui_Size__ - commentId: M:Terminal.Gui.View.GetMinWidthHeight(Terminal.Gui.Size@) - name.vb: GetMinWidthHeight(ByRef Size) - fullName: Terminal.Gui.View.GetMinWidthHeight(out Terminal.Gui.Size) - fullName.vb: Terminal.Gui.View.GetMinWidthHeight(ByRef Terminal.Gui.Size) - nameWithType: View.GetMinWidthHeight(out Size) - nameWithType.vb: View.GetMinWidthHeight(ByRef Size) -- uid: Terminal.Gui.View.GetMinWidthHeight* - name: GetMinWidthHeight - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetMinWidthHeight_ - commentId: Overload:Terminal.Gui.View.GetMinWidthHeight - isSpec: "True" - fullName: Terminal.Gui.View.GetMinWidthHeight - nameWithType: View.GetMinWidthHeight -- uid: Terminal.Gui.View.GetNormalColor - name: GetNormalColor() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetNormalColor - commentId: M:Terminal.Gui.View.GetNormalColor - fullName: Terminal.Gui.View.GetNormalColor() - nameWithType: View.GetNormalColor() -- uid: Terminal.Gui.View.GetNormalColor* - name: GetNormalColor - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetNormalColor_ - commentId: Overload:Terminal.Gui.View.GetNormalColor - isSpec: "True" - fullName: Terminal.Gui.View.GetNormalColor - nameWithType: View.GetNormalColor -- uid: Terminal.Gui.View.GetSupportedCommands - name: GetSupportedCommands() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetSupportedCommands - commentId: M:Terminal.Gui.View.GetSupportedCommands - fullName: Terminal.Gui.View.GetSupportedCommands() - nameWithType: View.GetSupportedCommands() -- uid: Terminal.Gui.View.GetSupportedCommands* - name: GetSupportedCommands - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetSupportedCommands_ - commentId: Overload:Terminal.Gui.View.GetSupportedCommands - isSpec: "True" - fullName: Terminal.Gui.View.GetSupportedCommands - nameWithType: View.GetSupportedCommands -- uid: Terminal.Gui.View.GetTextFormatterBoundsSize - name: GetTextFormatterBoundsSize() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetTextFormatterBoundsSize - commentId: M:Terminal.Gui.View.GetTextFormatterBoundsSize - fullName: Terminal.Gui.View.GetTextFormatterBoundsSize() - nameWithType: View.GetTextFormatterBoundsSize() -- uid: Terminal.Gui.View.GetTextFormatterBoundsSize* - name: GetTextFormatterBoundsSize - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetTextFormatterBoundsSize_ - commentId: Overload:Terminal.Gui.View.GetTextFormatterBoundsSize - isSpec: "True" - fullName: Terminal.Gui.View.GetTextFormatterBoundsSize - nameWithType: View.GetTextFormatterBoundsSize -- uid: Terminal.Gui.View.GetTopSuperView - name: GetTopSuperView() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetTopSuperView - commentId: M:Terminal.Gui.View.GetTopSuperView - fullName: Terminal.Gui.View.GetTopSuperView() - nameWithType: View.GetTopSuperView() -- uid: Terminal.Gui.View.GetTopSuperView* - name: GetTopSuperView - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_GetTopSuperView_ - commentId: Overload:Terminal.Gui.View.GetTopSuperView - isSpec: "True" - fullName: Terminal.Gui.View.GetTopSuperView - nameWithType: View.GetTopSuperView -- uid: Terminal.Gui.View.HasFocus - name: HasFocus - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HasFocus - commentId: P:Terminal.Gui.View.HasFocus - fullName: Terminal.Gui.View.HasFocus - nameWithType: View.HasFocus -- uid: Terminal.Gui.View.HasFocus* - name: HasFocus - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HasFocus_ - commentId: Overload:Terminal.Gui.View.HasFocus - isSpec: "True" - fullName: Terminal.Gui.View.HasFocus - nameWithType: View.HasFocus -- uid: Terminal.Gui.View.Height - name: Height - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Height - commentId: P:Terminal.Gui.View.Height - fullName: Terminal.Gui.View.Height - nameWithType: View.Height -- uid: Terminal.Gui.View.Height* - name: Height - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Height_ - commentId: Overload:Terminal.Gui.View.Height - isSpec: "True" - fullName: Terminal.Gui.View.Height - nameWithType: View.Height -- uid: Terminal.Gui.View.HotKey - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HotKey - commentId: P:Terminal.Gui.View.HotKey - fullName: Terminal.Gui.View.HotKey - nameWithType: View.HotKey -- uid: Terminal.Gui.View.HotKey* - name: HotKey - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HotKey_ - commentId: Overload:Terminal.Gui.View.HotKey - isSpec: "True" - fullName: Terminal.Gui.View.HotKey - nameWithType: View.HotKey -- uid: Terminal.Gui.View.HotKeyChanged - name: HotKeyChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HotKeyChanged - commentId: E:Terminal.Gui.View.HotKeyChanged - fullName: Terminal.Gui.View.HotKeyChanged - nameWithType: View.HotKeyChanged -- uid: Terminal.Gui.View.HotKeySpecifier - name: HotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HotKeySpecifier - commentId: P:Terminal.Gui.View.HotKeySpecifier - fullName: Terminal.Gui.View.HotKeySpecifier - nameWithType: View.HotKeySpecifier -- uid: Terminal.Gui.View.HotKeySpecifier* - name: HotKeySpecifier - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_HotKeySpecifier_ - commentId: Overload:Terminal.Gui.View.HotKeySpecifier - isSpec: "True" - fullName: Terminal.Gui.View.HotKeySpecifier - nameWithType: View.HotKeySpecifier -- uid: Terminal.Gui.View.Id - name: Id - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Id - commentId: P:Terminal.Gui.View.Id - fullName: Terminal.Gui.View.Id - nameWithType: View.Id -- uid: Terminal.Gui.View.Id* - name: Id - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Id_ - commentId: Overload:Terminal.Gui.View.Id - isSpec: "True" - fullName: Terminal.Gui.View.Id - nameWithType: View.Id -- uid: Terminal.Gui.View.Initialized - name: Initialized - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Initialized - commentId: E:Terminal.Gui.View.Initialized - fullName: Terminal.Gui.View.Initialized - nameWithType: View.Initialized -- uid: Terminal.Gui.View.InvokeKeybindings(Terminal.Gui.KeyEvent) - name: InvokeKeybindings(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_InvokeKeybindings_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.InvokeKeybindings(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.InvokeKeybindings(Terminal.Gui.KeyEvent) - nameWithType: View.InvokeKeybindings(KeyEvent) -- uid: Terminal.Gui.View.InvokeKeybindings* - name: InvokeKeybindings - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_InvokeKeybindings_ - commentId: Overload:Terminal.Gui.View.InvokeKeybindings - isSpec: "True" - fullName: Terminal.Gui.View.InvokeKeybindings - nameWithType: View.InvokeKeybindings -- uid: Terminal.Gui.View.IsAdded - name: IsAdded - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_IsAdded - commentId: P:Terminal.Gui.View.IsAdded - fullName: Terminal.Gui.View.IsAdded - nameWithType: View.IsAdded -- uid: Terminal.Gui.View.IsAdded* - name: IsAdded - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_IsAdded_ - commentId: Overload:Terminal.Gui.View.IsAdded - isSpec: "True" - fullName: Terminal.Gui.View.IsAdded - nameWithType: View.IsAdded -- uid: Terminal.Gui.View.IsCurrentTop - name: IsCurrentTop - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_IsCurrentTop - commentId: P:Terminal.Gui.View.IsCurrentTop - fullName: Terminal.Gui.View.IsCurrentTop - nameWithType: View.IsCurrentTop -- uid: Terminal.Gui.View.IsCurrentTop* - name: IsCurrentTop - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_IsCurrentTop_ - commentId: Overload:Terminal.Gui.View.IsCurrentTop - isSpec: "True" - fullName: Terminal.Gui.View.IsCurrentTop - nameWithType: View.IsCurrentTop -- uid: Terminal.Gui.View.IsInitialized - name: IsInitialized - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_IsInitialized - commentId: P:Terminal.Gui.View.IsInitialized - fullName: Terminal.Gui.View.IsInitialized - nameWithType: View.IsInitialized -- uid: Terminal.Gui.View.IsInitialized* - name: IsInitialized - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_IsInitialized_ - commentId: Overload:Terminal.Gui.View.IsInitialized - isSpec: "True" - fullName: Terminal.Gui.View.IsInitialized - nameWithType: View.IsInitialized -- uid: Terminal.Gui.View.KeyDown - name: KeyDown - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_KeyDown - commentId: E:Terminal.Gui.View.KeyDown - fullName: Terminal.Gui.View.KeyDown - nameWithType: View.KeyDown -- uid: Terminal.Gui.View.KeyEventEventArgs - name: View.KeyEventEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html - commentId: T:Terminal.Gui.View.KeyEventEventArgs - fullName: Terminal.Gui.View.KeyEventEventArgs - nameWithType: View.KeyEventEventArgs -- uid: Terminal.Gui.View.KeyEventEventArgs.#ctor(Terminal.Gui.KeyEvent) - name: KeyEventEventArgs(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html#Terminal_Gui_View_KeyEventEventArgs__ctor_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.KeyEventEventArgs.#ctor(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.KeyEventEventArgs.KeyEventEventArgs(Terminal.Gui.KeyEvent) - nameWithType: View.KeyEventEventArgs.KeyEventEventArgs(KeyEvent) -- uid: Terminal.Gui.View.KeyEventEventArgs.#ctor* - name: KeyEventEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html#Terminal_Gui_View_KeyEventEventArgs__ctor_ - commentId: Overload:Terminal.Gui.View.KeyEventEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.View.KeyEventEventArgs.KeyEventEventArgs - nameWithType: View.KeyEventEventArgs.KeyEventEventArgs -- uid: Terminal.Gui.View.KeyEventEventArgs.Handled - name: Handled - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html#Terminal_Gui_View_KeyEventEventArgs_Handled - commentId: P:Terminal.Gui.View.KeyEventEventArgs.Handled - fullName: Terminal.Gui.View.KeyEventEventArgs.Handled - nameWithType: View.KeyEventEventArgs.Handled -- uid: Terminal.Gui.View.KeyEventEventArgs.Handled* - name: Handled - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html#Terminal_Gui_View_KeyEventEventArgs_Handled_ - commentId: Overload:Terminal.Gui.View.KeyEventEventArgs.Handled - isSpec: "True" - fullName: Terminal.Gui.View.KeyEventEventArgs.Handled - nameWithType: View.KeyEventEventArgs.Handled -- uid: Terminal.Gui.View.KeyEventEventArgs.KeyEvent - name: KeyEvent - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html#Terminal_Gui_View_KeyEventEventArgs_KeyEvent - commentId: P:Terminal.Gui.View.KeyEventEventArgs.KeyEvent - fullName: Terminal.Gui.View.KeyEventEventArgs.KeyEvent - nameWithType: View.KeyEventEventArgs.KeyEvent -- uid: Terminal.Gui.View.KeyEventEventArgs.KeyEvent* - name: KeyEvent - href: api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html#Terminal_Gui_View_KeyEventEventArgs_KeyEvent_ - commentId: Overload:Terminal.Gui.View.KeyEventEventArgs.KeyEvent - isSpec: "True" - fullName: Terminal.Gui.View.KeyEventEventArgs.KeyEvent - nameWithType: View.KeyEventEventArgs.KeyEvent -- uid: Terminal.Gui.View.KeyPress - name: KeyPress - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_KeyPress - commentId: E:Terminal.Gui.View.KeyPress - fullName: Terminal.Gui.View.KeyPress - nameWithType: View.KeyPress -- uid: Terminal.Gui.View.KeyUp - name: KeyUp - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_KeyUp - commentId: E:Terminal.Gui.View.KeyUp - fullName: Terminal.Gui.View.KeyUp - nameWithType: View.KeyUp -- uid: Terminal.Gui.View.LayoutComplete - name: LayoutComplete - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_LayoutComplete - commentId: E:Terminal.Gui.View.LayoutComplete - fullName: Terminal.Gui.View.LayoutComplete - nameWithType: View.LayoutComplete -- uid: Terminal.Gui.View.LayoutEventArgs - name: View.LayoutEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html - commentId: T:Terminal.Gui.View.LayoutEventArgs - fullName: Terminal.Gui.View.LayoutEventArgs - nameWithType: View.LayoutEventArgs -- uid: Terminal.Gui.View.LayoutEventArgs.OldBounds - name: OldBounds - href: api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html#Terminal_Gui_View_LayoutEventArgs_OldBounds - commentId: P:Terminal.Gui.View.LayoutEventArgs.OldBounds - fullName: Terminal.Gui.View.LayoutEventArgs.OldBounds - nameWithType: View.LayoutEventArgs.OldBounds -- uid: Terminal.Gui.View.LayoutEventArgs.OldBounds* - name: OldBounds - href: api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html#Terminal_Gui_View_LayoutEventArgs_OldBounds_ - commentId: Overload:Terminal.Gui.View.LayoutEventArgs.OldBounds - isSpec: "True" - fullName: Terminal.Gui.View.LayoutEventArgs.OldBounds - nameWithType: View.LayoutEventArgs.OldBounds -- uid: Terminal.Gui.View.LayoutStarted - name: LayoutStarted - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_LayoutStarted - commentId: E:Terminal.Gui.View.LayoutStarted - fullName: Terminal.Gui.View.LayoutStarted - nameWithType: View.LayoutStarted -- uid: Terminal.Gui.View.LayoutStyle - name: LayoutStyle - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_LayoutStyle - commentId: P:Terminal.Gui.View.LayoutStyle - fullName: Terminal.Gui.View.LayoutStyle - nameWithType: View.LayoutStyle -- uid: Terminal.Gui.View.LayoutStyle* - name: LayoutStyle - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_LayoutStyle_ - commentId: Overload:Terminal.Gui.View.LayoutStyle - isSpec: "True" - fullName: Terminal.Gui.View.LayoutStyle - nameWithType: View.LayoutStyle -- uid: Terminal.Gui.View.LayoutSubviews - name: LayoutSubviews() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_LayoutSubviews - commentId: M:Terminal.Gui.View.LayoutSubviews - fullName: Terminal.Gui.View.LayoutSubviews() - nameWithType: View.LayoutSubviews() -- uid: Terminal.Gui.View.LayoutSubviews* - name: LayoutSubviews - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_LayoutSubviews_ - commentId: Overload:Terminal.Gui.View.LayoutSubviews - isSpec: "True" - fullName: Terminal.Gui.View.LayoutSubviews - nameWithType: View.LayoutSubviews -- uid: Terminal.Gui.View.Leave - name: Leave - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Leave - commentId: E:Terminal.Gui.View.Leave - fullName: Terminal.Gui.View.Leave - nameWithType: View.Leave -- uid: Terminal.Gui.View.MostFocused - name: MostFocused - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_MostFocused - commentId: P:Terminal.Gui.View.MostFocused - fullName: Terminal.Gui.View.MostFocused - nameWithType: View.MostFocused -- uid: Terminal.Gui.View.MostFocused* - name: MostFocused - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_MostFocused_ - commentId: Overload:Terminal.Gui.View.MostFocused - isSpec: "True" - fullName: Terminal.Gui.View.MostFocused - nameWithType: View.MostFocused -- uid: Terminal.Gui.View.MouseClick - name: MouseClick - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_MouseClick - commentId: E:Terminal.Gui.View.MouseClick - fullName: Terminal.Gui.View.MouseClick - nameWithType: View.MouseClick -- uid: Terminal.Gui.View.MouseEnter - name: MouseEnter - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_MouseEnter - commentId: E:Terminal.Gui.View.MouseEnter - fullName: Terminal.Gui.View.MouseEnter - nameWithType: View.MouseEnter -- uid: Terminal.Gui.View.MouseEventArgs - name: View.MouseEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html - commentId: T:Terminal.Gui.View.MouseEventArgs - fullName: Terminal.Gui.View.MouseEventArgs - nameWithType: View.MouseEventArgs -- uid: Terminal.Gui.View.MouseEventArgs.#ctor(Terminal.Gui.MouseEvent) - name: MouseEventArgs(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html#Terminal_Gui_View_MouseEventArgs__ctor_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.View.MouseEventArgs.#ctor(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.View.MouseEventArgs.MouseEventArgs(Terminal.Gui.MouseEvent) - nameWithType: View.MouseEventArgs.MouseEventArgs(MouseEvent) -- uid: Terminal.Gui.View.MouseEventArgs.#ctor* - name: MouseEventArgs - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html#Terminal_Gui_View_MouseEventArgs__ctor_ - commentId: Overload:Terminal.Gui.View.MouseEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.View.MouseEventArgs.MouseEventArgs - nameWithType: View.MouseEventArgs.MouseEventArgs -- uid: Terminal.Gui.View.MouseEventArgs.Handled - name: Handled - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html#Terminal_Gui_View_MouseEventArgs_Handled - commentId: P:Terminal.Gui.View.MouseEventArgs.Handled - fullName: Terminal.Gui.View.MouseEventArgs.Handled - nameWithType: View.MouseEventArgs.Handled -- uid: Terminal.Gui.View.MouseEventArgs.Handled* - name: Handled - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html#Terminal_Gui_View_MouseEventArgs_Handled_ - commentId: Overload:Terminal.Gui.View.MouseEventArgs.Handled - isSpec: "True" - fullName: Terminal.Gui.View.MouseEventArgs.Handled - nameWithType: View.MouseEventArgs.Handled -- uid: Terminal.Gui.View.MouseEventArgs.MouseEvent - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html#Terminal_Gui_View_MouseEventArgs_MouseEvent - commentId: P:Terminal.Gui.View.MouseEventArgs.MouseEvent - fullName: Terminal.Gui.View.MouseEventArgs.MouseEvent - nameWithType: View.MouseEventArgs.MouseEvent -- uid: Terminal.Gui.View.MouseEventArgs.MouseEvent* - name: MouseEvent - href: api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html#Terminal_Gui_View_MouseEventArgs_MouseEvent_ - commentId: Overload:Terminal.Gui.View.MouseEventArgs.MouseEvent - isSpec: "True" - fullName: Terminal.Gui.View.MouseEventArgs.MouseEvent - nameWithType: View.MouseEventArgs.MouseEvent -- uid: Terminal.Gui.View.MouseLeave - name: MouseLeave - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_MouseLeave - commentId: E:Terminal.Gui.View.MouseLeave - fullName: Terminal.Gui.View.MouseLeave - nameWithType: View.MouseLeave -- uid: Terminal.Gui.View.Move(System.Int32,System.Int32,System.Boolean) - name: Move(Int32, Int32, Boolean) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Move_System_Int32_System_Int32_System_Boolean_ - commentId: M:Terminal.Gui.View.Move(System.Int32,System.Int32,System.Boolean) - fullName: Terminal.Gui.View.Move(System.Int32, System.Int32, System.Boolean) - nameWithType: View.Move(Int32, Int32, Boolean) -- uid: Terminal.Gui.View.Move* - name: Move - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Move_ - commentId: Overload:Terminal.Gui.View.Move - isSpec: "True" - fullName: Terminal.Gui.View.Move - nameWithType: View.Move -- uid: Terminal.Gui.View.OnAdded(Terminal.Gui.View) - name: OnAdded(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnAdded_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.OnAdded(Terminal.Gui.View) - fullName: Terminal.Gui.View.OnAdded(Terminal.Gui.View) - nameWithType: View.OnAdded(View) -- uid: Terminal.Gui.View.OnAdded* - name: OnAdded - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnAdded_ - commentId: Overload:Terminal.Gui.View.OnAdded - isSpec: "True" - fullName: Terminal.Gui.View.OnAdded - nameWithType: View.OnAdded -- uid: Terminal.Gui.View.OnCanFocusChanged - name: OnCanFocusChanged() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnCanFocusChanged - commentId: M:Terminal.Gui.View.OnCanFocusChanged - fullName: Terminal.Gui.View.OnCanFocusChanged() - nameWithType: View.OnCanFocusChanged() -- uid: Terminal.Gui.View.OnCanFocusChanged* - name: OnCanFocusChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnCanFocusChanged_ - commentId: Overload:Terminal.Gui.View.OnCanFocusChanged - isSpec: "True" - fullName: Terminal.Gui.View.OnCanFocusChanged - nameWithType: View.OnCanFocusChanged -- uid: Terminal.Gui.View.OnDrawContent(Terminal.Gui.Rect) - name: OnDrawContent(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContent_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.OnDrawContent(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.OnDrawContent(Terminal.Gui.Rect) - nameWithType: View.OnDrawContent(Rect) -- uid: Terminal.Gui.View.OnDrawContent* - name: OnDrawContent - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContent_ - commentId: Overload:Terminal.Gui.View.OnDrawContent - isSpec: "True" - fullName: Terminal.Gui.View.OnDrawContent - nameWithType: View.OnDrawContent -- uid: Terminal.Gui.View.OnDrawContentComplete(Terminal.Gui.Rect) - name: OnDrawContentComplete(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContentComplete_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.OnDrawContentComplete(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.OnDrawContentComplete(Terminal.Gui.Rect) - nameWithType: View.OnDrawContentComplete(Rect) -- uid: Terminal.Gui.View.OnDrawContentComplete* - name: OnDrawContentComplete - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContentComplete_ - commentId: Overload:Terminal.Gui.View.OnDrawContentComplete - isSpec: "True" - fullName: Terminal.Gui.View.OnDrawContentComplete - nameWithType: View.OnDrawContentComplete -- uid: Terminal.Gui.View.OnEnabledChanged - name: OnEnabledChanged() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnEnabledChanged - commentId: M:Terminal.Gui.View.OnEnabledChanged - fullName: Terminal.Gui.View.OnEnabledChanged() - nameWithType: View.OnEnabledChanged() -- uid: Terminal.Gui.View.OnEnabledChanged* - name: OnEnabledChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnEnabledChanged_ - commentId: Overload:Terminal.Gui.View.OnEnabledChanged - isSpec: "True" - fullName: Terminal.Gui.View.OnEnabledChanged - nameWithType: View.OnEnabledChanged -- uid: Terminal.Gui.View.OnEnter(Terminal.Gui.View) - name: OnEnter(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnEnter_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.OnEnter(Terminal.Gui.View) - fullName: Terminal.Gui.View.OnEnter(Terminal.Gui.View) - nameWithType: View.OnEnter(View) -- uid: Terminal.Gui.View.OnEnter* - name: OnEnter - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnEnter_ - commentId: Overload:Terminal.Gui.View.OnEnter - isSpec: "True" - fullName: Terminal.Gui.View.OnEnter - nameWithType: View.OnEnter -- uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent) - name: OnKeyDown(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnKeyDown_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent) - nameWithType: View.OnKeyDown(KeyEvent) -- uid: Terminal.Gui.View.OnKeyDown* - name: OnKeyDown - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnKeyDown_ - commentId: Overload:Terminal.Gui.View.OnKeyDown - isSpec: "True" - fullName: Terminal.Gui.View.OnKeyDown - nameWithType: View.OnKeyDown -- uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent) - name: OnKeyUp(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnKeyUp_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent) - nameWithType: View.OnKeyUp(KeyEvent) -- uid: Terminal.Gui.View.OnKeyUp* - name: OnKeyUp - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnKeyUp_ - commentId: Overload:Terminal.Gui.View.OnKeyUp - isSpec: "True" - fullName: Terminal.Gui.View.OnKeyUp - nameWithType: View.OnKeyUp -- uid: Terminal.Gui.View.OnLeave(Terminal.Gui.View) - name: OnLeave(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnLeave_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.OnLeave(Terminal.Gui.View) - fullName: Terminal.Gui.View.OnLeave(Terminal.Gui.View) - nameWithType: View.OnLeave(View) -- uid: Terminal.Gui.View.OnLeave* - name: OnLeave - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnLeave_ - commentId: Overload:Terminal.Gui.View.OnLeave - isSpec: "True" - fullName: Terminal.Gui.View.OnLeave - nameWithType: View.OnLeave -- uid: Terminal.Gui.View.OnMouseClick(Terminal.Gui.View.MouseEventArgs) - name: OnMouseClick(View.MouseEventArgs) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseClick_Terminal_Gui_View_MouseEventArgs_ - commentId: M:Terminal.Gui.View.OnMouseClick(Terminal.Gui.View.MouseEventArgs) - fullName: Terminal.Gui.View.OnMouseClick(Terminal.Gui.View.MouseEventArgs) - nameWithType: View.OnMouseClick(View.MouseEventArgs) -- uid: Terminal.Gui.View.OnMouseClick* - name: OnMouseClick - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseClick_ - commentId: Overload:Terminal.Gui.View.OnMouseClick - isSpec: "True" - fullName: Terminal.Gui.View.OnMouseClick - nameWithType: View.OnMouseClick -- uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent) - name: OnMouseEnter(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEnter_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent) - nameWithType: View.OnMouseEnter(MouseEvent) -- uid: Terminal.Gui.View.OnMouseEnter* - name: OnMouseEnter - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEnter_ - commentId: Overload:Terminal.Gui.View.OnMouseEnter - isSpec: "True" - fullName: Terminal.Gui.View.OnMouseEnter - nameWithType: View.OnMouseEnter -- uid: Terminal.Gui.View.OnMouseEvent(Terminal.Gui.MouseEvent) - name: OnMouseEvent(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEvent_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.View.OnMouseEvent(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.View.OnMouseEvent(Terminal.Gui.MouseEvent) - nameWithType: View.OnMouseEvent(MouseEvent) -- uid: Terminal.Gui.View.OnMouseEvent* - name: OnMouseEvent - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEvent_ - commentId: Overload:Terminal.Gui.View.OnMouseEvent - isSpec: "True" - fullName: Terminal.Gui.View.OnMouseEvent - nameWithType: View.OnMouseEvent -- uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent) - name: OnMouseLeave(MouseEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseLeave_Terminal_Gui_MouseEvent_ - commentId: M:Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent) - fullName: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent) - nameWithType: View.OnMouseLeave(MouseEvent) -- uid: Terminal.Gui.View.OnMouseLeave* - name: OnMouseLeave - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnMouseLeave_ - commentId: Overload:Terminal.Gui.View.OnMouseLeave - isSpec: "True" - fullName: Terminal.Gui.View.OnMouseLeave - nameWithType: View.OnMouseLeave -- uid: Terminal.Gui.View.OnRemoved(Terminal.Gui.View) - name: OnRemoved(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnRemoved_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.OnRemoved(Terminal.Gui.View) - fullName: Terminal.Gui.View.OnRemoved(Terminal.Gui.View) - nameWithType: View.OnRemoved(View) -- uid: Terminal.Gui.View.OnRemoved* - name: OnRemoved - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnRemoved_ - commentId: Overload:Terminal.Gui.View.OnRemoved - isSpec: "True" - fullName: Terminal.Gui.View.OnRemoved - nameWithType: View.OnRemoved -- uid: Terminal.Gui.View.OnVisibleChanged - name: OnVisibleChanged() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnVisibleChanged - commentId: M:Terminal.Gui.View.OnVisibleChanged - fullName: Terminal.Gui.View.OnVisibleChanged() - nameWithType: View.OnVisibleChanged() -- uid: Terminal.Gui.View.OnVisibleChanged* - name: OnVisibleChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_OnVisibleChanged_ - commentId: Overload:Terminal.Gui.View.OnVisibleChanged - isSpec: "True" - fullName: Terminal.Gui.View.OnVisibleChanged - nameWithType: View.OnVisibleChanged -- uid: Terminal.Gui.View.PositionCursor - name: PositionCursor() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_PositionCursor - commentId: M:Terminal.Gui.View.PositionCursor - fullName: Terminal.Gui.View.PositionCursor() - nameWithType: View.PositionCursor() -- uid: Terminal.Gui.View.PositionCursor* - name: PositionCursor - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_PositionCursor_ - commentId: Overload:Terminal.Gui.View.PositionCursor - isSpec: "True" - fullName: Terminal.Gui.View.PositionCursor - nameWithType: View.PositionCursor -- uid: Terminal.Gui.View.PreserveTrailingSpaces - name: PreserveTrailingSpaces - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_PreserveTrailingSpaces - commentId: P:Terminal.Gui.View.PreserveTrailingSpaces - fullName: Terminal.Gui.View.PreserveTrailingSpaces - nameWithType: View.PreserveTrailingSpaces -- uid: Terminal.Gui.View.PreserveTrailingSpaces* - name: PreserveTrailingSpaces - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_PreserveTrailingSpaces_ - commentId: Overload:Terminal.Gui.View.PreserveTrailingSpaces - isSpec: "True" - fullName: Terminal.Gui.View.PreserveTrailingSpaces - nameWithType: View.PreserveTrailingSpaces -- uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) - name: ProcessColdKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessColdKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) - nameWithType: View.ProcessColdKey(KeyEvent) -- uid: Terminal.Gui.View.ProcessColdKey* - name: ProcessColdKey - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessColdKey_ - commentId: Overload:Terminal.Gui.View.ProcessColdKey - isSpec: "True" - fullName: Terminal.Gui.View.ProcessColdKey - nameWithType: View.ProcessColdKey -- uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent) - name: ProcessHotKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessHotKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent) - nameWithType: View.ProcessHotKey(KeyEvent) -- uid: Terminal.Gui.View.ProcessHotKey* - name: ProcessHotKey - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessHotKey_ - commentId: Overload:Terminal.Gui.View.ProcessHotKey - isSpec: "True" - fullName: Terminal.Gui.View.ProcessHotKey - nameWithType: View.ProcessHotKey -- uid: Terminal.Gui.View.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.View.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.View.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: View.ProcessKey(KeyEvent) -- uid: Terminal.Gui.View.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessKey_ - commentId: Overload:Terminal.Gui.View.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.View.ProcessKey - nameWithType: View.ProcessKey -- uid: Terminal.Gui.View.ProcessResizeView - name: ProcessResizeView() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessResizeView - commentId: M:Terminal.Gui.View.ProcessResizeView - fullName: Terminal.Gui.View.ProcessResizeView() - nameWithType: View.ProcessResizeView() -- uid: Terminal.Gui.View.ProcessResizeView* - name: ProcessResizeView - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ProcessResizeView_ - commentId: Overload:Terminal.Gui.View.ProcessResizeView - isSpec: "True" - fullName: Terminal.Gui.View.ProcessResizeView - nameWithType: View.ProcessResizeView -- uid: Terminal.Gui.View.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.Redraw(Terminal.Gui.Rect) - nameWithType: View.Redraw(Rect) -- uid: Terminal.Gui.View.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Redraw_ - commentId: Overload:Terminal.Gui.View.Redraw - isSpec: "True" - fullName: Terminal.Gui.View.Redraw - nameWithType: View.Redraw -- uid: Terminal.Gui.View.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.View.Remove(Terminal.Gui.View) - nameWithType: View.Remove(View) -- uid: Terminal.Gui.View.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Remove_ - commentId: Overload:Terminal.Gui.View.Remove - isSpec: "True" - fullName: Terminal.Gui.View.Remove - nameWithType: View.Remove -- uid: Terminal.Gui.View.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_RemoveAll - commentId: M:Terminal.Gui.View.RemoveAll - fullName: Terminal.Gui.View.RemoveAll() - nameWithType: View.RemoveAll() -- uid: Terminal.Gui.View.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_RemoveAll_ - commentId: Overload:Terminal.Gui.View.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.View.RemoveAll - nameWithType: View.RemoveAll -- uid: Terminal.Gui.View.Removed - name: Removed - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Removed - commentId: E:Terminal.Gui.View.Removed - fullName: Terminal.Gui.View.Removed - nameWithType: View.Removed -- uid: Terminal.Gui.View.ReplaceKeyBinding(Terminal.Gui.Key,Terminal.Gui.Key) - name: ReplaceKeyBinding(Key, Key) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ReplaceKeyBinding_Terminal_Gui_Key_Terminal_Gui_Key_ - commentId: M:Terminal.Gui.View.ReplaceKeyBinding(Terminal.Gui.Key,Terminal.Gui.Key) - fullName: Terminal.Gui.View.ReplaceKeyBinding(Terminal.Gui.Key, Terminal.Gui.Key) - nameWithType: View.ReplaceKeyBinding(Key, Key) -- uid: Terminal.Gui.View.ReplaceKeyBinding* - name: ReplaceKeyBinding - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ReplaceKeyBinding_ - commentId: Overload:Terminal.Gui.View.ReplaceKeyBinding - isSpec: "True" - fullName: Terminal.Gui.View.ReplaceKeyBinding - nameWithType: View.ReplaceKeyBinding -- uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32) - name: ScreenToView(Int32, Int32) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ScreenToView_System_Int32_System_Int32_ - commentId: M:Terminal.Gui.View.ScreenToView(System.Int32,System.Int32) - fullName: Terminal.Gui.View.ScreenToView(System.Int32, System.Int32) - nameWithType: View.ScreenToView(Int32, Int32) -- uid: Terminal.Gui.View.ScreenToView* - name: ScreenToView - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ScreenToView_ - commentId: Overload:Terminal.Gui.View.ScreenToView - isSpec: "True" - fullName: Terminal.Gui.View.ScreenToView - nameWithType: View.ScreenToView -- uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View) - name: SendSubviewBackwards(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewBackwards_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View) - fullName: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View) - nameWithType: View.SendSubviewBackwards(View) -- uid: Terminal.Gui.View.SendSubviewBackwards* - name: SendSubviewBackwards - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewBackwards_ - commentId: Overload:Terminal.Gui.View.SendSubviewBackwards - isSpec: "True" - fullName: Terminal.Gui.View.SendSubviewBackwards - nameWithType: View.SendSubviewBackwards -- uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View) - name: SendSubviewToBack(View) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewToBack_Terminal_Gui_View_ - commentId: M:Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View) - fullName: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View) - nameWithType: View.SendSubviewToBack(View) -- uid: Terminal.Gui.View.SendSubviewToBack* - name: SendSubviewToBack - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewToBack_ - commentId: Overload:Terminal.Gui.View.SendSubviewToBack - isSpec: "True" - fullName: Terminal.Gui.View.SendSubviewToBack - nameWithType: View.SendSubviewToBack -- uid: Terminal.Gui.View.SetChildNeedsDisplay - name: SetChildNeedsDisplay() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetChildNeedsDisplay - commentId: M:Terminal.Gui.View.SetChildNeedsDisplay - fullName: Terminal.Gui.View.SetChildNeedsDisplay() - nameWithType: View.SetChildNeedsDisplay() -- uid: Terminal.Gui.View.SetChildNeedsDisplay* - name: SetChildNeedsDisplay - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetChildNeedsDisplay_ - commentId: Overload:Terminal.Gui.View.SetChildNeedsDisplay - isSpec: "True" - fullName: Terminal.Gui.View.SetChildNeedsDisplay - nameWithType: View.SetChildNeedsDisplay -- uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect) - name: SetClip(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetClip_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.SetClip(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.SetClip(Terminal.Gui.Rect) - nameWithType: View.SetClip(Rect) -- uid: Terminal.Gui.View.SetClip* - name: SetClip - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetClip_ - commentId: Overload:Terminal.Gui.View.SetClip - isSpec: "True" - fullName: Terminal.Gui.View.SetClip - nameWithType: View.SetClip -- uid: Terminal.Gui.View.SetFocus - name: SetFocus() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetFocus - commentId: M:Terminal.Gui.View.SetFocus - fullName: Terminal.Gui.View.SetFocus() - nameWithType: View.SetFocus() -- uid: Terminal.Gui.View.SetFocus* - name: SetFocus - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetFocus_ - commentId: Overload:Terminal.Gui.View.SetFocus - isSpec: "True" - fullName: Terminal.Gui.View.SetFocus - nameWithType: View.SetFocus -- uid: Terminal.Gui.View.SetHeight(System.Int32,System.Int32@) - name: SetHeight(Int32, out Int32) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetHeight_System_Int32_System_Int32__ - commentId: M:Terminal.Gui.View.SetHeight(System.Int32,System.Int32@) - name.vb: SetHeight(Int32, ByRef Int32) - fullName: Terminal.Gui.View.SetHeight(System.Int32, out System.Int32) - fullName.vb: Terminal.Gui.View.SetHeight(System.Int32, ByRef System.Int32) - nameWithType: View.SetHeight(Int32, out Int32) - nameWithType.vb: View.SetHeight(Int32, ByRef Int32) -- uid: Terminal.Gui.View.SetHeight* - name: SetHeight - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetHeight_ - commentId: Overload:Terminal.Gui.View.SetHeight - isSpec: "True" - fullName: Terminal.Gui.View.SetHeight - nameWithType: View.SetHeight -- uid: Terminal.Gui.View.SetMinWidthHeight - name: SetMinWidthHeight() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetMinWidthHeight - commentId: M:Terminal.Gui.View.SetMinWidthHeight - fullName: Terminal.Gui.View.SetMinWidthHeight() - nameWithType: View.SetMinWidthHeight() -- uid: Terminal.Gui.View.SetMinWidthHeight* - name: SetMinWidthHeight - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetMinWidthHeight_ - commentId: Overload:Terminal.Gui.View.SetMinWidthHeight - isSpec: "True" - fullName: Terminal.Gui.View.SetMinWidthHeight - nameWithType: View.SetMinWidthHeight -- uid: Terminal.Gui.View.SetNeedsDisplay - name: SetNeedsDisplay() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay - commentId: M:Terminal.Gui.View.SetNeedsDisplay - fullName: Terminal.Gui.View.SetNeedsDisplay() - nameWithType: View.SetNeedsDisplay() -- uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect) - name: SetNeedsDisplay(Rect) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect) - fullName: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect) - nameWithType: View.SetNeedsDisplay(Rect) -- uid: Terminal.Gui.View.SetNeedsDisplay* - name: SetNeedsDisplay - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay_ - commentId: Overload:Terminal.Gui.View.SetNeedsDisplay - isSpec: "True" - fullName: Terminal.Gui.View.SetNeedsDisplay - nameWithType: View.SetNeedsDisplay -- uid: Terminal.Gui.View.SetWidth(System.Int32,System.Int32@) - name: SetWidth(Int32, out Int32) - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetWidth_System_Int32_System_Int32__ - commentId: M:Terminal.Gui.View.SetWidth(System.Int32,System.Int32@) - name.vb: SetWidth(Int32, ByRef Int32) - fullName: Terminal.Gui.View.SetWidth(System.Int32, out System.Int32) - fullName.vb: Terminal.Gui.View.SetWidth(System.Int32, ByRef System.Int32) - nameWithType: View.SetWidth(Int32, out Int32) - nameWithType.vb: View.SetWidth(Int32, ByRef Int32) -- uid: Terminal.Gui.View.SetWidth* - name: SetWidth - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SetWidth_ - commentId: Overload:Terminal.Gui.View.SetWidth - isSpec: "True" - fullName: Terminal.Gui.View.SetWidth - nameWithType: View.SetWidth -- uid: Terminal.Gui.View.Shortcut - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Shortcut - commentId: P:Terminal.Gui.View.Shortcut - fullName: Terminal.Gui.View.Shortcut - nameWithType: View.Shortcut -- uid: Terminal.Gui.View.Shortcut* - name: Shortcut - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Shortcut_ - commentId: Overload:Terminal.Gui.View.Shortcut - isSpec: "True" - fullName: Terminal.Gui.View.Shortcut - nameWithType: View.Shortcut -- uid: Terminal.Gui.View.ShortcutAction - name: ShortcutAction - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ShortcutAction - commentId: P:Terminal.Gui.View.ShortcutAction - fullName: Terminal.Gui.View.ShortcutAction - nameWithType: View.ShortcutAction -- uid: Terminal.Gui.View.ShortcutAction* - name: ShortcutAction - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ShortcutAction_ - commentId: Overload:Terminal.Gui.View.ShortcutAction - isSpec: "True" - fullName: Terminal.Gui.View.ShortcutAction - nameWithType: View.ShortcutAction -- uid: Terminal.Gui.View.ShortcutTag - name: ShortcutTag - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ShortcutTag - commentId: P:Terminal.Gui.View.ShortcutTag - fullName: Terminal.Gui.View.ShortcutTag - nameWithType: View.ShortcutTag -- uid: Terminal.Gui.View.ShortcutTag* - name: ShortcutTag - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ShortcutTag_ - commentId: Overload:Terminal.Gui.View.ShortcutTag - isSpec: "True" - fullName: Terminal.Gui.View.ShortcutTag - nameWithType: View.ShortcutTag -- uid: Terminal.Gui.View.Subviews - name: Subviews - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Subviews - commentId: P:Terminal.Gui.View.Subviews - fullName: Terminal.Gui.View.Subviews - nameWithType: View.Subviews -- uid: Terminal.Gui.View.Subviews* - name: Subviews - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Subviews_ - commentId: Overload:Terminal.Gui.View.Subviews - isSpec: "True" - fullName: Terminal.Gui.View.Subviews - nameWithType: View.Subviews -- uid: Terminal.Gui.View.SuperView - name: SuperView - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SuperView - commentId: P:Terminal.Gui.View.SuperView - fullName: Terminal.Gui.View.SuperView - nameWithType: View.SuperView -- uid: Terminal.Gui.View.SuperView* - name: SuperView - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_SuperView_ - commentId: Overload:Terminal.Gui.View.SuperView - isSpec: "True" - fullName: Terminal.Gui.View.SuperView - nameWithType: View.SuperView -- uid: Terminal.Gui.View.TabIndex - name: TabIndex - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TabIndex - commentId: P:Terminal.Gui.View.TabIndex - fullName: Terminal.Gui.View.TabIndex - nameWithType: View.TabIndex -- uid: Terminal.Gui.View.TabIndex* - name: TabIndex - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TabIndex_ - commentId: Overload:Terminal.Gui.View.TabIndex - isSpec: "True" - fullName: Terminal.Gui.View.TabIndex - nameWithType: View.TabIndex -- uid: Terminal.Gui.View.TabIndexes - name: TabIndexes - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TabIndexes - commentId: P:Terminal.Gui.View.TabIndexes - fullName: Terminal.Gui.View.TabIndexes - nameWithType: View.TabIndexes -- uid: Terminal.Gui.View.TabIndexes* - name: TabIndexes - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TabIndexes_ - commentId: Overload:Terminal.Gui.View.TabIndexes - isSpec: "True" - fullName: Terminal.Gui.View.TabIndexes - nameWithType: View.TabIndexes -- uid: Terminal.Gui.View.TabStop - name: TabStop - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TabStop - commentId: P:Terminal.Gui.View.TabStop - fullName: Terminal.Gui.View.TabStop - nameWithType: View.TabStop -- uid: Terminal.Gui.View.TabStop* - name: TabStop - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TabStop_ - commentId: Overload:Terminal.Gui.View.TabStop - isSpec: "True" - fullName: Terminal.Gui.View.TabStop - nameWithType: View.TabStop -- uid: Terminal.Gui.View.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Text - commentId: P:Terminal.Gui.View.Text - fullName: Terminal.Gui.View.Text - nameWithType: View.Text -- uid: Terminal.Gui.View.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Text_ - commentId: Overload:Terminal.Gui.View.Text - isSpec: "True" - fullName: Terminal.Gui.View.Text - nameWithType: View.Text -- uid: Terminal.Gui.View.TextAlignment - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TextAlignment - commentId: P:Terminal.Gui.View.TextAlignment - fullName: Terminal.Gui.View.TextAlignment - nameWithType: View.TextAlignment -- uid: Terminal.Gui.View.TextAlignment* - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TextAlignment_ - commentId: Overload:Terminal.Gui.View.TextAlignment - isSpec: "True" - fullName: Terminal.Gui.View.TextAlignment - nameWithType: View.TextAlignment -- uid: Terminal.Gui.View.TextDirection - name: TextDirection - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TextDirection - commentId: P:Terminal.Gui.View.TextDirection - fullName: Terminal.Gui.View.TextDirection - nameWithType: View.TextDirection -- uid: Terminal.Gui.View.TextDirection* - name: TextDirection - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TextDirection_ - commentId: Overload:Terminal.Gui.View.TextDirection - isSpec: "True" - fullName: Terminal.Gui.View.TextDirection - nameWithType: View.TextDirection -- uid: Terminal.Gui.View.TextFormatter - name: TextFormatter - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TextFormatter - commentId: P:Terminal.Gui.View.TextFormatter - fullName: Terminal.Gui.View.TextFormatter - nameWithType: View.TextFormatter -- uid: Terminal.Gui.View.TextFormatter* - name: TextFormatter - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_TextFormatter_ - commentId: Overload:Terminal.Gui.View.TextFormatter - isSpec: "True" - fullName: Terminal.Gui.View.TextFormatter - nameWithType: View.TextFormatter -- uid: Terminal.Gui.View.ToString - name: ToString() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ToString - commentId: M:Terminal.Gui.View.ToString - fullName: Terminal.Gui.View.ToString() - nameWithType: View.ToString() -- uid: Terminal.Gui.View.ToString* - name: ToString - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_ToString_ - commentId: Overload:Terminal.Gui.View.ToString - isSpec: "True" - fullName: Terminal.Gui.View.ToString - nameWithType: View.ToString -- uid: Terminal.Gui.View.UpdateTextFormatterText - name: UpdateTextFormatterText() - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_UpdateTextFormatterText - commentId: M:Terminal.Gui.View.UpdateTextFormatterText - fullName: Terminal.Gui.View.UpdateTextFormatterText() - nameWithType: View.UpdateTextFormatterText() -- uid: Terminal.Gui.View.UpdateTextFormatterText* - name: UpdateTextFormatterText - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_UpdateTextFormatterText_ - commentId: Overload:Terminal.Gui.View.UpdateTextFormatterText - isSpec: "True" - fullName: Terminal.Gui.View.UpdateTextFormatterText - nameWithType: View.UpdateTextFormatterText -- uid: Terminal.Gui.View.VerticalTextAlignment - name: VerticalTextAlignment - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_VerticalTextAlignment - commentId: P:Terminal.Gui.View.VerticalTextAlignment - fullName: Terminal.Gui.View.VerticalTextAlignment - nameWithType: View.VerticalTextAlignment -- uid: Terminal.Gui.View.VerticalTextAlignment* - name: VerticalTextAlignment - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_VerticalTextAlignment_ - commentId: Overload:Terminal.Gui.View.VerticalTextAlignment - isSpec: "True" - fullName: Terminal.Gui.View.VerticalTextAlignment - nameWithType: View.VerticalTextAlignment -- uid: Terminal.Gui.View.Visible - name: Visible - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Visible - commentId: P:Terminal.Gui.View.Visible - fullName: Terminal.Gui.View.Visible - nameWithType: View.Visible -- uid: Terminal.Gui.View.Visible* - name: Visible - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Visible_ - commentId: Overload:Terminal.Gui.View.Visible - isSpec: "True" - fullName: Terminal.Gui.View.Visible - nameWithType: View.Visible -- uid: Terminal.Gui.View.VisibleChanged - name: VisibleChanged - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_VisibleChanged - commentId: E:Terminal.Gui.View.VisibleChanged - fullName: Terminal.Gui.View.VisibleChanged - nameWithType: View.VisibleChanged -- uid: Terminal.Gui.View.WantContinuousButtonPressed - name: WantContinuousButtonPressed - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_WantContinuousButtonPressed - commentId: P:Terminal.Gui.View.WantContinuousButtonPressed - fullName: Terminal.Gui.View.WantContinuousButtonPressed - nameWithType: View.WantContinuousButtonPressed -- uid: Terminal.Gui.View.WantContinuousButtonPressed* - name: WantContinuousButtonPressed - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_WantContinuousButtonPressed_ - commentId: Overload:Terminal.Gui.View.WantContinuousButtonPressed - isSpec: "True" - fullName: Terminal.Gui.View.WantContinuousButtonPressed - nameWithType: View.WantContinuousButtonPressed -- uid: Terminal.Gui.View.WantMousePositionReports - name: WantMousePositionReports - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_WantMousePositionReports - commentId: P:Terminal.Gui.View.WantMousePositionReports - fullName: Terminal.Gui.View.WantMousePositionReports - nameWithType: View.WantMousePositionReports -- uid: Terminal.Gui.View.WantMousePositionReports* - name: WantMousePositionReports - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_WantMousePositionReports_ - commentId: Overload:Terminal.Gui.View.WantMousePositionReports - isSpec: "True" - fullName: Terminal.Gui.View.WantMousePositionReports - nameWithType: View.WantMousePositionReports -- uid: Terminal.Gui.View.Width - name: Width - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Width - commentId: P:Terminal.Gui.View.Width - fullName: Terminal.Gui.View.Width - nameWithType: View.Width -- uid: Terminal.Gui.View.Width* - name: Width - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Width_ - commentId: Overload:Terminal.Gui.View.Width - isSpec: "True" - fullName: Terminal.Gui.View.Width - nameWithType: View.Width -- uid: Terminal.Gui.View.X - name: X - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_X - commentId: P:Terminal.Gui.View.X - fullName: Terminal.Gui.View.X - nameWithType: View.X -- uid: Terminal.Gui.View.X* - name: X - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_X_ - commentId: Overload:Terminal.Gui.View.X - isSpec: "True" - fullName: Terminal.Gui.View.X - nameWithType: View.X -- uid: Terminal.Gui.View.Y - name: Y - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Y - commentId: P:Terminal.Gui.View.Y - fullName: Terminal.Gui.View.Y - nameWithType: View.Y -- uid: Terminal.Gui.View.Y* - name: Y - href: api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Y_ - commentId: Overload:Terminal.Gui.View.Y - isSpec: "True" - fullName: Terminal.Gui.View.Y - nameWithType: View.Y -- uid: Terminal.Gui.Window - name: Window - href: api/Terminal.Gui/Terminal.Gui.Window.html - commentId: T:Terminal.Gui.Window - fullName: Terminal.Gui.Window - nameWithType: Window -- uid: Terminal.Gui.Window.#ctor - name: Window() - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window__ctor - commentId: M:Terminal.Gui.Window.#ctor - fullName: Terminal.Gui.Window.Window() - nameWithType: Window.Window() -- uid: Terminal.Gui.Window.#ctor(NStack.ustring) - name: Window(ustring) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.Window.#ctor(NStack.ustring) - fullName: Terminal.Gui.Window.Window(NStack.ustring) - nameWithType: Window.Window(ustring) -- uid: Terminal.Gui.Window.#ctor(NStack.ustring,System.Int32,Terminal.Gui.Border) - name: Window(ustring, Int32, Border) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window__ctor_NStack_ustring_System_Int32_Terminal_Gui_Border_ - commentId: M:Terminal.Gui.Window.#ctor(NStack.ustring,System.Int32,Terminal.Gui.Border) - fullName: Terminal.Gui.Window.Window(NStack.ustring, System.Int32, Terminal.Gui.Border) - nameWithType: Window.Window(ustring, Int32, Border) -- uid: Terminal.Gui.Window.#ctor(Terminal.Gui.Rect,NStack.ustring) - name: Window(Rect, ustring) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window__ctor_Terminal_Gui_Rect_NStack_ustring_ - commentId: M:Terminal.Gui.Window.#ctor(Terminal.Gui.Rect,NStack.ustring) - fullName: Terminal.Gui.Window.Window(Terminal.Gui.Rect, NStack.ustring) - nameWithType: Window.Window(Rect, ustring) -- uid: Terminal.Gui.Window.#ctor(Terminal.Gui.Rect,NStack.ustring,System.Int32,Terminal.Gui.Border) - name: Window(Rect, ustring, Int32, Border) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window__ctor_Terminal_Gui_Rect_NStack_ustring_System_Int32_Terminal_Gui_Border_ - commentId: M:Terminal.Gui.Window.#ctor(Terminal.Gui.Rect,NStack.ustring,System.Int32,Terminal.Gui.Border) - fullName: Terminal.Gui.Window.Window(Terminal.Gui.Rect, NStack.ustring, System.Int32, Terminal.Gui.Border) - nameWithType: Window.Window(Rect, ustring, Int32, Border) -- uid: Terminal.Gui.Window.#ctor* - name: Window - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window__ctor_ - commentId: Overload:Terminal.Gui.Window.#ctor - isSpec: "True" - fullName: Terminal.Gui.Window.Window - nameWithType: Window.Window -- uid: Terminal.Gui.Window.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Window.Add(Terminal.Gui.View) - fullName: Terminal.Gui.Window.Add(Terminal.Gui.View) - nameWithType: Window.Add(View) -- uid: Terminal.Gui.Window.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Add_ - commentId: Overload:Terminal.Gui.Window.Add - isSpec: "True" - fullName: Terminal.Gui.Window.Add - nameWithType: Window.Add -- uid: Terminal.Gui.Window.Border - name: Border - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Border - commentId: P:Terminal.Gui.Window.Border - fullName: Terminal.Gui.Window.Border - nameWithType: Window.Border -- uid: Terminal.Gui.Window.Border* - name: Border - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Border_ - commentId: Overload:Terminal.Gui.Window.Border - isSpec: "True" - fullName: Terminal.Gui.Window.Border - nameWithType: Window.Border -- uid: Terminal.Gui.Window.OnCanFocusChanged - name: OnCanFocusChanged() - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_OnCanFocusChanged - commentId: M:Terminal.Gui.Window.OnCanFocusChanged - fullName: Terminal.Gui.Window.OnCanFocusChanged() - nameWithType: Window.OnCanFocusChanged() -- uid: Terminal.Gui.Window.OnCanFocusChanged* - name: OnCanFocusChanged - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_OnCanFocusChanged_ - commentId: Overload:Terminal.Gui.Window.OnCanFocusChanged - isSpec: "True" - fullName: Terminal.Gui.Window.OnCanFocusChanged - nameWithType: Window.OnCanFocusChanged -- uid: Terminal.Gui.Window.OnTitleChanged(NStack.ustring,NStack.ustring) - name: OnTitleChanged(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_OnTitleChanged_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.Window.OnTitleChanged(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.Window.OnTitleChanged(NStack.ustring, NStack.ustring) - nameWithType: Window.OnTitleChanged(ustring, ustring) -- uid: Terminal.Gui.Window.OnTitleChanged* - name: OnTitleChanged - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_OnTitleChanged_ - commentId: Overload:Terminal.Gui.Window.OnTitleChanged - isSpec: "True" - fullName: Terminal.Gui.Window.OnTitleChanged - nameWithType: Window.OnTitleChanged -- uid: Terminal.Gui.Window.OnTitleChanging(NStack.ustring,NStack.ustring) - name: OnTitleChanging(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_OnTitleChanging_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.Window.OnTitleChanging(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.Window.OnTitleChanging(NStack.ustring, NStack.ustring) - nameWithType: Window.OnTitleChanging(ustring, ustring) -- uid: Terminal.Gui.Window.OnTitleChanging* - name: OnTitleChanging - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_OnTitleChanging_ - commentId: Overload:Terminal.Gui.Window.OnTitleChanging - isSpec: "True" - fullName: Terminal.Gui.Window.OnTitleChanging - nameWithType: Window.OnTitleChanging -- uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect) - name: Redraw(Rect) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Redraw_Terminal_Gui_Rect_ - commentId: M:Terminal.Gui.Window.Redraw(Terminal.Gui.Rect) - fullName: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect) - nameWithType: Window.Redraw(Rect) -- uid: Terminal.Gui.Window.Redraw* - name: Redraw - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Redraw_ - commentId: Overload:Terminal.Gui.Window.Redraw - isSpec: "True" - fullName: Terminal.Gui.Window.Redraw - nameWithType: Window.Redraw -- uid: Terminal.Gui.Window.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Window.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.Window.Remove(Terminal.Gui.View) - nameWithType: Window.Remove(View) -- uid: Terminal.Gui.Window.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Remove_ - commentId: Overload:Terminal.Gui.Window.Remove - isSpec: "True" - fullName: Terminal.Gui.Window.Remove - nameWithType: Window.Remove -- uid: Terminal.Gui.Window.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_RemoveAll - commentId: M:Terminal.Gui.Window.RemoveAll - fullName: Terminal.Gui.Window.RemoveAll() - nameWithType: Window.RemoveAll() -- uid: Terminal.Gui.Window.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_RemoveAll_ - commentId: Overload:Terminal.Gui.Window.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.Window.RemoveAll - nameWithType: Window.RemoveAll -- uid: Terminal.Gui.Window.Text - name: Text - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Text - commentId: P:Terminal.Gui.Window.Text - fullName: Terminal.Gui.Window.Text - nameWithType: Window.Text -- uid: Terminal.Gui.Window.Text* - name: Text - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Text_ - commentId: Overload:Terminal.Gui.Window.Text - isSpec: "True" - fullName: Terminal.Gui.Window.Text - nameWithType: Window.Text -- uid: Terminal.Gui.Window.TextAlignment - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_TextAlignment - commentId: P:Terminal.Gui.Window.TextAlignment - fullName: Terminal.Gui.Window.TextAlignment - nameWithType: Window.TextAlignment -- uid: Terminal.Gui.Window.TextAlignment* - name: TextAlignment - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_TextAlignment_ - commentId: Overload:Terminal.Gui.Window.TextAlignment - isSpec: "True" - fullName: Terminal.Gui.Window.TextAlignment - nameWithType: Window.TextAlignment -- uid: Terminal.Gui.Window.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Title - commentId: P:Terminal.Gui.Window.Title - fullName: Terminal.Gui.Window.Title - nameWithType: Window.Title -- uid: Terminal.Gui.Window.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_Title_ - commentId: Overload:Terminal.Gui.Window.Title - isSpec: "True" - fullName: Terminal.Gui.Window.Title - nameWithType: Window.Title -- uid: Terminal.Gui.Window.TitleChanged - name: TitleChanged - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_TitleChanged - commentId: E:Terminal.Gui.Window.TitleChanged - fullName: Terminal.Gui.Window.TitleChanged - nameWithType: Window.TitleChanged -- uid: Terminal.Gui.Window.TitleChanging - name: TitleChanging - href: api/Terminal.Gui/Terminal.Gui.Window.html#Terminal_Gui_Window_TitleChanging - commentId: E:Terminal.Gui.Window.TitleChanging - fullName: Terminal.Gui.Window.TitleChanging - nameWithType: Window.TitleChanging -- uid: Terminal.Gui.Window.TitleEventArgs - name: Window.TitleEventArgs - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html - commentId: T:Terminal.Gui.Window.TitleEventArgs - fullName: Terminal.Gui.Window.TitleEventArgs - nameWithType: Window.TitleEventArgs -- uid: Terminal.Gui.Window.TitleEventArgs.#ctor(NStack.ustring,NStack.ustring) - name: TitleEventArgs(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs__ctor_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.Window.TitleEventArgs.#ctor(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.Window.TitleEventArgs.TitleEventArgs(NStack.ustring, NStack.ustring) - nameWithType: Window.TitleEventArgs.TitleEventArgs(ustring, ustring) -- uid: Terminal.Gui.Window.TitleEventArgs.#ctor* - name: TitleEventArgs - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs__ctor_ - commentId: Overload:Terminal.Gui.Window.TitleEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.Window.TitleEventArgs.TitleEventArgs - nameWithType: Window.TitleEventArgs.TitleEventArgs -- uid: Terminal.Gui.Window.TitleEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs_Cancel - commentId: P:Terminal.Gui.Window.TitleEventArgs.Cancel - fullName: Terminal.Gui.Window.TitleEventArgs.Cancel - nameWithType: Window.TitleEventArgs.Cancel -- uid: Terminal.Gui.Window.TitleEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.Window.TitleEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.Window.TitleEventArgs.Cancel - nameWithType: Window.TitleEventArgs.Cancel -- uid: Terminal.Gui.Window.TitleEventArgs.NewTitle - name: NewTitle - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs_NewTitle - commentId: P:Terminal.Gui.Window.TitleEventArgs.NewTitle - fullName: Terminal.Gui.Window.TitleEventArgs.NewTitle - nameWithType: Window.TitleEventArgs.NewTitle -- uid: Terminal.Gui.Window.TitleEventArgs.NewTitle* - name: NewTitle - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs_NewTitle_ - commentId: Overload:Terminal.Gui.Window.TitleEventArgs.NewTitle - isSpec: "True" - fullName: Terminal.Gui.Window.TitleEventArgs.NewTitle - nameWithType: Window.TitleEventArgs.NewTitle -- uid: Terminal.Gui.Window.TitleEventArgs.OldTitle - name: OldTitle - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs_OldTitle - commentId: P:Terminal.Gui.Window.TitleEventArgs.OldTitle - fullName: Terminal.Gui.Window.TitleEventArgs.OldTitle - nameWithType: Window.TitleEventArgs.OldTitle -- uid: Terminal.Gui.Window.TitleEventArgs.OldTitle* - name: OldTitle - href: api/Terminal.Gui/Terminal.Gui.Window.TitleEventArgs.html#Terminal_Gui_Window_TitleEventArgs_OldTitle_ - commentId: Overload:Terminal.Gui.Window.TitleEventArgs.OldTitle - isSpec: "True" - fullName: Terminal.Gui.Window.TitleEventArgs.OldTitle - nameWithType: Window.TitleEventArgs.OldTitle -- uid: Terminal.Gui.Wizard - name: Wizard - href: api/Terminal.Gui/Terminal.Gui.Wizard.html - commentId: T:Terminal.Gui.Wizard - fullName: Terminal.Gui.Wizard - nameWithType: Wizard -- uid: Terminal.Gui.Wizard.#ctor - name: Wizard() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard__ctor - commentId: M:Terminal.Gui.Wizard.#ctor - fullName: Terminal.Gui.Wizard.Wizard() - nameWithType: Wizard.Wizard() -- uid: Terminal.Gui.Wizard.#ctor(NStack.ustring) - name: Wizard(ustring) - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.Wizard.#ctor(NStack.ustring) - fullName: Terminal.Gui.Wizard.Wizard(NStack.ustring) - nameWithType: Wizard.Wizard(ustring) -- uid: Terminal.Gui.Wizard.#ctor* - name: Wizard - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard__ctor_ - commentId: Overload:Terminal.Gui.Wizard.#ctor - isSpec: "True" - fullName: Terminal.Gui.Wizard.Wizard - nameWithType: Wizard.Wizard -- uid: Terminal.Gui.Wizard.AddStep(Terminal.Gui.Wizard.WizardStep) - name: AddStep(Wizard.WizardStep) - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_AddStep_Terminal_Gui_Wizard_WizardStep_ - commentId: M:Terminal.Gui.Wizard.AddStep(Terminal.Gui.Wizard.WizardStep) - fullName: Terminal.Gui.Wizard.AddStep(Terminal.Gui.Wizard.WizardStep) - nameWithType: Wizard.AddStep(Wizard.WizardStep) -- uid: Terminal.Gui.Wizard.AddStep* - name: AddStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_AddStep_ - commentId: Overload:Terminal.Gui.Wizard.AddStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.AddStep - nameWithType: Wizard.AddStep -- uid: Terminal.Gui.Wizard.BackButton - name: BackButton - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_BackButton - commentId: P:Terminal.Gui.Wizard.BackButton - fullName: Terminal.Gui.Wizard.BackButton - nameWithType: Wizard.BackButton -- uid: Terminal.Gui.Wizard.BackButton* - name: BackButton - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_BackButton_ - commentId: Overload:Terminal.Gui.Wizard.BackButton - isSpec: "True" - fullName: Terminal.Gui.Wizard.BackButton - nameWithType: Wizard.BackButton -- uid: Terminal.Gui.Wizard.Cancelled - name: Cancelled - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_Cancelled - commentId: E:Terminal.Gui.Wizard.Cancelled - fullName: Terminal.Gui.Wizard.Cancelled - nameWithType: Wizard.Cancelled -- uid: Terminal.Gui.Wizard.CurrentStep - name: CurrentStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_CurrentStep - commentId: P:Terminal.Gui.Wizard.CurrentStep - fullName: Terminal.Gui.Wizard.CurrentStep - nameWithType: Wizard.CurrentStep -- uid: Terminal.Gui.Wizard.CurrentStep* - name: CurrentStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_CurrentStep_ - commentId: Overload:Terminal.Gui.Wizard.CurrentStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.CurrentStep - nameWithType: Wizard.CurrentStep -- uid: Terminal.Gui.Wizard.Finished - name: Finished - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_Finished - commentId: E:Terminal.Gui.Wizard.Finished - fullName: Terminal.Gui.Wizard.Finished - nameWithType: Wizard.Finished -- uid: Terminal.Gui.Wizard.GetFirstStep - name: GetFirstStep() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetFirstStep - commentId: M:Terminal.Gui.Wizard.GetFirstStep - fullName: Terminal.Gui.Wizard.GetFirstStep() - nameWithType: Wizard.GetFirstStep() -- uid: Terminal.Gui.Wizard.GetFirstStep* - name: GetFirstStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetFirstStep_ - commentId: Overload:Terminal.Gui.Wizard.GetFirstStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.GetFirstStep - nameWithType: Wizard.GetFirstStep -- uid: Terminal.Gui.Wizard.GetLastStep - name: GetLastStep() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetLastStep - commentId: M:Terminal.Gui.Wizard.GetLastStep - fullName: Terminal.Gui.Wizard.GetLastStep() - nameWithType: Wizard.GetLastStep() -- uid: Terminal.Gui.Wizard.GetLastStep* - name: GetLastStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetLastStep_ - commentId: Overload:Terminal.Gui.Wizard.GetLastStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.GetLastStep - nameWithType: Wizard.GetLastStep -- uid: Terminal.Gui.Wizard.GetNextStep - name: GetNextStep() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetNextStep - commentId: M:Terminal.Gui.Wizard.GetNextStep - fullName: Terminal.Gui.Wizard.GetNextStep() - nameWithType: Wizard.GetNextStep() -- uid: Terminal.Gui.Wizard.GetNextStep* - name: GetNextStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetNextStep_ - commentId: Overload:Terminal.Gui.Wizard.GetNextStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.GetNextStep - nameWithType: Wizard.GetNextStep -- uid: Terminal.Gui.Wizard.GetPreviousStep - name: GetPreviousStep() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetPreviousStep - commentId: M:Terminal.Gui.Wizard.GetPreviousStep - fullName: Terminal.Gui.Wizard.GetPreviousStep() - nameWithType: Wizard.GetPreviousStep() -- uid: Terminal.Gui.Wizard.GetPreviousStep* - name: GetPreviousStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GetPreviousStep_ - commentId: Overload:Terminal.Gui.Wizard.GetPreviousStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.GetPreviousStep - nameWithType: Wizard.GetPreviousStep -- uid: Terminal.Gui.Wizard.GoBack - name: GoBack() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GoBack - commentId: M:Terminal.Gui.Wizard.GoBack - fullName: Terminal.Gui.Wizard.GoBack() - nameWithType: Wizard.GoBack() -- uid: Terminal.Gui.Wizard.GoBack* - name: GoBack - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GoBack_ - commentId: Overload:Terminal.Gui.Wizard.GoBack - isSpec: "True" - fullName: Terminal.Gui.Wizard.GoBack - nameWithType: Wizard.GoBack -- uid: Terminal.Gui.Wizard.GoNext - name: GoNext() - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GoNext - commentId: M:Terminal.Gui.Wizard.GoNext - fullName: Terminal.Gui.Wizard.GoNext() - nameWithType: Wizard.GoNext() -- uid: Terminal.Gui.Wizard.GoNext* - name: GoNext - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GoNext_ - commentId: Overload:Terminal.Gui.Wizard.GoNext - isSpec: "True" - fullName: Terminal.Gui.Wizard.GoNext - nameWithType: Wizard.GoNext -- uid: Terminal.Gui.Wizard.GoToStep(Terminal.Gui.Wizard.WizardStep) - name: GoToStep(Wizard.WizardStep) - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GoToStep_Terminal_Gui_Wizard_WizardStep_ - commentId: M:Terminal.Gui.Wizard.GoToStep(Terminal.Gui.Wizard.WizardStep) - fullName: Terminal.Gui.Wizard.GoToStep(Terminal.Gui.Wizard.WizardStep) - nameWithType: Wizard.GoToStep(Wizard.WizardStep) -- uid: Terminal.Gui.Wizard.GoToStep* - name: GoToStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_GoToStep_ - commentId: Overload:Terminal.Gui.Wizard.GoToStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.GoToStep - nameWithType: Wizard.GoToStep -- uid: Terminal.Gui.Wizard.Modal - name: Modal - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_Modal - commentId: P:Terminal.Gui.Wizard.Modal - fullName: Terminal.Gui.Wizard.Modal - nameWithType: Wizard.Modal -- uid: Terminal.Gui.Wizard.Modal* - name: Modal - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_Modal_ - commentId: Overload:Terminal.Gui.Wizard.Modal - isSpec: "True" - fullName: Terminal.Gui.Wizard.Modal - nameWithType: Wizard.Modal -- uid: Terminal.Gui.Wizard.MovingBack - name: MovingBack - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_MovingBack - commentId: E:Terminal.Gui.Wizard.MovingBack - fullName: Terminal.Gui.Wizard.MovingBack - nameWithType: Wizard.MovingBack -- uid: Terminal.Gui.Wizard.MovingNext - name: MovingNext - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_MovingNext - commentId: E:Terminal.Gui.Wizard.MovingNext - fullName: Terminal.Gui.Wizard.MovingNext - nameWithType: Wizard.MovingNext -- uid: Terminal.Gui.Wizard.NextFinishButton - name: NextFinishButton - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_NextFinishButton - commentId: P:Terminal.Gui.Wizard.NextFinishButton - fullName: Terminal.Gui.Wizard.NextFinishButton - nameWithType: Wizard.NextFinishButton -- uid: Terminal.Gui.Wizard.NextFinishButton* - name: NextFinishButton - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_NextFinishButton_ - commentId: Overload:Terminal.Gui.Wizard.NextFinishButton - isSpec: "True" - fullName: Terminal.Gui.Wizard.NextFinishButton - nameWithType: Wizard.NextFinishButton -- uid: Terminal.Gui.Wizard.OnStepChanged(Terminal.Gui.Wizard.WizardStep,Terminal.Gui.Wizard.WizardStep) - name: OnStepChanged(Wizard.WizardStep, Wizard.WizardStep) - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_OnStepChanged_Terminal_Gui_Wizard_WizardStep_Terminal_Gui_Wizard_WizardStep_ - commentId: M:Terminal.Gui.Wizard.OnStepChanged(Terminal.Gui.Wizard.WizardStep,Terminal.Gui.Wizard.WizardStep) - fullName: Terminal.Gui.Wizard.OnStepChanged(Terminal.Gui.Wizard.WizardStep, Terminal.Gui.Wizard.WizardStep) - nameWithType: Wizard.OnStepChanged(Wizard.WizardStep, Wizard.WizardStep) -- uid: Terminal.Gui.Wizard.OnStepChanged* - name: OnStepChanged - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_OnStepChanged_ - commentId: Overload:Terminal.Gui.Wizard.OnStepChanged - isSpec: "True" - fullName: Terminal.Gui.Wizard.OnStepChanged - nameWithType: Wizard.OnStepChanged -- uid: Terminal.Gui.Wizard.OnStepChanging(Terminal.Gui.Wizard.WizardStep,Terminal.Gui.Wizard.WizardStep) - name: OnStepChanging(Wizard.WizardStep, Wizard.WizardStep) - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_OnStepChanging_Terminal_Gui_Wizard_WizardStep_Terminal_Gui_Wizard_WizardStep_ - commentId: M:Terminal.Gui.Wizard.OnStepChanging(Terminal.Gui.Wizard.WizardStep,Terminal.Gui.Wizard.WizardStep) - fullName: Terminal.Gui.Wizard.OnStepChanging(Terminal.Gui.Wizard.WizardStep, Terminal.Gui.Wizard.WizardStep) - nameWithType: Wizard.OnStepChanging(Wizard.WizardStep, Wizard.WizardStep) -- uid: Terminal.Gui.Wizard.OnStepChanging* - name: OnStepChanging - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_OnStepChanging_ - commentId: Overload:Terminal.Gui.Wizard.OnStepChanging - isSpec: "True" - fullName: Terminal.Gui.Wizard.OnStepChanging - nameWithType: Wizard.OnStepChanging -- uid: Terminal.Gui.Wizard.ProcessKey(Terminal.Gui.KeyEvent) - name: ProcessKey(KeyEvent) - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_ProcessKey_Terminal_Gui_KeyEvent_ - commentId: M:Terminal.Gui.Wizard.ProcessKey(Terminal.Gui.KeyEvent) - fullName: Terminal.Gui.Wizard.ProcessKey(Terminal.Gui.KeyEvent) - nameWithType: Wizard.ProcessKey(KeyEvent) -- uid: Terminal.Gui.Wizard.ProcessKey* - name: ProcessKey - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_ProcessKey_ - commentId: Overload:Terminal.Gui.Wizard.ProcessKey - isSpec: "True" - fullName: Terminal.Gui.Wizard.ProcessKey - nameWithType: Wizard.ProcessKey -- uid: Terminal.Gui.Wizard.StepChanged - name: StepChanged - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_StepChanged - commentId: E:Terminal.Gui.Wizard.StepChanged - fullName: Terminal.Gui.Wizard.StepChanged - nameWithType: Wizard.StepChanged -- uid: Terminal.Gui.Wizard.StepChangeEventArgs - name: Wizard.StepChangeEventArgs - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html - commentId: T:Terminal.Gui.Wizard.StepChangeEventArgs - fullName: Terminal.Gui.Wizard.StepChangeEventArgs - nameWithType: Wizard.StepChangeEventArgs -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.#ctor(Terminal.Gui.Wizard.WizardStep,Terminal.Gui.Wizard.WizardStep) - name: StepChangeEventArgs(Wizard.WizardStep, Wizard.WizardStep) - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs__ctor_Terminal_Gui_Wizard_WizardStep_Terminal_Gui_Wizard_WizardStep_ - commentId: M:Terminal.Gui.Wizard.StepChangeEventArgs.#ctor(Terminal.Gui.Wizard.WizardStep,Terminal.Gui.Wizard.WizardStep) - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.StepChangeEventArgs(Terminal.Gui.Wizard.WizardStep, Terminal.Gui.Wizard.WizardStep) - nameWithType: Wizard.StepChangeEventArgs.StepChangeEventArgs(Wizard.WizardStep, Wizard.WizardStep) -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.#ctor* - name: StepChangeEventArgs - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs__ctor_ - commentId: Overload:Terminal.Gui.Wizard.StepChangeEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.StepChangeEventArgs - nameWithType: Wizard.StepChangeEventArgs.StepChangeEventArgs -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs_Cancel - commentId: P:Terminal.Gui.Wizard.StepChangeEventArgs.Cancel - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.Cancel - nameWithType: Wizard.StepChangeEventArgs.Cancel -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.Wizard.StepChangeEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.Cancel - nameWithType: Wizard.StepChangeEventArgs.Cancel -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.NewStep - name: NewStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs_NewStep - commentId: P:Terminal.Gui.Wizard.StepChangeEventArgs.NewStep - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.NewStep - nameWithType: Wizard.StepChangeEventArgs.NewStep -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.NewStep* - name: NewStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs_NewStep_ - commentId: Overload:Terminal.Gui.Wizard.StepChangeEventArgs.NewStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.NewStep - nameWithType: Wizard.StepChangeEventArgs.NewStep -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.OldStep - name: OldStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs_OldStep - commentId: P:Terminal.Gui.Wizard.StepChangeEventArgs.OldStep - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.OldStep - nameWithType: Wizard.StepChangeEventArgs.OldStep -- uid: Terminal.Gui.Wizard.StepChangeEventArgs.OldStep* - name: OldStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.StepChangeEventArgs.html#Terminal_Gui_Wizard_StepChangeEventArgs_OldStep_ - commentId: Overload:Terminal.Gui.Wizard.StepChangeEventArgs.OldStep - isSpec: "True" - fullName: Terminal.Gui.Wizard.StepChangeEventArgs.OldStep - nameWithType: Wizard.StepChangeEventArgs.OldStep -- uid: Terminal.Gui.Wizard.StepChanging - name: StepChanging - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_StepChanging - commentId: E:Terminal.Gui.Wizard.StepChanging - fullName: Terminal.Gui.Wizard.StepChanging - nameWithType: Wizard.StepChanging -- uid: Terminal.Gui.Wizard.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_Title - commentId: P:Terminal.Gui.Wizard.Title - fullName: Terminal.Gui.Wizard.Title - nameWithType: Wizard.Title -- uid: Terminal.Gui.Wizard.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.Wizard.html#Terminal_Gui_Wizard_Title_ - commentId: Overload:Terminal.Gui.Wizard.Title - isSpec: "True" - fullName: Terminal.Gui.Wizard.Title - nameWithType: Wizard.Title -- uid: Terminal.Gui.Wizard.WizardButtonEventArgs - name: Wizard.WizardButtonEventArgs - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html - commentId: T:Terminal.Gui.Wizard.WizardButtonEventArgs - fullName: Terminal.Gui.Wizard.WizardButtonEventArgs - nameWithType: Wizard.WizardButtonEventArgs -- uid: Terminal.Gui.Wizard.WizardButtonEventArgs.#ctor - name: WizardButtonEventArgs() - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html#Terminal_Gui_Wizard_WizardButtonEventArgs__ctor - commentId: M:Terminal.Gui.Wizard.WizardButtonEventArgs.#ctor - fullName: Terminal.Gui.Wizard.WizardButtonEventArgs.WizardButtonEventArgs() - nameWithType: Wizard.WizardButtonEventArgs.WizardButtonEventArgs() -- uid: Terminal.Gui.Wizard.WizardButtonEventArgs.#ctor* - name: WizardButtonEventArgs - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html#Terminal_Gui_Wizard_WizardButtonEventArgs__ctor_ - commentId: Overload:Terminal.Gui.Wizard.WizardButtonEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardButtonEventArgs.WizardButtonEventArgs - nameWithType: Wizard.WizardButtonEventArgs.WizardButtonEventArgs -- uid: Terminal.Gui.Wizard.WizardButtonEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html#Terminal_Gui_Wizard_WizardButtonEventArgs_Cancel - commentId: P:Terminal.Gui.Wizard.WizardButtonEventArgs.Cancel - fullName: Terminal.Gui.Wizard.WizardButtonEventArgs.Cancel - nameWithType: Wizard.WizardButtonEventArgs.Cancel -- uid: Terminal.Gui.Wizard.WizardButtonEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardButtonEventArgs.html#Terminal_Gui_Wizard_WizardButtonEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.Wizard.WizardButtonEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardButtonEventArgs.Cancel - nameWithType: Wizard.WizardButtonEventArgs.Cancel -- uid: Terminal.Gui.Wizard.WizardStep - name: Wizard.WizardStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html - commentId: T:Terminal.Gui.Wizard.WizardStep - fullName: Terminal.Gui.Wizard.WizardStep - nameWithType: Wizard.WizardStep -- uid: Terminal.Gui.Wizard.WizardStep.#ctor(NStack.ustring) - name: WizardStep(ustring) - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep__ctor_NStack_ustring_ - commentId: M:Terminal.Gui.Wizard.WizardStep.#ctor(NStack.ustring) - fullName: Terminal.Gui.Wizard.WizardStep.WizardStep(NStack.ustring) - nameWithType: Wizard.WizardStep.WizardStep(ustring) -- uid: Terminal.Gui.Wizard.WizardStep.#ctor* - name: WizardStep - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep__ctor_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.#ctor - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.WizardStep - nameWithType: Wizard.WizardStep.WizardStep -- uid: Terminal.Gui.Wizard.WizardStep.Add(Terminal.Gui.View) - name: Add(View) - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_Add_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Wizard.WizardStep.Add(Terminal.Gui.View) - fullName: Terminal.Gui.Wizard.WizardStep.Add(Terminal.Gui.View) - nameWithType: Wizard.WizardStep.Add(View) -- uid: Terminal.Gui.Wizard.WizardStep.Add* - name: Add - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_Add_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.Add - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.Add - nameWithType: Wizard.WizardStep.Add -- uid: Terminal.Gui.Wizard.WizardStep.BackButtonText - name: BackButtonText - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_BackButtonText - commentId: P:Terminal.Gui.Wizard.WizardStep.BackButtonText - fullName: Terminal.Gui.Wizard.WizardStep.BackButtonText - nameWithType: Wizard.WizardStep.BackButtonText -- uid: Terminal.Gui.Wizard.WizardStep.BackButtonText* - name: BackButtonText - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_BackButtonText_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.BackButtonText - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.BackButtonText - nameWithType: Wizard.WizardStep.BackButtonText -- uid: Terminal.Gui.Wizard.WizardStep.HelpText - name: HelpText - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_HelpText - commentId: P:Terminal.Gui.Wizard.WizardStep.HelpText - fullName: Terminal.Gui.Wizard.WizardStep.HelpText - nameWithType: Wizard.WizardStep.HelpText -- uid: Terminal.Gui.Wizard.WizardStep.HelpText* - name: HelpText - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_HelpText_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.HelpText - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.HelpText - nameWithType: Wizard.WizardStep.HelpText -- uid: Terminal.Gui.Wizard.WizardStep.NextButtonText - name: NextButtonText - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_NextButtonText - commentId: P:Terminal.Gui.Wizard.WizardStep.NextButtonText - fullName: Terminal.Gui.Wizard.WizardStep.NextButtonText - nameWithType: Wizard.WizardStep.NextButtonText -- uid: Terminal.Gui.Wizard.WizardStep.NextButtonText* - name: NextButtonText - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_NextButtonText_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.NextButtonText - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.NextButtonText - nameWithType: Wizard.WizardStep.NextButtonText -- uid: Terminal.Gui.Wizard.WizardStep.OnTitleChanged(NStack.ustring,NStack.ustring) - name: OnTitleChanged(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_OnTitleChanged_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.Wizard.WizardStep.OnTitleChanged(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.Wizard.WizardStep.OnTitleChanged(NStack.ustring, NStack.ustring) - nameWithType: Wizard.WizardStep.OnTitleChanged(ustring, ustring) -- uid: Terminal.Gui.Wizard.WizardStep.OnTitleChanged* - name: OnTitleChanged - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_OnTitleChanged_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.OnTitleChanged - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.OnTitleChanged - nameWithType: Wizard.WizardStep.OnTitleChanged -- uid: Terminal.Gui.Wizard.WizardStep.OnTitleChanging(NStack.ustring,NStack.ustring) - name: OnTitleChanging(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_OnTitleChanging_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.Wizard.WizardStep.OnTitleChanging(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.Wizard.WizardStep.OnTitleChanging(NStack.ustring, NStack.ustring) - nameWithType: Wizard.WizardStep.OnTitleChanging(ustring, ustring) -- uid: Terminal.Gui.Wizard.WizardStep.OnTitleChanging* - name: OnTitleChanging - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_OnTitleChanging_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.OnTitleChanging - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.OnTitleChanging - nameWithType: Wizard.WizardStep.OnTitleChanging -- uid: Terminal.Gui.Wizard.WizardStep.Remove(Terminal.Gui.View) - name: Remove(View) - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_Remove_Terminal_Gui_View_ - commentId: M:Terminal.Gui.Wizard.WizardStep.Remove(Terminal.Gui.View) - fullName: Terminal.Gui.Wizard.WizardStep.Remove(Terminal.Gui.View) - nameWithType: Wizard.WizardStep.Remove(View) -- uid: Terminal.Gui.Wizard.WizardStep.Remove* - name: Remove - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_Remove_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.Remove - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.Remove - nameWithType: Wizard.WizardStep.Remove -- uid: Terminal.Gui.Wizard.WizardStep.RemoveAll - name: RemoveAll() - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_RemoveAll - commentId: M:Terminal.Gui.Wizard.WizardStep.RemoveAll - fullName: Terminal.Gui.Wizard.WizardStep.RemoveAll() - nameWithType: Wizard.WizardStep.RemoveAll() -- uid: Terminal.Gui.Wizard.WizardStep.RemoveAll* - name: RemoveAll - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_RemoveAll_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.RemoveAll - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.RemoveAll - nameWithType: Wizard.WizardStep.RemoveAll -- uid: Terminal.Gui.Wizard.WizardStep.Title - name: Title - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_Title - commentId: P:Terminal.Gui.Wizard.WizardStep.Title - fullName: Terminal.Gui.Wizard.WizardStep.Title - nameWithType: Wizard.WizardStep.Title -- uid: Terminal.Gui.Wizard.WizardStep.Title* - name: Title - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_Title_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.Title - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.Title - nameWithType: Wizard.WizardStep.Title -- uid: Terminal.Gui.Wizard.WizardStep.TitleChanged - name: TitleChanged - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_TitleChanged - commentId: E:Terminal.Gui.Wizard.WizardStep.TitleChanged - fullName: Terminal.Gui.Wizard.WizardStep.TitleChanged - nameWithType: Wizard.WizardStep.TitleChanged -- uid: Terminal.Gui.Wizard.WizardStep.TitleChanging - name: TitleChanging - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.html#Terminal_Gui_Wizard_WizardStep_TitleChanging - commentId: E:Terminal.Gui.Wizard.WizardStep.TitleChanging - fullName: Terminal.Gui.Wizard.WizardStep.TitleChanging - nameWithType: Wizard.WizardStep.TitleChanging -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs - name: Wizard.WizardStep.TitleEventArgs - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html - commentId: T:Terminal.Gui.Wizard.WizardStep.TitleEventArgs - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs - nameWithType: Wizard.WizardStep.TitleEventArgs -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.#ctor(NStack.ustring,NStack.ustring) - name: TitleEventArgs(ustring, ustring) - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs__ctor_NStack_ustring_NStack_ustring_ - commentId: M:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.#ctor(NStack.ustring,NStack.ustring) - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.TitleEventArgs(NStack.ustring, NStack.ustring) - nameWithType: Wizard.WizardStep.TitleEventArgs.TitleEventArgs(ustring, ustring) -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.#ctor* - name: TitleEventArgs - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs__ctor_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.#ctor - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.TitleEventArgs - nameWithType: Wizard.WizardStep.TitleEventArgs.TitleEventArgs -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.Cancel - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs_Cancel - commentId: P:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.Cancel - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.Cancel - nameWithType: Wizard.WizardStep.TitleEventArgs.Cancel -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.Cancel* - name: Cancel - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs_Cancel_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.Cancel - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.Cancel - nameWithType: Wizard.WizardStep.TitleEventArgs.Cancel -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.NewTitle - name: NewTitle - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs_NewTitle - commentId: P:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.NewTitle - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.NewTitle - nameWithType: Wizard.WizardStep.TitleEventArgs.NewTitle -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.NewTitle* - name: NewTitle - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs_NewTitle_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.NewTitle - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.NewTitle - nameWithType: Wizard.WizardStep.TitleEventArgs.NewTitle -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.OldTitle - name: OldTitle - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs_OldTitle - commentId: P:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.OldTitle - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.OldTitle - nameWithType: Wizard.WizardStep.TitleEventArgs.OldTitle -- uid: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.OldTitle* - name: OldTitle - href: api/Terminal.Gui/Terminal.Gui.Wizard.WizardStep.TitleEventArgs.html#Terminal_Gui_Wizard_WizardStep_TitleEventArgs_OldTitle_ - commentId: Overload:Terminal.Gui.Wizard.WizardStep.TitleEventArgs.OldTitle - isSpec: "True" - fullName: Terminal.Gui.Wizard.WizardStep.TitleEventArgs.OldTitle - nameWithType: Wizard.WizardStep.TitleEventArgs.OldTitle -- uid: UICatalog - name: UICatalog - href: api/UICatalog/UICatalog.html - commentId: N:UICatalog - fullName: UICatalog - nameWithType: UICatalog -- uid: UICatalog.NumberToWords - name: NumberToWords - href: api/UICatalog/UICatalog.NumberToWords.html - commentId: T:UICatalog.NumberToWords - fullName: UICatalog.NumberToWords - nameWithType: NumberToWords -- uid: UICatalog.NumberToWords.Convert(System.Int64) - name: Convert(Int64) - href: api/UICatalog/UICatalog.NumberToWords.html#UICatalog_NumberToWords_Convert_System_Int64_ - commentId: M:UICatalog.NumberToWords.Convert(System.Int64) - fullName: UICatalog.NumberToWords.Convert(System.Int64) - nameWithType: NumberToWords.Convert(Int64) -- uid: UICatalog.NumberToWords.Convert* - name: Convert - href: api/UICatalog/UICatalog.NumberToWords.html#UICatalog_NumberToWords_Convert_ - commentId: Overload:UICatalog.NumberToWords.Convert - isSpec: "True" - fullName: UICatalog.NumberToWords.Convert - nameWithType: NumberToWords.Convert -- uid: UICatalog.NumberToWords.ConvertAmount(System.Double) - name: ConvertAmount(Double) - href: api/UICatalog/UICatalog.NumberToWords.html#UICatalog_NumberToWords_ConvertAmount_System_Double_ - commentId: M:UICatalog.NumberToWords.ConvertAmount(System.Double) - fullName: UICatalog.NumberToWords.ConvertAmount(System.Double) - nameWithType: NumberToWords.ConvertAmount(Double) -- uid: UICatalog.NumberToWords.ConvertAmount* - name: ConvertAmount - href: api/UICatalog/UICatalog.NumberToWords.html#UICatalog_NumberToWords_ConvertAmount_ - commentId: Overload:UICatalog.NumberToWords.ConvertAmount - isSpec: "True" - fullName: UICatalog.NumberToWords.ConvertAmount - nameWithType: NumberToWords.ConvertAmount -- uid: UICatalog.Scenario - name: Scenario - href: api/UICatalog/UICatalog.Scenario.html - commentId: T:UICatalog.Scenario - fullName: UICatalog.Scenario - nameWithType: Scenario -- uid: UICatalog.Scenario.Dispose - name: Dispose() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Dispose - commentId: M:UICatalog.Scenario.Dispose - fullName: UICatalog.Scenario.Dispose() - nameWithType: Scenario.Dispose() -- uid: UICatalog.Scenario.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Dispose_System_Boolean_ - commentId: M:UICatalog.Scenario.Dispose(System.Boolean) - fullName: UICatalog.Scenario.Dispose(System.Boolean) - nameWithType: Scenario.Dispose(Boolean) -- uid: UICatalog.Scenario.Dispose* - name: Dispose - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Dispose_ - commentId: Overload:UICatalog.Scenario.Dispose - isSpec: "True" - fullName: UICatalog.Scenario.Dispose - nameWithType: Scenario.Dispose -- uid: UICatalog.Scenario.GetCategories - name: GetCategories() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetCategories - commentId: M:UICatalog.Scenario.GetCategories - fullName: UICatalog.Scenario.GetCategories() - nameWithType: Scenario.GetCategories() -- uid: UICatalog.Scenario.GetCategories* - name: GetCategories - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetCategories_ - commentId: Overload:UICatalog.Scenario.GetCategories - isSpec: "True" - fullName: UICatalog.Scenario.GetCategories - nameWithType: Scenario.GetCategories -- uid: UICatalog.Scenario.GetDerivedClasses* - name: GetDerivedClasses - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetDerivedClasses_ - commentId: Overload:UICatalog.Scenario.GetDerivedClasses - isSpec: "True" - fullName: UICatalog.Scenario.GetDerivedClasses - nameWithType: Scenario.GetDerivedClasses -- uid: UICatalog.Scenario.GetDerivedClasses``1 - name: GetDerivedClasses() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetDerivedClasses__1 - commentId: M:UICatalog.Scenario.GetDerivedClasses``1 - name.vb: GetDerivedClasses(Of T)() - fullName: UICatalog.Scenario.GetDerivedClasses() - fullName.vb: UICatalog.Scenario.GetDerivedClasses(Of T)() - nameWithType: Scenario.GetDerivedClasses() - nameWithType.vb: Scenario.GetDerivedClasses(Of T)() -- uid: UICatalog.Scenario.GetDescription - name: GetDescription() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetDescription - commentId: M:UICatalog.Scenario.GetDescription - fullName: UICatalog.Scenario.GetDescription() - nameWithType: Scenario.GetDescription() -- uid: UICatalog.Scenario.GetDescription* - name: GetDescription - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetDescription_ - commentId: Overload:UICatalog.Scenario.GetDescription - isSpec: "True" - fullName: UICatalog.Scenario.GetDescription - nameWithType: Scenario.GetDescription -- uid: UICatalog.Scenario.GetName - name: GetName() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetName - commentId: M:UICatalog.Scenario.GetName - fullName: UICatalog.Scenario.GetName() - nameWithType: Scenario.GetName() -- uid: UICatalog.Scenario.GetName* - name: GetName - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_GetName_ - commentId: Overload:UICatalog.Scenario.GetName - isSpec: "True" - fullName: UICatalog.Scenario.GetName - nameWithType: Scenario.GetName -- uid: UICatalog.Scenario.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenario.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenario.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: Scenario.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenario.Init* - name: Init - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Init_ - commentId: Overload:UICatalog.Scenario.Init - isSpec: "True" - fullName: UICatalog.Scenario.Init - nameWithType: Scenario.Init -- uid: UICatalog.Scenario.RequestStop - name: RequestStop() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_RequestStop - commentId: M:UICatalog.Scenario.RequestStop - fullName: UICatalog.Scenario.RequestStop() - nameWithType: Scenario.RequestStop() -- uid: UICatalog.Scenario.RequestStop* - name: RequestStop - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_RequestStop_ - commentId: Overload:UICatalog.Scenario.RequestStop - isSpec: "True" - fullName: UICatalog.Scenario.RequestStop - nameWithType: Scenario.RequestStop -- uid: UICatalog.Scenario.Run - name: Run() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Run - commentId: M:UICatalog.Scenario.Run - fullName: UICatalog.Scenario.Run() - nameWithType: Scenario.Run() -- uid: UICatalog.Scenario.Run* - name: Run - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Run_ - commentId: Overload:UICatalog.Scenario.Run - isSpec: "True" - fullName: UICatalog.Scenario.Run - nameWithType: Scenario.Run -- uid: UICatalog.Scenario.ScenarioCategory - name: Scenario.ScenarioCategory - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html - commentId: T:UICatalog.Scenario.ScenarioCategory - fullName: UICatalog.Scenario.ScenarioCategory - nameWithType: Scenario.ScenarioCategory -- uid: UICatalog.Scenario.ScenarioCategory.#ctor(System.String) - name: ScenarioCategory(String) - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory__ctor_System_String_ - commentId: M:UICatalog.Scenario.ScenarioCategory.#ctor(System.String) - fullName: UICatalog.Scenario.ScenarioCategory.ScenarioCategory(System.String) - nameWithType: Scenario.ScenarioCategory.ScenarioCategory(String) -- uid: UICatalog.Scenario.ScenarioCategory.#ctor* - name: ScenarioCategory - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory__ctor_ - commentId: Overload:UICatalog.Scenario.ScenarioCategory.#ctor - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioCategory.ScenarioCategory - nameWithType: Scenario.ScenarioCategory.ScenarioCategory -- uid: UICatalog.Scenario.ScenarioCategory.GetCategories(System.Type) - name: GetCategories(Type) - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory_GetCategories_System_Type_ - commentId: M:UICatalog.Scenario.ScenarioCategory.GetCategories(System.Type) - fullName: UICatalog.Scenario.ScenarioCategory.GetCategories(System.Type) - nameWithType: Scenario.ScenarioCategory.GetCategories(Type) -- uid: UICatalog.Scenario.ScenarioCategory.GetCategories* - name: GetCategories - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory_GetCategories_ - commentId: Overload:UICatalog.Scenario.ScenarioCategory.GetCategories - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioCategory.GetCategories - nameWithType: Scenario.ScenarioCategory.GetCategories -- uid: UICatalog.Scenario.ScenarioCategory.GetName(System.Type) - name: GetName(Type) - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory_GetName_System_Type_ - commentId: M:UICatalog.Scenario.ScenarioCategory.GetName(System.Type) - fullName: UICatalog.Scenario.ScenarioCategory.GetName(System.Type) - nameWithType: Scenario.ScenarioCategory.GetName(Type) -- uid: UICatalog.Scenario.ScenarioCategory.GetName* - name: GetName - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory_GetName_ - commentId: Overload:UICatalog.Scenario.ScenarioCategory.GetName - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioCategory.GetName - nameWithType: Scenario.ScenarioCategory.GetName -- uid: UICatalog.Scenario.ScenarioCategory.Name - name: Name - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory_Name - commentId: P:UICatalog.Scenario.ScenarioCategory.Name - fullName: UICatalog.Scenario.ScenarioCategory.Name - nameWithType: Scenario.ScenarioCategory.Name -- uid: UICatalog.Scenario.ScenarioCategory.Name* - name: Name - href: api/UICatalog/UICatalog.Scenario.ScenarioCategory.html#UICatalog_Scenario_ScenarioCategory_Name_ - commentId: Overload:UICatalog.Scenario.ScenarioCategory.Name - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioCategory.Name - nameWithType: Scenario.ScenarioCategory.Name -- uid: UICatalog.Scenario.ScenarioMetadata - name: Scenario.ScenarioMetadata - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html - commentId: T:UICatalog.Scenario.ScenarioMetadata - fullName: UICatalog.Scenario.ScenarioMetadata - nameWithType: Scenario.ScenarioMetadata -- uid: UICatalog.Scenario.ScenarioMetadata.#ctor(System.String,System.String) - name: ScenarioMetadata(String, String) - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata__ctor_System_String_System_String_ - commentId: M:UICatalog.Scenario.ScenarioMetadata.#ctor(System.String,System.String) - fullName: UICatalog.Scenario.ScenarioMetadata.ScenarioMetadata(System.String, System.String) - nameWithType: Scenario.ScenarioMetadata.ScenarioMetadata(String, String) -- uid: UICatalog.Scenario.ScenarioMetadata.#ctor* - name: ScenarioMetadata - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata__ctor_ - commentId: Overload:UICatalog.Scenario.ScenarioMetadata.#ctor - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioMetadata.ScenarioMetadata - nameWithType: Scenario.ScenarioMetadata.ScenarioMetadata -- uid: UICatalog.Scenario.ScenarioMetadata.Description - name: Description - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_Description - commentId: P:UICatalog.Scenario.ScenarioMetadata.Description - fullName: UICatalog.Scenario.ScenarioMetadata.Description - nameWithType: Scenario.ScenarioMetadata.Description -- uid: UICatalog.Scenario.ScenarioMetadata.Description* - name: Description - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_Description_ - commentId: Overload:UICatalog.Scenario.ScenarioMetadata.Description - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioMetadata.Description - nameWithType: Scenario.ScenarioMetadata.Description -- uid: UICatalog.Scenario.ScenarioMetadata.GetDescription(System.Type) - name: GetDescription(Type) - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_GetDescription_System_Type_ - commentId: M:UICatalog.Scenario.ScenarioMetadata.GetDescription(System.Type) - fullName: UICatalog.Scenario.ScenarioMetadata.GetDescription(System.Type) - nameWithType: Scenario.ScenarioMetadata.GetDescription(Type) -- uid: UICatalog.Scenario.ScenarioMetadata.GetDescription* - name: GetDescription - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_GetDescription_ - commentId: Overload:UICatalog.Scenario.ScenarioMetadata.GetDescription - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioMetadata.GetDescription - nameWithType: Scenario.ScenarioMetadata.GetDescription -- uid: UICatalog.Scenario.ScenarioMetadata.GetName(System.Type) - name: GetName(Type) - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_GetName_System_Type_ - commentId: M:UICatalog.Scenario.ScenarioMetadata.GetName(System.Type) - fullName: UICatalog.Scenario.ScenarioMetadata.GetName(System.Type) - nameWithType: Scenario.ScenarioMetadata.GetName(Type) -- uid: UICatalog.Scenario.ScenarioMetadata.GetName* - name: GetName - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_GetName_ - commentId: Overload:UICatalog.Scenario.ScenarioMetadata.GetName - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioMetadata.GetName - nameWithType: Scenario.ScenarioMetadata.GetName -- uid: UICatalog.Scenario.ScenarioMetadata.Name - name: Name - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_Name - commentId: P:UICatalog.Scenario.ScenarioMetadata.Name - fullName: UICatalog.Scenario.ScenarioMetadata.Name - nameWithType: Scenario.ScenarioMetadata.Name -- uid: UICatalog.Scenario.ScenarioMetadata.Name* - name: Name - href: api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html#UICatalog_Scenario_ScenarioMetadata_Name_ - commentId: Overload:UICatalog.Scenario.ScenarioMetadata.Name - isSpec: "True" - fullName: UICatalog.Scenario.ScenarioMetadata.Name - nameWithType: Scenario.ScenarioMetadata.Name -- uid: UICatalog.Scenario.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Setup - commentId: M:UICatalog.Scenario.Setup - fullName: UICatalog.Scenario.Setup() - nameWithType: Scenario.Setup() -- uid: UICatalog.Scenario.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Setup_ - commentId: Overload:UICatalog.Scenario.Setup - isSpec: "True" - fullName: UICatalog.Scenario.Setup - nameWithType: Scenario.Setup -- uid: UICatalog.Scenario.Top - name: Top - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Top - commentId: P:UICatalog.Scenario.Top - fullName: UICatalog.Scenario.Top - nameWithType: Scenario.Top -- uid: UICatalog.Scenario.Top* - name: Top - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Top_ - commentId: Overload:UICatalog.Scenario.Top - isSpec: "True" - fullName: UICatalog.Scenario.Top - nameWithType: Scenario.Top -- uid: UICatalog.Scenario.ToString - name: ToString() - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_ToString - commentId: M:UICatalog.Scenario.ToString - fullName: UICatalog.Scenario.ToString() - nameWithType: Scenario.ToString() -- uid: UICatalog.Scenario.ToString* - name: ToString - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_ToString_ - commentId: Overload:UICatalog.Scenario.ToString - isSpec: "True" - fullName: UICatalog.Scenario.ToString - nameWithType: Scenario.ToString -- uid: UICatalog.Scenario.Win - name: Win - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Win - commentId: P:UICatalog.Scenario.Win - fullName: UICatalog.Scenario.Win - nameWithType: Scenario.Win -- uid: UICatalog.Scenario.Win* - name: Win - href: api/UICatalog/UICatalog.Scenario.html#UICatalog_Scenario_Win_ - commentId: Overload:UICatalog.Scenario.Win - isSpec: "True" - fullName: UICatalog.Scenario.Win - nameWithType: Scenario.Win -- uid: UICatalog.Scenarios - name: UICatalog.Scenarios - href: api/UICatalog/UICatalog.Scenarios.html - commentId: N:UICatalog.Scenarios - fullName: UICatalog.Scenarios - nameWithType: UICatalog.Scenarios -- uid: UICatalog.Scenarios.AllViewsTester - name: AllViewsTester - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html - commentId: T:UICatalog.Scenarios.AllViewsTester - fullName: UICatalog.Scenarios.AllViewsTester - nameWithType: AllViewsTester -- uid: UICatalog.Scenarios.AllViewsTester.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html#UICatalog_Scenarios_AllViewsTester_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.AllViewsTester.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.AllViewsTester.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: AllViewsTester.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.AllViewsTester.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html#UICatalog_Scenarios_AllViewsTester_Init_ - commentId: Overload:UICatalog.Scenarios.AllViewsTester.Init - isSpec: "True" - fullName: UICatalog.Scenarios.AllViewsTester.Init - nameWithType: AllViewsTester.Init -- uid: UICatalog.Scenarios.AllViewsTester.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html#UICatalog_Scenarios_AllViewsTester_Run - commentId: M:UICatalog.Scenarios.AllViewsTester.Run - fullName: UICatalog.Scenarios.AllViewsTester.Run() - nameWithType: AllViewsTester.Run() -- uid: UICatalog.Scenarios.AllViewsTester.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html#UICatalog_Scenarios_AllViewsTester_Run_ - commentId: Overload:UICatalog.Scenarios.AllViewsTester.Run - isSpec: "True" - fullName: UICatalog.Scenarios.AllViewsTester.Run - nameWithType: AllViewsTester.Run -- uid: UICatalog.Scenarios.AllViewsTester.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html#UICatalog_Scenarios_AllViewsTester_Setup - commentId: M:UICatalog.Scenarios.AllViewsTester.Setup - fullName: UICatalog.Scenarios.AllViewsTester.Setup() - nameWithType: AllViewsTester.Setup() -- uid: UICatalog.Scenarios.AllViewsTester.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.AllViewsTester.html#UICatalog_Scenarios_AllViewsTester_Setup_ - commentId: Overload:UICatalog.Scenarios.AllViewsTester.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.AllViewsTester.Setup - nameWithType: AllViewsTester.Setup -- uid: UICatalog.Scenarios.AutoSizeAndDirectionText - name: AutoSizeAndDirectionText - href: api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html - commentId: T:UICatalog.Scenarios.AutoSizeAndDirectionText - fullName: UICatalog.Scenarios.AutoSizeAndDirectionText - nameWithType: AutoSizeAndDirectionText -- uid: UICatalog.Scenarios.AutoSizeAndDirectionText.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html#UICatalog_Scenarios_AutoSizeAndDirectionText_Setup - commentId: M:UICatalog.Scenarios.AutoSizeAndDirectionText.Setup - fullName: UICatalog.Scenarios.AutoSizeAndDirectionText.Setup() - nameWithType: AutoSizeAndDirectionText.Setup() -- uid: UICatalog.Scenarios.AutoSizeAndDirectionText.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html#UICatalog_Scenarios_AutoSizeAndDirectionText_Setup_ - commentId: Overload:UICatalog.Scenarios.AutoSizeAndDirectionText.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.AutoSizeAndDirectionText.Setup - nameWithType: AutoSizeAndDirectionText.Setup -- uid: UICatalog.Scenarios.BackgroundWorkerCollection - name: BackgroundWorkerCollection - href: api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html - commentId: T:UICatalog.Scenarios.BackgroundWorkerCollection - fullName: UICatalog.Scenarios.BackgroundWorkerCollection - nameWithType: BackgroundWorkerCollection -- uid: UICatalog.Scenarios.BackgroundWorkerCollection.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html#UICatalog_Scenarios_BackgroundWorkerCollection_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.BackgroundWorkerCollection.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.BackgroundWorkerCollection.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: BackgroundWorkerCollection.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.BackgroundWorkerCollection.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html#UICatalog_Scenarios_BackgroundWorkerCollection_Init_ - commentId: Overload:UICatalog.Scenarios.BackgroundWorkerCollection.Init - isSpec: "True" - fullName: UICatalog.Scenarios.BackgroundWorkerCollection.Init - nameWithType: BackgroundWorkerCollection.Init -- uid: UICatalog.Scenarios.BackgroundWorkerCollection.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html#UICatalog_Scenarios_BackgroundWorkerCollection_Run - commentId: M:UICatalog.Scenarios.BackgroundWorkerCollection.Run - fullName: UICatalog.Scenarios.BackgroundWorkerCollection.Run() - nameWithType: BackgroundWorkerCollection.Run() -- uid: UICatalog.Scenarios.BackgroundWorkerCollection.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html#UICatalog_Scenarios_BackgroundWorkerCollection_Run_ - commentId: Overload:UICatalog.Scenarios.BackgroundWorkerCollection.Run - isSpec: "True" - fullName: UICatalog.Scenarios.BackgroundWorkerCollection.Run - nameWithType: BackgroundWorkerCollection.Run -- uid: UICatalog.Scenarios.BasicColors - name: BasicColors - href: api/UICatalog/UICatalog.Scenarios.BasicColors.html - commentId: T:UICatalog.Scenarios.BasicColors - fullName: UICatalog.Scenarios.BasicColors - nameWithType: BasicColors -- uid: UICatalog.Scenarios.BasicColors.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.BasicColors.html#UICatalog_Scenarios_BasicColors_Setup - commentId: M:UICatalog.Scenarios.BasicColors.Setup - fullName: UICatalog.Scenarios.BasicColors.Setup() - nameWithType: BasicColors.Setup() -- uid: UICatalog.Scenarios.BasicColors.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.BasicColors.html#UICatalog_Scenarios_BasicColors_Setup_ - commentId: Overload:UICatalog.Scenarios.BasicColors.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.BasicColors.Setup - nameWithType: BasicColors.Setup -- uid: UICatalog.Scenarios.Borders - name: Borders - href: api/UICatalog/UICatalog.Scenarios.Borders.html - commentId: T:UICatalog.Scenarios.Borders - fullName: UICatalog.Scenarios.Borders - nameWithType: Borders -- uid: UICatalog.Scenarios.Borders.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Borders.html#UICatalog_Scenarios_Borders_Setup - commentId: M:UICatalog.Scenarios.Borders.Setup - fullName: UICatalog.Scenarios.Borders.Setup() - nameWithType: Borders.Setup() -- uid: UICatalog.Scenarios.Borders.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Borders.html#UICatalog_Scenarios_Borders_Setup_ - commentId: Overload:UICatalog.Scenarios.Borders.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Borders.Setup - nameWithType: Borders.Setup -- uid: UICatalog.Scenarios.BordersComparisons - name: BordersComparisons - href: api/UICatalog/UICatalog.Scenarios.BordersComparisons.html - commentId: T:UICatalog.Scenarios.BordersComparisons - fullName: UICatalog.Scenarios.BordersComparisons - nameWithType: BordersComparisons -- uid: UICatalog.Scenarios.BordersComparisons.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.BordersComparisons.html#UICatalog_Scenarios_BordersComparisons_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.BordersComparisons.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.BordersComparisons.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: BordersComparisons.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.BordersComparisons.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.BordersComparisons.html#UICatalog_Scenarios_BordersComparisons_Init_ - commentId: Overload:UICatalog.Scenarios.BordersComparisons.Init - isSpec: "True" - fullName: UICatalog.Scenarios.BordersComparisons.Init - nameWithType: BordersComparisons.Init -- uid: UICatalog.Scenarios.BordersComparisons.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.BordersComparisons.html#UICatalog_Scenarios_BordersComparisons_Run - commentId: M:UICatalog.Scenarios.BordersComparisons.Run - fullName: UICatalog.Scenarios.BordersComparisons.Run() - nameWithType: BordersComparisons.Run() -- uid: UICatalog.Scenarios.BordersComparisons.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.BordersComparisons.html#UICatalog_Scenarios_BordersComparisons_Run_ - commentId: Overload:UICatalog.Scenarios.BordersComparisons.Run - isSpec: "True" - fullName: UICatalog.Scenarios.BordersComparisons.Run - nameWithType: BordersComparisons.Run -- uid: UICatalog.Scenarios.BordersOnFrameView - name: BordersOnFrameView - href: api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html - commentId: T:UICatalog.Scenarios.BordersOnFrameView - fullName: UICatalog.Scenarios.BordersOnFrameView - nameWithType: BordersOnFrameView -- uid: UICatalog.Scenarios.BordersOnFrameView.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html#UICatalog_Scenarios_BordersOnFrameView_Setup - commentId: M:UICatalog.Scenarios.BordersOnFrameView.Setup - fullName: UICatalog.Scenarios.BordersOnFrameView.Setup() - nameWithType: BordersOnFrameView.Setup() -- uid: UICatalog.Scenarios.BordersOnFrameView.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html#UICatalog_Scenarios_BordersOnFrameView_Setup_ - commentId: Overload:UICatalog.Scenarios.BordersOnFrameView.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.BordersOnFrameView.Setup - nameWithType: BordersOnFrameView.Setup -- uid: UICatalog.Scenarios.BordersOnToplevel - name: BordersOnToplevel - href: api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html - commentId: T:UICatalog.Scenarios.BordersOnToplevel - fullName: UICatalog.Scenarios.BordersOnToplevel - nameWithType: BordersOnToplevel -- uid: UICatalog.Scenarios.BordersOnToplevel.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html#UICatalog_Scenarios_BordersOnToplevel_Setup - commentId: M:UICatalog.Scenarios.BordersOnToplevel.Setup - fullName: UICatalog.Scenarios.BordersOnToplevel.Setup() - nameWithType: BordersOnToplevel.Setup() -- uid: UICatalog.Scenarios.BordersOnToplevel.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html#UICatalog_Scenarios_BordersOnToplevel_Setup_ - commentId: Overload:UICatalog.Scenarios.BordersOnToplevel.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.BordersOnToplevel.Setup - nameWithType: BordersOnToplevel.Setup -- uid: UICatalog.Scenarios.BordersOnWindow - name: BordersOnWindow - href: api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html - commentId: T:UICatalog.Scenarios.BordersOnWindow - fullName: UICatalog.Scenarios.BordersOnWindow - nameWithType: BordersOnWindow -- uid: UICatalog.Scenarios.BordersOnWindow.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html#UICatalog_Scenarios_BordersOnWindow_Setup - commentId: M:UICatalog.Scenarios.BordersOnWindow.Setup - fullName: UICatalog.Scenarios.BordersOnWindow.Setup() - nameWithType: BordersOnWindow.Setup() -- uid: UICatalog.Scenarios.BordersOnWindow.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html#UICatalog_Scenarios_BordersOnWindow_Setup_ - commentId: Overload:UICatalog.Scenarios.BordersOnWindow.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.BordersOnWindow.Setup - nameWithType: BordersOnWindow.Setup -- uid: UICatalog.Scenarios.Buttons - name: Buttons - href: api/UICatalog/UICatalog.Scenarios.Buttons.html - commentId: T:UICatalog.Scenarios.Buttons - fullName: UICatalog.Scenarios.Buttons - nameWithType: Buttons -- uid: UICatalog.Scenarios.Buttons.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Buttons.html#UICatalog_Scenarios_Buttons_Setup - commentId: M:UICatalog.Scenarios.Buttons.Setup - fullName: UICatalog.Scenarios.Buttons.Setup() - nameWithType: Buttons.Setup() -- uid: UICatalog.Scenarios.Buttons.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Buttons.html#UICatalog_Scenarios_Buttons_Setup_ - commentId: Overload:UICatalog.Scenarios.Buttons.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Buttons.Setup - nameWithType: Buttons.Setup -- uid: UICatalog.Scenarios.CharacterMap - name: CharacterMap - href: api/UICatalog/UICatalog.Scenarios.CharacterMap.html - commentId: T:UICatalog.Scenarios.CharacterMap - fullName: UICatalog.Scenarios.CharacterMap - nameWithType: CharacterMap -- uid: UICatalog.Scenarios.CharacterMap.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.CharacterMap.html#UICatalog_Scenarios_CharacterMap_Run - commentId: M:UICatalog.Scenarios.CharacterMap.Run - fullName: UICatalog.Scenarios.CharacterMap.Run() - nameWithType: CharacterMap.Run() -- uid: UICatalog.Scenarios.CharacterMap.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.CharacterMap.html#UICatalog_Scenarios_CharacterMap_Run_ - commentId: Overload:UICatalog.Scenarios.CharacterMap.Run - isSpec: "True" - fullName: UICatalog.Scenarios.CharacterMap.Run - nameWithType: CharacterMap.Run -- uid: UICatalog.Scenarios.CharacterMap.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.CharacterMap.html#UICatalog_Scenarios_CharacterMap_Setup - commentId: M:UICatalog.Scenarios.CharacterMap.Setup - fullName: UICatalog.Scenarios.CharacterMap.Setup() - nameWithType: CharacterMap.Setup() -- uid: UICatalog.Scenarios.CharacterMap.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.CharacterMap.html#UICatalog_Scenarios_CharacterMap_Setup_ - commentId: Overload:UICatalog.Scenarios.CharacterMap.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.CharacterMap.Setup - nameWithType: CharacterMap.Setup -- uid: UICatalog.Scenarios.ClassExplorer - name: ClassExplorer - href: api/UICatalog/UICatalog.Scenarios.ClassExplorer.html - commentId: T:UICatalog.Scenarios.ClassExplorer - fullName: UICatalog.Scenarios.ClassExplorer - nameWithType: ClassExplorer -- uid: UICatalog.Scenarios.ClassExplorer.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ClassExplorer.html#UICatalog_Scenarios_ClassExplorer_Setup - commentId: M:UICatalog.Scenarios.ClassExplorer.Setup - fullName: UICatalog.Scenarios.ClassExplorer.Setup() - nameWithType: ClassExplorer.Setup() -- uid: UICatalog.Scenarios.ClassExplorer.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ClassExplorer.html#UICatalog_Scenarios_ClassExplorer_Setup_ - commentId: Overload:UICatalog.Scenarios.ClassExplorer.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ClassExplorer.Setup - nameWithType: ClassExplorer.Setup -- uid: UICatalog.Scenarios.Clipping - name: Clipping - href: api/UICatalog/UICatalog.Scenarios.Clipping.html - commentId: T:UICatalog.Scenarios.Clipping - fullName: UICatalog.Scenarios.Clipping - nameWithType: Clipping -- uid: UICatalog.Scenarios.Clipping.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.Clipping.html#UICatalog_Scenarios_Clipping_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.Clipping.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.Clipping.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: Clipping.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.Clipping.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.Clipping.html#UICatalog_Scenarios_Clipping_Init_ - commentId: Overload:UICatalog.Scenarios.Clipping.Init - isSpec: "True" - fullName: UICatalog.Scenarios.Clipping.Init - nameWithType: Clipping.Init -- uid: UICatalog.Scenarios.Clipping.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Clipping.html#UICatalog_Scenarios_Clipping_Setup - commentId: M:UICatalog.Scenarios.Clipping.Setup - fullName: UICatalog.Scenarios.Clipping.Setup() - nameWithType: Clipping.Setup() -- uid: UICatalog.Scenarios.Clipping.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Clipping.html#UICatalog_Scenarios_Clipping_Setup_ - commentId: Overload:UICatalog.Scenarios.Clipping.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Clipping.Setup - nameWithType: Clipping.Setup -- uid: UICatalog.Scenarios.ColorPickers - name: ColorPickers - href: api/UICatalog/UICatalog.Scenarios.ColorPickers.html - commentId: T:UICatalog.Scenarios.ColorPickers - fullName: UICatalog.Scenarios.ColorPickers - nameWithType: ColorPickers -- uid: UICatalog.Scenarios.ColorPickers.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ColorPickers.html#UICatalog_Scenarios_ColorPickers_Setup - commentId: M:UICatalog.Scenarios.ColorPickers.Setup - fullName: UICatalog.Scenarios.ColorPickers.Setup() - nameWithType: ColorPickers.Setup() -- uid: UICatalog.Scenarios.ColorPickers.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ColorPickers.html#UICatalog_Scenarios_ColorPickers_Setup_ - commentId: Overload:UICatalog.Scenarios.ColorPickers.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ColorPickers.Setup - nameWithType: ColorPickers.Setup -- uid: UICatalog.Scenarios.ComboBoxIteration - name: ComboBoxIteration - href: api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html - commentId: T:UICatalog.Scenarios.ComboBoxIteration - fullName: UICatalog.Scenarios.ComboBoxIteration - nameWithType: ComboBoxIteration -- uid: UICatalog.Scenarios.ComboBoxIteration.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html#UICatalog_Scenarios_ComboBoxIteration_Setup - commentId: M:UICatalog.Scenarios.ComboBoxIteration.Setup - fullName: UICatalog.Scenarios.ComboBoxIteration.Setup() - nameWithType: ComboBoxIteration.Setup() -- uid: UICatalog.Scenarios.ComboBoxIteration.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ComboBoxIteration.html#UICatalog_Scenarios_ComboBoxIteration_Setup_ - commentId: Overload:UICatalog.Scenarios.ComboBoxIteration.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ComboBoxIteration.Setup - nameWithType: ComboBoxIteration.Setup -- uid: UICatalog.Scenarios.ComputedLayout - name: ComputedLayout - href: api/UICatalog/UICatalog.Scenarios.ComputedLayout.html - commentId: T:UICatalog.Scenarios.ComputedLayout - fullName: UICatalog.Scenarios.ComputedLayout - nameWithType: ComputedLayout -- uid: UICatalog.Scenarios.ComputedLayout.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.ComputedLayout.html#UICatalog_Scenarios_ComputedLayout_Run - commentId: M:UICatalog.Scenarios.ComputedLayout.Run - fullName: UICatalog.Scenarios.ComputedLayout.Run() - nameWithType: ComputedLayout.Run() -- uid: UICatalog.Scenarios.ComputedLayout.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.ComputedLayout.html#UICatalog_Scenarios_ComputedLayout_Run_ - commentId: Overload:UICatalog.Scenarios.ComputedLayout.Run - isSpec: "True" - fullName: UICatalog.Scenarios.ComputedLayout.Run - nameWithType: ComputedLayout.Run -- uid: UICatalog.Scenarios.ComputedLayout.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ComputedLayout.html#UICatalog_Scenarios_ComputedLayout_Setup - commentId: M:UICatalog.Scenarios.ComputedLayout.Setup - fullName: UICatalog.Scenarios.ComputedLayout.Setup() - nameWithType: ComputedLayout.Setup() -- uid: UICatalog.Scenarios.ComputedLayout.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ComputedLayout.html#UICatalog_Scenarios_ComputedLayout_Setup_ - commentId: Overload:UICatalog.Scenarios.ComputedLayout.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ComputedLayout.Setup - nameWithType: ComputedLayout.Setup -- uid: UICatalog.Scenarios.ContextMenus - name: ContextMenus - href: api/UICatalog/UICatalog.Scenarios.ContextMenus.html - commentId: T:UICatalog.Scenarios.ContextMenus - fullName: UICatalog.Scenarios.ContextMenus - nameWithType: ContextMenus -- uid: UICatalog.Scenarios.ContextMenus.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ContextMenus.html#UICatalog_Scenarios_ContextMenus_Setup - commentId: M:UICatalog.Scenarios.ContextMenus.Setup - fullName: UICatalog.Scenarios.ContextMenus.Setup() - nameWithType: ContextMenus.Setup() -- uid: UICatalog.Scenarios.ContextMenus.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ContextMenus.html#UICatalog_Scenarios_ContextMenus_Setup_ - commentId: Overload:UICatalog.Scenarios.ContextMenus.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ContextMenus.Setup - nameWithType: ContextMenus.Setup -- uid: UICatalog.Scenarios.CsvEditor - name: CsvEditor - href: api/UICatalog/UICatalog.Scenarios.CsvEditor.html - commentId: T:UICatalog.Scenarios.CsvEditor - fullName: UICatalog.Scenarios.CsvEditor - nameWithType: CsvEditor -- uid: UICatalog.Scenarios.CsvEditor.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.CsvEditor.html#UICatalog_Scenarios_CsvEditor_Setup - commentId: M:UICatalog.Scenarios.CsvEditor.Setup - fullName: UICatalog.Scenarios.CsvEditor.Setup() - nameWithType: CsvEditor.Setup() -- uid: UICatalog.Scenarios.CsvEditor.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.CsvEditor.html#UICatalog_Scenarios_CsvEditor_Setup_ - commentId: Overload:UICatalog.Scenarios.CsvEditor.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.CsvEditor.Setup - nameWithType: CsvEditor.Setup -- uid: UICatalog.Scenarios.Dialogs - name: Dialogs - href: api/UICatalog/UICatalog.Scenarios.Dialogs.html - commentId: T:UICatalog.Scenarios.Dialogs - fullName: UICatalog.Scenarios.Dialogs - nameWithType: Dialogs -- uid: UICatalog.Scenarios.Dialogs.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Dialogs.html#UICatalog_Scenarios_Dialogs_Setup - commentId: M:UICatalog.Scenarios.Dialogs.Setup - fullName: UICatalog.Scenarios.Dialogs.Setup() - nameWithType: Dialogs.Setup() -- uid: UICatalog.Scenarios.Dialogs.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Dialogs.html#UICatalog_Scenarios_Dialogs_Setup_ - commentId: Overload:UICatalog.Scenarios.Dialogs.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Dialogs.Setup - nameWithType: Dialogs.Setup -- uid: UICatalog.Scenarios.DynamicMenuBar - name: DynamicMenuBar - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar - fullName: UICatalog.Scenarios.DynamicMenuBar - nameWithType: DynamicMenuBar -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding - name: DynamicMenuBar.Binding - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.Binding - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding - nameWithType: DynamicMenuBar.Binding -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.#ctor(Terminal.Gui.View,System.String,Terminal.Gui.View,System.String,UICatalog.Scenarios.DynamicMenuBar.IValueConverter) - name: Binding(View, String, View, String, DynamicMenuBar.IValueConverter) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding__ctor_Terminal_Gui_View_System_String_Terminal_Gui_View_System_String_UICatalog_Scenarios_DynamicMenuBar_IValueConverter_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.Binding.#ctor(Terminal.Gui.View,System.String,Terminal.Gui.View,System.String,UICatalog.Scenarios.DynamicMenuBar.IValueConverter) - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.Binding(Terminal.Gui.View, System.String, Terminal.Gui.View, System.String, UICatalog.Scenarios.DynamicMenuBar.IValueConverter) - nameWithType: DynamicMenuBar.Binding.Binding(View, String, View, String, DynamicMenuBar.IValueConverter) -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.#ctor* - name: Binding - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.Binding.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.Binding - nameWithType: DynamicMenuBar.Binding.Binding -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.Source - name: Source - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_Source - commentId: P:UICatalog.Scenarios.DynamicMenuBar.Binding.Source - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.Source - nameWithType: DynamicMenuBar.Binding.Source -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.Source* - name: Source - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_Source_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.Binding.Source - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.Source - nameWithType: DynamicMenuBar.Binding.Source -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.SourcePropertyName - name: SourcePropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_SourcePropertyName - commentId: P:UICatalog.Scenarios.DynamicMenuBar.Binding.SourcePropertyName - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.SourcePropertyName - nameWithType: DynamicMenuBar.Binding.SourcePropertyName -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.SourcePropertyName* - name: SourcePropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_SourcePropertyName_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.Binding.SourcePropertyName - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.SourcePropertyName - nameWithType: DynamicMenuBar.Binding.SourcePropertyName -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.Target - name: Target - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_Target - commentId: P:UICatalog.Scenarios.DynamicMenuBar.Binding.Target - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.Target - nameWithType: DynamicMenuBar.Binding.Target -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.Target* - name: Target - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_Target_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.Binding.Target - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.Target - nameWithType: DynamicMenuBar.Binding.Target -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.TargetPropertyName - name: TargetPropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_TargetPropertyName - commentId: P:UICatalog.Scenarios.DynamicMenuBar.Binding.TargetPropertyName - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.TargetPropertyName - nameWithType: DynamicMenuBar.Binding.TargetPropertyName -- uid: UICatalog.Scenarios.DynamicMenuBar.Binding.TargetPropertyName* - name: TargetPropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html#UICatalog_Scenarios_DynamicMenuBar_Binding_TargetPropertyName_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.Binding.TargetPropertyName - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.Binding.TargetPropertyName - nameWithType: DynamicMenuBar.Binding.TargetPropertyName -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails - name: DynamicMenuBar.DynamicMenuBarDetails - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails - nameWithType: DynamicMenuBar.DynamicMenuBarDetails -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.#ctor(NStack.ustring) - name: DynamicMenuBarDetails(ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__ctor_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.#ctor(NStack.ustring) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.DynamicMenuBarDetails(NStack.ustring) - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.DynamicMenuBarDetails(ustring) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.#ctor(Terminal.Gui.MenuItem,System.Boolean) - name: DynamicMenuBarDetails(MenuItem, Boolean) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__ctor_Terminal_Gui_MenuItem_System_Boolean_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.#ctor(Terminal.Gui.MenuItem,System.Boolean) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.DynamicMenuBarDetails(Terminal.Gui.MenuItem, System.Boolean) - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.DynamicMenuBarDetails(MenuItem, Boolean) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.#ctor* - name: DynamicMenuBarDetails - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.DynamicMenuBarDetails - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.DynamicMenuBarDetails -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._ckbIsTopLevel - name: _ckbIsTopLevel - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__ckbIsTopLevel - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._ckbIsTopLevel - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._ckbIsTopLevel - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._ckbIsTopLevel -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._ckbSubMenu - name: _ckbSubMenu - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__ckbSubMenu - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._ckbSubMenu - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._ckbSubMenu - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._ckbSubMenu -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._menuItem - name: _menuItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__menuItem - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._menuItem - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._menuItem - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._menuItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._rbChkStyle - name: _rbChkStyle - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__rbChkStyle - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._rbChkStyle - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._rbChkStyle - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._rbChkStyle -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtAction - name: _txtAction - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__txtAction - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtAction - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtAction - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._txtAction -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtHelp - name: _txtHelp - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__txtHelp - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtHelp - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtHelp - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._txtHelp -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtShortcut - name: _txtShortcut - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__txtShortcut - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtShortcut - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtShortcut - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._txtShortcut -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtTitle - name: _txtTitle - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails__txtTitle - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtTitle - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails._txtTitle - nameWithType: DynamicMenuBar.DynamicMenuBarDetails._txtTitle -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.CreateAction(Terminal.Gui.MenuItem,UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem) - name: CreateAction(MenuItem, DynamicMenuBar.DynamicMenuItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_CreateAction_Terminal_Gui_MenuItem_UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.CreateAction(Terminal.Gui.MenuItem,UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.CreateAction(Terminal.Gui.MenuItem, UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem) - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.CreateAction(MenuItem, DynamicMenuBar.DynamicMenuItem) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.CreateAction* - name: CreateAction - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_CreateAction_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.CreateAction - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.CreateAction - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.CreateAction -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem(Terminal.Gui.MenuItem) - name: EditMenuBarItem(MenuItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_EditMenuBarItem_Terminal_Gui_MenuItem_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem(Terminal.Gui.MenuItem) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem(Terminal.Gui.MenuItem) - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem(MenuItem) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem* - name: EditMenuBarItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_EditMenuBarItem_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.EditMenuBarItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem - name: EnterMenuItem() - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_EnterMenuItem - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem() - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem() -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem* - name: EnterMenuItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_EnterMenuItem_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.EnterMenuItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent(Terminal.Gui.MenuItem@) - name: UpdateParent(ref MenuItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_UpdateParent_Terminal_Gui_MenuItem__ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent(Terminal.Gui.MenuItem@) - name.vb: UpdateParent(ByRef MenuItem) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent(ref Terminal.Gui.MenuItem) - fullName.vb: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent(ByRef Terminal.Gui.MenuItem) - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.UpdateParent(ref MenuItem) - nameWithType.vb: DynamicMenuBar.DynamicMenuBarDetails.UpdateParent(ByRef MenuItem) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent* - name: UpdateParent - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarDetails_UpdateParent_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.UpdateParent - nameWithType: DynamicMenuBar.DynamicMenuBarDetails.UpdateParent -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample - name: DynamicMenuBar.DynamicMenuBarSample - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample - nameWithType: DynamicMenuBar.DynamicMenuBarSample -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.#ctor(NStack.ustring) - name: DynamicMenuBarSample(ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarSample__ctor_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.#ctor(NStack.ustring) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DynamicMenuBarSample(NStack.ustring) - nameWithType: DynamicMenuBar.DynamicMenuBarSample.DynamicMenuBarSample(ustring) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.#ctor* - name: DynamicMenuBarSample - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarSample__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DynamicMenuBarSample - nameWithType: DynamicMenuBar.DynamicMenuBarSample.DynamicMenuBarSample -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DataContext - name: DataContext - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarSample_DataContext - commentId: P:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DataContext - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DataContext - nameWithType: DynamicMenuBar.DynamicMenuBarSample.DataContext -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DataContext* - name: DataContext - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuBarSample_DataContext_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DataContext - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.DataContext - nameWithType: DynamicMenuBar.DynamicMenuBarSample.DataContext -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem - name: DynamicMenuBar.DynamicMenuItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem - nameWithType: DynamicMenuBar.DynamicMenuItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor - name: DynamicMenuItem() - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem__ctor - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.DynamicMenuItem() - nameWithType: DynamicMenuBar.DynamicMenuItem.DynamicMenuItem() -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,System.Boolean,System.Boolean,Terminal.Gui.MenuItemCheckStyle,NStack.ustring) - name: DynamicMenuItem(ustring, ustring, ustring, Boolean, Boolean, MenuItemCheckStyle, ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem__ctor_NStack_ustring_NStack_ustring_NStack_ustring_System_Boolean_System_Boolean_Terminal_Gui_MenuItemCheckStyle_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,System.Boolean,System.Boolean,Terminal.Gui.MenuItemCheckStyle,NStack.ustring) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.DynamicMenuItem(NStack.ustring, NStack.ustring, NStack.ustring, System.Boolean, System.Boolean, Terminal.Gui.MenuItemCheckStyle, NStack.ustring) - nameWithType: DynamicMenuBar.DynamicMenuItem.DynamicMenuItem(ustring, ustring, ustring, Boolean, Boolean, MenuItemCheckStyle, ustring) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor(NStack.ustring,System.Boolean) - name: DynamicMenuItem(ustring, Boolean) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem__ctor_NStack_ustring_System_Boolean_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor(NStack.ustring,System.Boolean) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.DynamicMenuItem(NStack.ustring, System.Boolean) - nameWithType: DynamicMenuBar.DynamicMenuItem.DynamicMenuItem(ustring, Boolean) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor* - name: DynamicMenuItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.DynamicMenuItem - nameWithType: DynamicMenuBar.DynamicMenuItem.DynamicMenuItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.action - name: action - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_action - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.action - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.action - nameWithType: DynamicMenuBar.DynamicMenuItem.action -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.checkStyle - name: checkStyle - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_checkStyle - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.checkStyle - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.checkStyle - nameWithType: DynamicMenuBar.DynamicMenuItem.checkStyle -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.hasSubMenu - name: hasSubMenu - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_hasSubMenu - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.hasSubMenu - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.hasSubMenu - nameWithType: DynamicMenuBar.DynamicMenuItem.hasSubMenu -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.help - name: help - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_help - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.help - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.help - nameWithType: DynamicMenuBar.DynamicMenuItem.help -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.isTopLevel - name: isTopLevel - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_isTopLevel - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.isTopLevel - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.isTopLevel - nameWithType: DynamicMenuBar.DynamicMenuItem.isTopLevel -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.shortcut - name: shortcut - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_shortcut - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.shortcut - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.shortcut - nameWithType: DynamicMenuBar.DynamicMenuItem.shortcut -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.title - name: title - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItem_title - commentId: F:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.title - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.title - nameWithType: DynamicMenuBar.DynamicMenuItem.title -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList - name: DynamicMenuBar.DynamicMenuItemList - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList - nameWithType: DynamicMenuBar.DynamicMenuItemList -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.#ctor - name: DynamicMenuItemList() - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList__ctor - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.#ctor - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.DynamicMenuItemList() - nameWithType: DynamicMenuBar.DynamicMenuItemList.DynamicMenuItemList() -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.#ctor(NStack.ustring,Terminal.Gui.MenuItem) - name: DynamicMenuItemList(ustring, MenuItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList__ctor_NStack_ustring_Terminal_Gui_MenuItem_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.#ctor(NStack.ustring,Terminal.Gui.MenuItem) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.DynamicMenuItemList(NStack.ustring, Terminal.Gui.MenuItem) - nameWithType: DynamicMenuBar.DynamicMenuItemList.DynamicMenuItemList(ustring, MenuItem) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.#ctor* - name: DynamicMenuItemList - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.DynamicMenuItemList - nameWithType: DynamicMenuBar.DynamicMenuItemList.DynamicMenuItemList -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.MenuItem - name: MenuItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList_MenuItem - commentId: P:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.MenuItem - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.MenuItem - nameWithType: DynamicMenuBar.DynamicMenuItemList.MenuItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.MenuItem* - name: MenuItem - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList_MenuItem_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.MenuItem - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.MenuItem - nameWithType: DynamicMenuBar.DynamicMenuItemList.MenuItem -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.Title - name: Title - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList_Title - commentId: P:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.Title - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.Title - nameWithType: DynamicMenuBar.DynamicMenuItemList.Title -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.Title* - name: Title - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList_Title_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.Title - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.Title - nameWithType: DynamicMenuBar.DynamicMenuItemList.Title -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.ToString - name: ToString() - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList_ToString - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.ToString - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.ToString() - nameWithType: DynamicMenuBar.DynamicMenuItemList.ToString() -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.ToString* - name: ToString - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemList_ToString_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.ToString - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.ToString - nameWithType: DynamicMenuBar.DynamicMenuItemList.ToString -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel - name: DynamicMenuBar.DynamicMenuItemModel - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel - nameWithType: DynamicMenuBar.DynamicMenuItemModel -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.#ctor - name: DynamicMenuItemModel() - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel__ctor - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.#ctor - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.DynamicMenuItemModel() - nameWithType: DynamicMenuBar.DynamicMenuItemModel.DynamicMenuItemModel() -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.#ctor* - name: DynamicMenuItemModel - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.DynamicMenuItemModel - nameWithType: DynamicMenuBar.DynamicMenuItemModel.DynamicMenuItemModel -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.GetPropertyName(System.String) - name: GetPropertyName(String) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_GetPropertyName_System_String_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.GetPropertyName(System.String) - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.GetPropertyName(System.String) - nameWithType: DynamicMenuBar.DynamicMenuItemModel.GetPropertyName(String) -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.GetPropertyName* - name: GetPropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_GetPropertyName_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.GetPropertyName - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.GetPropertyName - nameWithType: DynamicMenuBar.DynamicMenuItemModel.GetPropertyName -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.MenuBar - name: MenuBar - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_MenuBar - commentId: P:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.MenuBar - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.MenuBar - nameWithType: DynamicMenuBar.DynamicMenuItemModel.MenuBar -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.MenuBar* - name: MenuBar - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_MenuBar_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.MenuBar - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.MenuBar - nameWithType: DynamicMenuBar.DynamicMenuItemModel.MenuBar -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Menus - name: Menus - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_Menus - commentId: P:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Menus - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Menus - nameWithType: DynamicMenuBar.DynamicMenuItemModel.Menus -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Menus* - name: Menus - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_Menus_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Menus - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Menus - nameWithType: DynamicMenuBar.DynamicMenuItemModel.Menus -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Parent - name: Parent - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_Parent - commentId: P:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Parent - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Parent - nameWithType: DynamicMenuBar.DynamicMenuItemModel.Parent -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Parent* - name: Parent - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_Parent_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Parent - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.Parent - nameWithType: DynamicMenuBar.DynamicMenuItemModel.Parent -- uid: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.PropertyChanged - name: PropertyChanged - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html#UICatalog_Scenarios_DynamicMenuBar_DynamicMenuItemModel_PropertyChanged - commentId: E:UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.PropertyChanged - fullName: UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.PropertyChanged - nameWithType: DynamicMenuBar.DynamicMenuItemModel.PropertyChanged -- uid: UICatalog.Scenarios.DynamicMenuBar.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html#UICatalog_Scenarios_DynamicMenuBar_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.DynamicMenuBar.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: DynamicMenuBar.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.DynamicMenuBar.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html#UICatalog_Scenarios_DynamicMenuBar_Init_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.Init - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.Init - nameWithType: DynamicMenuBar.Init -- uid: UICatalog.Scenarios.DynamicMenuBar.IValueConverter - name: DynamicMenuBar.IValueConverter - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.IValueConverter - fullName: UICatalog.Scenarios.DynamicMenuBar.IValueConverter - nameWithType: DynamicMenuBar.IValueConverter -- uid: UICatalog.Scenarios.DynamicMenuBar.IValueConverter.Convert(System.Object,System.Object) - name: Convert(Object, Object) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html#UICatalog_Scenarios_DynamicMenuBar_IValueConverter_Convert_System_Object_System_Object_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.IValueConverter.Convert(System.Object,System.Object) - fullName: UICatalog.Scenarios.DynamicMenuBar.IValueConverter.Convert(System.Object, System.Object) - nameWithType: DynamicMenuBar.IValueConverter.Convert(Object, Object) -- uid: UICatalog.Scenarios.DynamicMenuBar.IValueConverter.Convert* - name: Convert - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html#UICatalog_Scenarios_DynamicMenuBar_IValueConverter_Convert_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.IValueConverter.Convert - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.IValueConverter.Convert - nameWithType: DynamicMenuBar.IValueConverter.Convert -- uid: UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter - name: DynamicMenuBar.ListWrapperConverter - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter - fullName: UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter - nameWithType: DynamicMenuBar.ListWrapperConverter -- uid: UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.Convert(System.Object,System.Object) - name: Convert(Object, Object) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html#UICatalog_Scenarios_DynamicMenuBar_ListWrapperConverter_Convert_System_Object_System_Object_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.Convert(System.Object,System.Object) - fullName: UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.Convert(System.Object, System.Object) - nameWithType: DynamicMenuBar.ListWrapperConverter.Convert(Object, Object) -- uid: UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.Convert* - name: Convert - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html#UICatalog_Scenarios_DynamicMenuBar_ListWrapperConverter_Convert_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.Convert - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.Convert - nameWithType: DynamicMenuBar.ListWrapperConverter.Convert -- uid: UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter - name: DynamicMenuBar.UStringValueConverter - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html - commentId: T:UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter - fullName: UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter - nameWithType: DynamicMenuBar.UStringValueConverter -- uid: UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.Convert(System.Object,System.Object) - name: Convert(Object, Object) - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html#UICatalog_Scenarios_DynamicMenuBar_UStringValueConverter_Convert_System_Object_System_Object_ - commentId: M:UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.Convert(System.Object,System.Object) - fullName: UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.Convert(System.Object, System.Object) - nameWithType: DynamicMenuBar.UStringValueConverter.Convert(Object, Object) -- uid: UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.Convert* - name: Convert - href: api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html#UICatalog_Scenarios_DynamicMenuBar_UStringValueConverter_Convert_ - commentId: Overload:UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.Convert - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.Convert - nameWithType: DynamicMenuBar.UStringValueConverter.Convert -- uid: UICatalog.Scenarios.DynamicStatusBar - name: DynamicStatusBar - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar - fullName: UICatalog.Scenarios.DynamicStatusBar - nameWithType: DynamicStatusBar -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding - name: DynamicStatusBar.Binding - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.Binding - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding - nameWithType: DynamicStatusBar.Binding -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.#ctor(Terminal.Gui.View,System.String,Terminal.Gui.View,System.String,UICatalog.Scenarios.DynamicStatusBar.IValueConverter) - name: Binding(View, String, View, String, DynamicStatusBar.IValueConverter) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding__ctor_Terminal_Gui_View_System_String_Terminal_Gui_View_System_String_UICatalog_Scenarios_DynamicStatusBar_IValueConverter_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.Binding.#ctor(Terminal.Gui.View,System.String,Terminal.Gui.View,System.String,UICatalog.Scenarios.DynamicStatusBar.IValueConverter) - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.Binding(Terminal.Gui.View, System.String, Terminal.Gui.View, System.String, UICatalog.Scenarios.DynamicStatusBar.IValueConverter) - nameWithType: DynamicStatusBar.Binding.Binding(View, String, View, String, DynamicStatusBar.IValueConverter) -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.#ctor* - name: Binding - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.Binding.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.Binding - nameWithType: DynamicStatusBar.Binding.Binding -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.Source - name: Source - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_Source - commentId: P:UICatalog.Scenarios.DynamicStatusBar.Binding.Source - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.Source - nameWithType: DynamicStatusBar.Binding.Source -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.Source* - name: Source - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_Source_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.Binding.Source - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.Source - nameWithType: DynamicStatusBar.Binding.Source -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.SourcePropertyName - name: SourcePropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_SourcePropertyName - commentId: P:UICatalog.Scenarios.DynamicStatusBar.Binding.SourcePropertyName - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.SourcePropertyName - nameWithType: DynamicStatusBar.Binding.SourcePropertyName -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.SourcePropertyName* - name: SourcePropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_SourcePropertyName_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.Binding.SourcePropertyName - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.SourcePropertyName - nameWithType: DynamicStatusBar.Binding.SourcePropertyName -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.Target - name: Target - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_Target - commentId: P:UICatalog.Scenarios.DynamicStatusBar.Binding.Target - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.Target - nameWithType: DynamicStatusBar.Binding.Target -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.Target* - name: Target - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_Target_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.Binding.Target - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.Target - nameWithType: DynamicStatusBar.Binding.Target -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.TargetPropertyName - name: TargetPropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_TargetPropertyName - commentId: P:UICatalog.Scenarios.DynamicStatusBar.Binding.TargetPropertyName - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.TargetPropertyName - nameWithType: DynamicStatusBar.Binding.TargetPropertyName -- uid: UICatalog.Scenarios.DynamicStatusBar.Binding.TargetPropertyName* - name: TargetPropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html#UICatalog_Scenarios_DynamicStatusBar_Binding_TargetPropertyName_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.Binding.TargetPropertyName - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.Binding.TargetPropertyName - nameWithType: DynamicStatusBar.Binding.TargetPropertyName -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails - name: DynamicStatusBar.DynamicStatusBarDetails - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails - nameWithType: DynamicStatusBar.DynamicStatusBarDetails -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.#ctor(NStack.ustring) - name: DynamicStatusBarDetails(ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__ctor_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.#ctor(NStack.ustring) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.DynamicStatusBarDetails(NStack.ustring) - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.DynamicStatusBarDetails(ustring) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.#ctor(Terminal.Gui.StatusItem) - name: DynamicStatusBarDetails(StatusItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__ctor_Terminal_Gui_StatusItem_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.#ctor(Terminal.Gui.StatusItem) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.DynamicStatusBarDetails(Terminal.Gui.StatusItem) - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.DynamicStatusBarDetails(StatusItem) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.#ctor* - name: DynamicStatusBarDetails - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.DynamicStatusBarDetails - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.DynamicStatusBarDetails -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._statusItem - name: _statusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__statusItem - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._statusItem - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._statusItem - nameWithType: DynamicStatusBar.DynamicStatusBarDetails._statusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtAction - name: _txtAction - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__txtAction - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtAction - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtAction - nameWithType: DynamicStatusBar.DynamicStatusBarDetails._txtAction -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtShortcut - name: _txtShortcut - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__txtShortcut - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtShortcut - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtShortcut - nameWithType: DynamicStatusBar.DynamicStatusBarDetails._txtShortcut -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtTitle - name: _txtTitle - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails__txtTitle - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtTitle - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails._txtTitle - nameWithType: DynamicStatusBar.DynamicStatusBarDetails._txtTitle -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.CreateAction(UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem) - name: CreateAction(DynamicStatusBar.DynamicStatusItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails_CreateAction_UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.CreateAction(UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.CreateAction(UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem) - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.CreateAction(DynamicStatusBar.DynamicStatusItem) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.CreateAction* - name: CreateAction - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails_CreateAction_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.CreateAction - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.CreateAction - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.CreateAction -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem(Terminal.Gui.StatusItem) - name: EditStatusItem(StatusItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails_EditStatusItem_Terminal_Gui_StatusItem_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem(Terminal.Gui.StatusItem) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem(Terminal.Gui.StatusItem) - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem(StatusItem) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem* - name: EditStatusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails_EditStatusItem_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.EditStatusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem - name: EnterStatusItem() - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails_EnterStatusItem - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem() - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem() -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem* - name: EnterStatusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarDetails_EnterStatusItem_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem - nameWithType: DynamicStatusBar.DynamicStatusBarDetails.EnterStatusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample - name: DynamicStatusBar.DynamicStatusBarSample - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample - nameWithType: DynamicStatusBar.DynamicStatusBarSample -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.#ctor(NStack.ustring) - name: DynamicStatusBarSample(ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarSample__ctor_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.#ctor(NStack.ustring) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DynamicStatusBarSample(NStack.ustring) - nameWithType: DynamicStatusBar.DynamicStatusBarSample.DynamicStatusBarSample(ustring) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.#ctor* - name: DynamicStatusBarSample - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarSample__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DynamicStatusBarSample - nameWithType: DynamicStatusBar.DynamicStatusBarSample.DynamicStatusBarSample -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DataContext - name: DataContext - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarSample_DataContext - commentId: P:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DataContext - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DataContext - nameWithType: DynamicStatusBar.DynamicStatusBarSample.DataContext -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DataContext* - name: DataContext - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarSample_DataContext_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DataContext - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.DataContext - nameWithType: DynamicStatusBar.DynamicStatusBarSample.DataContext -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.SetTitleText(NStack.ustring,NStack.ustring) - name: SetTitleText(ustring, ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarSample_SetTitleText_NStack_ustring_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.SetTitleText(NStack.ustring,NStack.ustring) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.SetTitleText(NStack.ustring, NStack.ustring) - nameWithType: DynamicStatusBar.DynamicStatusBarSample.SetTitleText(ustring, ustring) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.SetTitleText* - name: SetTitleText - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusBarSample_SetTitleText_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.SetTitleText - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.SetTitleText - nameWithType: DynamicStatusBar.DynamicStatusBarSample.SetTitleText -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem - name: DynamicStatusBar.DynamicStatusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem - nameWithType: DynamicStatusBar.DynamicStatusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor - name: DynamicStatusItem() - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem__ctor - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.DynamicStatusItem() - nameWithType: DynamicStatusBar.DynamicStatusItem.DynamicStatusItem() -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor(NStack.ustring) - name: DynamicStatusItem(ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem__ctor_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor(NStack.ustring) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.DynamicStatusItem(NStack.ustring) - nameWithType: DynamicStatusBar.DynamicStatusItem.DynamicStatusItem(ustring) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor(NStack.ustring,NStack.ustring,NStack.ustring) - name: DynamicStatusItem(ustring, ustring, ustring) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem__ctor_NStack_ustring_NStack_ustring_NStack_ustring_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor(NStack.ustring,NStack.ustring,NStack.ustring) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.DynamicStatusItem(NStack.ustring, NStack.ustring, NStack.ustring) - nameWithType: DynamicStatusBar.DynamicStatusItem.DynamicStatusItem(ustring, ustring, ustring) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor* - name: DynamicStatusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.DynamicStatusItem - nameWithType: DynamicStatusBar.DynamicStatusItem.DynamicStatusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.action - name: action - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem_action - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.action - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.action - nameWithType: DynamicStatusBar.DynamicStatusItem.action -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.shortcut - name: shortcut - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem_shortcut - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.shortcut - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.shortcut - nameWithType: DynamicStatusBar.DynamicStatusItem.shortcut -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.title - name: title - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItem_title - commentId: F:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.title - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.title - nameWithType: DynamicStatusBar.DynamicStatusItem.title -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList - name: DynamicStatusBar.DynamicStatusItemList - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList - nameWithType: DynamicStatusBar.DynamicStatusItemList -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.#ctor - name: DynamicStatusItemList() - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList__ctor - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.#ctor - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.DynamicStatusItemList() - nameWithType: DynamicStatusBar.DynamicStatusItemList.DynamicStatusItemList() -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.#ctor(NStack.ustring,Terminal.Gui.StatusItem) - name: DynamicStatusItemList(ustring, StatusItem) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList__ctor_NStack_ustring_Terminal_Gui_StatusItem_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.#ctor(NStack.ustring,Terminal.Gui.StatusItem) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.DynamicStatusItemList(NStack.ustring, Terminal.Gui.StatusItem) - nameWithType: DynamicStatusBar.DynamicStatusItemList.DynamicStatusItemList(ustring, StatusItem) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.#ctor* - name: DynamicStatusItemList - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.DynamicStatusItemList - nameWithType: DynamicStatusBar.DynamicStatusItemList.DynamicStatusItemList -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.StatusItem - name: StatusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList_StatusItem - commentId: P:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.StatusItem - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.StatusItem - nameWithType: DynamicStatusBar.DynamicStatusItemList.StatusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.StatusItem* - name: StatusItem - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList_StatusItem_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.StatusItem - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.StatusItem - nameWithType: DynamicStatusBar.DynamicStatusItemList.StatusItem -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.Title - name: Title - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList_Title - commentId: P:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.Title - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.Title - nameWithType: DynamicStatusBar.DynamicStatusItemList.Title -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.Title* - name: Title - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList_Title_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.Title - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.Title - nameWithType: DynamicStatusBar.DynamicStatusItemList.Title -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.ToString - name: ToString() - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList_ToString - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.ToString - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.ToString() - nameWithType: DynamicStatusBar.DynamicStatusItemList.ToString() -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.ToString* - name: ToString - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemList_ToString_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.ToString - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.ToString - nameWithType: DynamicStatusBar.DynamicStatusItemList.ToString -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel - name: DynamicStatusBar.DynamicStatusItemModel - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel - nameWithType: DynamicStatusBar.DynamicStatusItemModel -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.#ctor - name: DynamicStatusItemModel() - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel__ctor - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.#ctor - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.DynamicStatusItemModel() - nameWithType: DynamicStatusBar.DynamicStatusItemModel.DynamicStatusItemModel() -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.#ctor* - name: DynamicStatusItemModel - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel__ctor_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.DynamicStatusItemModel - nameWithType: DynamicStatusBar.DynamicStatusItemModel.DynamicStatusItemModel -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.GetPropertyName(System.String) - name: GetPropertyName(String) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_GetPropertyName_System_String_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.GetPropertyName(System.String) - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.GetPropertyName(System.String) - nameWithType: DynamicStatusBar.DynamicStatusItemModel.GetPropertyName(String) -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.GetPropertyName* - name: GetPropertyName - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_GetPropertyName_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.GetPropertyName - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.GetPropertyName - nameWithType: DynamicStatusBar.DynamicStatusItemModel.GetPropertyName -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.Items - name: Items - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_Items - commentId: P:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.Items - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.Items - nameWithType: DynamicStatusBar.DynamicStatusItemModel.Items -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.Items* - name: Items - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_Items_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.Items - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.Items - nameWithType: DynamicStatusBar.DynamicStatusItemModel.Items -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.PropertyChanged - name: PropertyChanged - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_PropertyChanged - commentId: E:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.PropertyChanged - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.PropertyChanged - nameWithType: DynamicStatusBar.DynamicStatusItemModel.PropertyChanged -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.StatusBar - name: StatusBar - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_StatusBar - commentId: P:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.StatusBar - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.StatusBar - nameWithType: DynamicStatusBar.DynamicStatusItemModel.StatusBar -- uid: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.StatusBar* - name: StatusBar - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html#UICatalog_Scenarios_DynamicStatusBar_DynamicStatusItemModel_StatusBar_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.StatusBar - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.StatusBar - nameWithType: DynamicStatusBar.DynamicStatusItemModel.StatusBar -- uid: UICatalog.Scenarios.DynamicStatusBar.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html#UICatalog_Scenarios_DynamicStatusBar_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.DynamicStatusBar.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: DynamicStatusBar.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.DynamicStatusBar.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html#UICatalog_Scenarios_DynamicStatusBar_Init_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.Init - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.Init - nameWithType: DynamicStatusBar.Init -- uid: UICatalog.Scenarios.DynamicStatusBar.IValueConverter - name: DynamicStatusBar.IValueConverter - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.IValueConverter - fullName: UICatalog.Scenarios.DynamicStatusBar.IValueConverter - nameWithType: DynamicStatusBar.IValueConverter -- uid: UICatalog.Scenarios.DynamicStatusBar.IValueConverter.Convert(System.Object,System.Object) - name: Convert(Object, Object) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html#UICatalog_Scenarios_DynamicStatusBar_IValueConverter_Convert_System_Object_System_Object_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.IValueConverter.Convert(System.Object,System.Object) - fullName: UICatalog.Scenarios.DynamicStatusBar.IValueConverter.Convert(System.Object, System.Object) - nameWithType: DynamicStatusBar.IValueConverter.Convert(Object, Object) -- uid: UICatalog.Scenarios.DynamicStatusBar.IValueConverter.Convert* - name: Convert - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html#UICatalog_Scenarios_DynamicStatusBar_IValueConverter_Convert_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.IValueConverter.Convert - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.IValueConverter.Convert - nameWithType: DynamicStatusBar.IValueConverter.Convert -- uid: UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter - name: DynamicStatusBar.ListWrapperConverter - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter - fullName: UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter - nameWithType: DynamicStatusBar.ListWrapperConverter -- uid: UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.Convert(System.Object,System.Object) - name: Convert(Object, Object) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html#UICatalog_Scenarios_DynamicStatusBar_ListWrapperConverter_Convert_System_Object_System_Object_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.Convert(System.Object,System.Object) - fullName: UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.Convert(System.Object, System.Object) - nameWithType: DynamicStatusBar.ListWrapperConverter.Convert(Object, Object) -- uid: UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.Convert* - name: Convert - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html#UICatalog_Scenarios_DynamicStatusBar_ListWrapperConverter_Convert_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.Convert - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.Convert - nameWithType: DynamicStatusBar.ListWrapperConverter.Convert -- uid: UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter - name: DynamicStatusBar.UStringValueConverter - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html - commentId: T:UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter - fullName: UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter - nameWithType: DynamicStatusBar.UStringValueConverter -- uid: UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.Convert(System.Object,System.Object) - name: Convert(Object, Object) - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html#UICatalog_Scenarios_DynamicStatusBar_UStringValueConverter_Convert_System_Object_System_Object_ - commentId: M:UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.Convert(System.Object,System.Object) - fullName: UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.Convert(System.Object, System.Object) - nameWithType: DynamicStatusBar.UStringValueConverter.Convert(Object, Object) -- uid: UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.Convert* - name: Convert - href: api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html#UICatalog_Scenarios_DynamicStatusBar_UStringValueConverter_Convert_ - commentId: Overload:UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.Convert - isSpec: "True" - fullName: UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.Convert - nameWithType: DynamicStatusBar.UStringValueConverter.Convert -- uid: UICatalog.Scenarios.Editor - name: Editor - href: api/UICatalog/UICatalog.Scenarios.Editor.html - commentId: T:UICatalog.Scenarios.Editor - fullName: UICatalog.Scenarios.Editor - nameWithType: Editor -- uid: UICatalog.Scenarios.Editor.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.Editor.html#UICatalog_Scenarios_Editor_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.Editor.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.Editor.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: Editor.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.Editor.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.Editor.html#UICatalog_Scenarios_Editor_Init_ - commentId: Overload:UICatalog.Scenarios.Editor.Init - isSpec: "True" - fullName: UICatalog.Scenarios.Editor.Init - nameWithType: Editor.Init -- uid: UICatalog.Scenarios.Editor.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Editor.html#UICatalog_Scenarios_Editor_Setup - commentId: M:UICatalog.Scenarios.Editor.Setup - fullName: UICatalog.Scenarios.Editor.Setup() - nameWithType: Editor.Setup() -- uid: UICatalog.Scenarios.Editor.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Editor.html#UICatalog_Scenarios_Editor_Setup_ - commentId: Overload:UICatalog.Scenarios.Editor.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Editor.Setup - nameWithType: Editor.Setup -- uid: UICatalog.Scenarios.GraphViewExample - name: GraphViewExample - href: api/UICatalog/UICatalog.Scenarios.GraphViewExample.html - commentId: T:UICatalog.Scenarios.GraphViewExample - fullName: UICatalog.Scenarios.GraphViewExample - nameWithType: GraphViewExample -- uid: UICatalog.Scenarios.GraphViewExample.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.GraphViewExample.html#UICatalog_Scenarios_GraphViewExample_Setup - commentId: M:UICatalog.Scenarios.GraphViewExample.Setup - fullName: UICatalog.Scenarios.GraphViewExample.Setup() - nameWithType: GraphViewExample.Setup() -- uid: UICatalog.Scenarios.GraphViewExample.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.GraphViewExample.html#UICatalog_Scenarios_GraphViewExample_Setup_ - commentId: Overload:UICatalog.Scenarios.GraphViewExample.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.GraphViewExample.Setup - nameWithType: GraphViewExample.Setup -- uid: UICatalog.Scenarios.HexEditor - name: HexEditor - href: api/UICatalog/UICatalog.Scenarios.HexEditor.html - commentId: T:UICatalog.Scenarios.HexEditor - fullName: UICatalog.Scenarios.HexEditor - nameWithType: HexEditor -- uid: UICatalog.Scenarios.HexEditor.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.HexEditor.html#UICatalog_Scenarios_HexEditor_Setup - commentId: M:UICatalog.Scenarios.HexEditor.Setup - fullName: UICatalog.Scenarios.HexEditor.Setup() - nameWithType: HexEditor.Setup() -- uid: UICatalog.Scenarios.HexEditor.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.HexEditor.html#UICatalog_Scenarios_HexEditor_Setup_ - commentId: Overload:UICatalog.Scenarios.HexEditor.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.HexEditor.Setup - nameWithType: HexEditor.Setup -- uid: UICatalog.Scenarios.InteractiveTree - name: InteractiveTree - href: api/UICatalog/UICatalog.Scenarios.InteractiveTree.html - commentId: T:UICatalog.Scenarios.InteractiveTree - fullName: UICatalog.Scenarios.InteractiveTree - nameWithType: InteractiveTree -- uid: UICatalog.Scenarios.InteractiveTree.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.InteractiveTree.html#UICatalog_Scenarios_InteractiveTree_Setup - commentId: M:UICatalog.Scenarios.InteractiveTree.Setup - fullName: UICatalog.Scenarios.InteractiveTree.Setup() - nameWithType: InteractiveTree.Setup() -- uid: UICatalog.Scenarios.InteractiveTree.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.InteractiveTree.html#UICatalog_Scenarios_InteractiveTree_Setup_ - commentId: Overload:UICatalog.Scenarios.InteractiveTree.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.InteractiveTree.Setup - nameWithType: InteractiveTree.Setup -- uid: UICatalog.Scenarios.InvertColors - name: InvertColors - href: api/UICatalog/UICatalog.Scenarios.InvertColors.html - commentId: T:UICatalog.Scenarios.InvertColors - fullName: UICatalog.Scenarios.InvertColors - nameWithType: InvertColors -- uid: UICatalog.Scenarios.InvertColors.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.InvertColors.html#UICatalog_Scenarios_InvertColors_Setup - commentId: M:UICatalog.Scenarios.InvertColors.Setup - fullName: UICatalog.Scenarios.InvertColors.Setup() - nameWithType: InvertColors.Setup() -- uid: UICatalog.Scenarios.InvertColors.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.InvertColors.html#UICatalog_Scenarios_InvertColors_Setup_ - commentId: Overload:UICatalog.Scenarios.InvertColors.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.InvertColors.Setup - nameWithType: InvertColors.Setup -- uid: UICatalog.Scenarios.Keys - name: Keys - href: api/UICatalog/UICatalog.Scenarios.Keys.html - commentId: T:UICatalog.Scenarios.Keys - fullName: UICatalog.Scenarios.Keys - nameWithType: Keys -- uid: UICatalog.Scenarios.Keys.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.Keys.html#UICatalog_Scenarios_Keys_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.Keys.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.Keys.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: Keys.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.Keys.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.Keys.html#UICatalog_Scenarios_Keys_Init_ - commentId: Overload:UICatalog.Scenarios.Keys.Init - isSpec: "True" - fullName: UICatalog.Scenarios.Keys.Init - nameWithType: Keys.Init -- uid: UICatalog.Scenarios.Keys.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Keys.html#UICatalog_Scenarios_Keys_Setup - commentId: M:UICatalog.Scenarios.Keys.Setup - fullName: UICatalog.Scenarios.Keys.Setup() - nameWithType: Keys.Setup() -- uid: UICatalog.Scenarios.Keys.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Keys.html#UICatalog_Scenarios_Keys_Setup_ - commentId: Overload:UICatalog.Scenarios.Keys.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Keys.Setup - nameWithType: Keys.Setup -- uid: UICatalog.Scenarios.LabelsAsLabels - name: LabelsAsLabels - href: api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html - commentId: T:UICatalog.Scenarios.LabelsAsLabels - fullName: UICatalog.Scenarios.LabelsAsLabels - nameWithType: LabelsAsLabels -- uid: UICatalog.Scenarios.LabelsAsLabels.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html#UICatalog_Scenarios_LabelsAsLabels_Setup - commentId: M:UICatalog.Scenarios.LabelsAsLabels.Setup - fullName: UICatalog.Scenarios.LabelsAsLabels.Setup() - nameWithType: LabelsAsLabels.Setup() -- uid: UICatalog.Scenarios.LabelsAsLabels.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html#UICatalog_Scenarios_LabelsAsLabels_Setup_ - commentId: Overload:UICatalog.Scenarios.LabelsAsLabels.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.LabelsAsLabels.Setup - nameWithType: LabelsAsLabels.Setup -- uid: UICatalog.Scenarios.LineViewExample - name: LineViewExample - href: api/UICatalog/UICatalog.Scenarios.LineViewExample.html - commentId: T:UICatalog.Scenarios.LineViewExample - fullName: UICatalog.Scenarios.LineViewExample - nameWithType: LineViewExample -- uid: UICatalog.Scenarios.LineViewExample.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.LineViewExample.html#UICatalog_Scenarios_LineViewExample_Setup - commentId: M:UICatalog.Scenarios.LineViewExample.Setup - fullName: UICatalog.Scenarios.LineViewExample.Setup() - nameWithType: LineViewExample.Setup() -- uid: UICatalog.Scenarios.LineViewExample.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.LineViewExample.html#UICatalog_Scenarios_LineViewExample_Setup_ - commentId: Overload:UICatalog.Scenarios.LineViewExample.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.LineViewExample.Setup - nameWithType: LineViewExample.Setup -- uid: UICatalog.Scenarios.ListsAndCombos - name: ListsAndCombos - href: api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html - commentId: T:UICatalog.Scenarios.ListsAndCombos - fullName: UICatalog.Scenarios.ListsAndCombos - nameWithType: ListsAndCombos -- uid: UICatalog.Scenarios.ListsAndCombos.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html#UICatalog_Scenarios_ListsAndCombos_Setup - commentId: M:UICatalog.Scenarios.ListsAndCombos.Setup - fullName: UICatalog.Scenarios.ListsAndCombos.Setup() - nameWithType: ListsAndCombos.Setup() -- uid: UICatalog.Scenarios.ListsAndCombos.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html#UICatalog_Scenarios_ListsAndCombos_Setup_ - commentId: Overload:UICatalog.Scenarios.ListsAndCombos.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ListsAndCombos.Setup - nameWithType: ListsAndCombos.Setup -- uid: UICatalog.Scenarios.ListViewWithSelection - name: ListViewWithSelection - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html - commentId: T:UICatalog.Scenarios.ListViewWithSelection - fullName: UICatalog.Scenarios.ListViewWithSelection - nameWithType: ListViewWithSelection -- uid: UICatalog.Scenarios.ListViewWithSelection._allowMarkingCB - name: _allowMarkingCB - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection__allowMarkingCB - commentId: F:UICatalog.Scenarios.ListViewWithSelection._allowMarkingCB - fullName: UICatalog.Scenarios.ListViewWithSelection._allowMarkingCB - nameWithType: ListViewWithSelection._allowMarkingCB -- uid: UICatalog.Scenarios.ListViewWithSelection._allowMultipleCB - name: _allowMultipleCB - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection__allowMultipleCB - commentId: F:UICatalog.Scenarios.ListViewWithSelection._allowMultipleCB - fullName: UICatalog.Scenarios.ListViewWithSelection._allowMultipleCB - nameWithType: ListViewWithSelection._allowMultipleCB -- uid: UICatalog.Scenarios.ListViewWithSelection._customRenderCB - name: _customRenderCB - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection__customRenderCB - commentId: F:UICatalog.Scenarios.ListViewWithSelection._customRenderCB - fullName: UICatalog.Scenarios.ListViewWithSelection._customRenderCB - nameWithType: ListViewWithSelection._customRenderCB -- uid: UICatalog.Scenarios.ListViewWithSelection._listView - name: _listView - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection__listView - commentId: F:UICatalog.Scenarios.ListViewWithSelection._listView - fullName: UICatalog.Scenarios.ListViewWithSelection._listView - nameWithType: ListViewWithSelection._listView -- uid: UICatalog.Scenarios.ListViewWithSelection._scenarios - name: _scenarios - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection__scenarios - commentId: F:UICatalog.Scenarios.ListViewWithSelection._scenarios - fullName: UICatalog.Scenarios.ListViewWithSelection._scenarios - nameWithType: ListViewWithSelection._scenarios -- uid: UICatalog.Scenarios.ListViewWithSelection.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection_Setup - commentId: M:UICatalog.Scenarios.ListViewWithSelection.Setup - fullName: UICatalog.Scenarios.ListViewWithSelection.Setup() - nameWithType: ListViewWithSelection.Setup() -- uid: UICatalog.Scenarios.ListViewWithSelection.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html#UICatalog_Scenarios_ListViewWithSelection_Setup_ - commentId: Overload:UICatalog.Scenarios.ListViewWithSelection.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ListViewWithSelection.Setup - nameWithType: ListViewWithSelection.Setup -- uid: UICatalog.Scenarios.MessageBoxes - name: MessageBoxes - href: api/UICatalog/UICatalog.Scenarios.MessageBoxes.html - commentId: T:UICatalog.Scenarios.MessageBoxes - fullName: UICatalog.Scenarios.MessageBoxes - nameWithType: MessageBoxes -- uid: UICatalog.Scenarios.MessageBoxes.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.MessageBoxes.html#UICatalog_Scenarios_MessageBoxes_Setup - commentId: M:UICatalog.Scenarios.MessageBoxes.Setup - fullName: UICatalog.Scenarios.MessageBoxes.Setup() - nameWithType: MessageBoxes.Setup() -- uid: UICatalog.Scenarios.MessageBoxes.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.MessageBoxes.html#UICatalog_Scenarios_MessageBoxes_Setup_ - commentId: Overload:UICatalog.Scenarios.MessageBoxes.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.MessageBoxes.Setup - nameWithType: MessageBoxes.Setup -- uid: UICatalog.Scenarios.Mouse - name: Mouse - href: api/UICatalog/UICatalog.Scenarios.Mouse.html - commentId: T:UICatalog.Scenarios.Mouse - fullName: UICatalog.Scenarios.Mouse - nameWithType: Mouse -- uid: UICatalog.Scenarios.Mouse.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Mouse.html#UICatalog_Scenarios_Mouse_Setup - commentId: M:UICatalog.Scenarios.Mouse.Setup - fullName: UICatalog.Scenarios.Mouse.Setup() - nameWithType: Mouse.Setup() -- uid: UICatalog.Scenarios.Mouse.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Mouse.html#UICatalog_Scenarios_Mouse_Setup_ - commentId: Overload:UICatalog.Scenarios.Mouse.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Mouse.Setup - nameWithType: Mouse.Setup -- uid: UICatalog.Scenarios.MultiColouredTable - name: MultiColouredTable - href: api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html - commentId: T:UICatalog.Scenarios.MultiColouredTable - fullName: UICatalog.Scenarios.MultiColouredTable - nameWithType: MultiColouredTable -- uid: UICatalog.Scenarios.MultiColouredTable.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html#UICatalog_Scenarios_MultiColouredTable_Setup - commentId: M:UICatalog.Scenarios.MultiColouredTable.Setup - fullName: UICatalog.Scenarios.MultiColouredTable.Setup() - nameWithType: MultiColouredTable.Setup() -- uid: UICatalog.Scenarios.MultiColouredTable.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html#UICatalog_Scenarios_MultiColouredTable_Setup_ - commentId: Overload:UICatalog.Scenarios.MultiColouredTable.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.MultiColouredTable.Setup - nameWithType: MultiColouredTable.Setup -- uid: UICatalog.Scenarios.MyScenario - name: MyScenario - href: api/UICatalog/UICatalog.Scenarios.MyScenario.html - commentId: T:UICatalog.Scenarios.MyScenario - fullName: UICatalog.Scenarios.MyScenario - nameWithType: MyScenario -- uid: UICatalog.Scenarios.MyScenario.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.MyScenario.html#UICatalog_Scenarios_MyScenario_Setup - commentId: M:UICatalog.Scenarios.MyScenario.Setup - fullName: UICatalog.Scenarios.MyScenario.Setup() - nameWithType: MyScenario.Setup() -- uid: UICatalog.Scenarios.MyScenario.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.MyScenario.html#UICatalog_Scenarios_MyScenario_Setup_ - commentId: Overload:UICatalog.Scenarios.MyScenario.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.MyScenario.Setup - nameWithType: MyScenario.Setup -- uid: UICatalog.Scenarios.Notepad - name: Notepad - href: api/UICatalog/UICatalog.Scenarios.Notepad.html - commentId: T:UICatalog.Scenarios.Notepad - fullName: UICatalog.Scenarios.Notepad - nameWithType: Notepad -- uid: UICatalog.Scenarios.Notepad.Save - name: Save() - href: api/UICatalog/UICatalog.Scenarios.Notepad.html#UICatalog_Scenarios_Notepad_Save - commentId: M:UICatalog.Scenarios.Notepad.Save - fullName: UICatalog.Scenarios.Notepad.Save() - nameWithType: Notepad.Save() -- uid: UICatalog.Scenarios.Notepad.Save* - name: Save - href: api/UICatalog/UICatalog.Scenarios.Notepad.html#UICatalog_Scenarios_Notepad_Save_ - commentId: Overload:UICatalog.Scenarios.Notepad.Save - isSpec: "True" - fullName: UICatalog.Scenarios.Notepad.Save - nameWithType: Notepad.Save -- uid: UICatalog.Scenarios.Notepad.SaveAs - name: SaveAs() - href: api/UICatalog/UICatalog.Scenarios.Notepad.html#UICatalog_Scenarios_Notepad_SaveAs - commentId: M:UICatalog.Scenarios.Notepad.SaveAs - fullName: UICatalog.Scenarios.Notepad.SaveAs() - nameWithType: Notepad.SaveAs() -- uid: UICatalog.Scenarios.Notepad.SaveAs* - name: SaveAs - href: api/UICatalog/UICatalog.Scenarios.Notepad.html#UICatalog_Scenarios_Notepad_SaveAs_ - commentId: Overload:UICatalog.Scenarios.Notepad.SaveAs - isSpec: "True" - fullName: UICatalog.Scenarios.Notepad.SaveAs - nameWithType: Notepad.SaveAs -- uid: UICatalog.Scenarios.Notepad.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Notepad.html#UICatalog_Scenarios_Notepad_Setup - commentId: M:UICatalog.Scenarios.Notepad.Setup - fullName: UICatalog.Scenarios.Notepad.Setup() - nameWithType: Notepad.Setup() -- uid: UICatalog.Scenarios.Notepad.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Notepad.html#UICatalog_Scenarios_Notepad_Setup_ - commentId: Overload:UICatalog.Scenarios.Notepad.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Notepad.Setup - nameWithType: Notepad.Setup -- uid: UICatalog.Scenarios.Progress - name: Progress - href: api/UICatalog/UICatalog.Scenarios.Progress.html - commentId: T:UICatalog.Scenarios.Progress - fullName: UICatalog.Scenarios.Progress - nameWithType: Progress -- uid: UICatalog.Scenarios.Progress.Dispose(System.Boolean) - name: Dispose(Boolean) - href: api/UICatalog/UICatalog.Scenarios.Progress.html#UICatalog_Scenarios_Progress_Dispose_System_Boolean_ - commentId: M:UICatalog.Scenarios.Progress.Dispose(System.Boolean) - fullName: UICatalog.Scenarios.Progress.Dispose(System.Boolean) - nameWithType: Progress.Dispose(Boolean) -- uid: UICatalog.Scenarios.Progress.Dispose* - name: Dispose - href: api/UICatalog/UICatalog.Scenarios.Progress.html#UICatalog_Scenarios_Progress_Dispose_ - commentId: Overload:UICatalog.Scenarios.Progress.Dispose - isSpec: "True" - fullName: UICatalog.Scenarios.Progress.Dispose - nameWithType: Progress.Dispose -- uid: UICatalog.Scenarios.Progress.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Progress.html#UICatalog_Scenarios_Progress_Setup - commentId: M:UICatalog.Scenarios.Progress.Setup - fullName: UICatalog.Scenarios.Progress.Setup() - nameWithType: Progress.Setup() -- uid: UICatalog.Scenarios.Progress.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Progress.html#UICatalog_Scenarios_Progress_Setup_ - commentId: Overload:UICatalog.Scenarios.Progress.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Progress.Setup - nameWithType: Progress.Setup -- uid: UICatalog.Scenarios.ProgressBarStyles - name: ProgressBarStyles - href: api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html - commentId: T:UICatalog.Scenarios.ProgressBarStyles - fullName: UICatalog.Scenarios.ProgressBarStyles - nameWithType: ProgressBarStyles -- uid: UICatalog.Scenarios.ProgressBarStyles.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html#UICatalog_Scenarios_ProgressBarStyles_Setup - commentId: M:UICatalog.Scenarios.ProgressBarStyles.Setup - fullName: UICatalog.Scenarios.ProgressBarStyles.Setup() - nameWithType: ProgressBarStyles.Setup() -- uid: UICatalog.Scenarios.ProgressBarStyles.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html#UICatalog_Scenarios_ProgressBarStyles_Setup_ - commentId: Overload:UICatalog.Scenarios.ProgressBarStyles.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.ProgressBarStyles.Setup - nameWithType: ProgressBarStyles.Setup -- uid: UICatalog.Scenarios.RuneWidthGreaterThanOne - name: RuneWidthGreaterThanOne - href: api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html - commentId: T:UICatalog.Scenarios.RuneWidthGreaterThanOne - fullName: UICatalog.Scenarios.RuneWidthGreaterThanOne - nameWithType: RuneWidthGreaterThanOne -- uid: UICatalog.Scenarios.RuneWidthGreaterThanOne.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html#UICatalog_Scenarios_RuneWidthGreaterThanOne_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.RuneWidthGreaterThanOne.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.RuneWidthGreaterThanOne.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: RuneWidthGreaterThanOne.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.RuneWidthGreaterThanOne.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html#UICatalog_Scenarios_RuneWidthGreaterThanOne_Init_ - commentId: Overload:UICatalog.Scenarios.RuneWidthGreaterThanOne.Init - isSpec: "True" - fullName: UICatalog.Scenarios.RuneWidthGreaterThanOne.Init - nameWithType: RuneWidthGreaterThanOne.Init -- uid: UICatalog.Scenarios.RuneWidthGreaterThanOne.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html#UICatalog_Scenarios_RuneWidthGreaterThanOne_Run - commentId: M:UICatalog.Scenarios.RuneWidthGreaterThanOne.Run - fullName: UICatalog.Scenarios.RuneWidthGreaterThanOne.Run() - nameWithType: RuneWidthGreaterThanOne.Run() -- uid: UICatalog.Scenarios.RuneWidthGreaterThanOne.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.RuneWidthGreaterThanOne.html#UICatalog_Scenarios_RuneWidthGreaterThanOne_Run_ - commentId: Overload:UICatalog.Scenarios.RuneWidthGreaterThanOne.Run - isSpec: "True" - fullName: UICatalog.Scenarios.RuneWidthGreaterThanOne.Run - nameWithType: RuneWidthGreaterThanOne.Run -- uid: UICatalog.Scenarios.Scrolling - name: Scrolling - href: api/UICatalog/UICatalog.Scenarios.Scrolling.html - commentId: T:UICatalog.Scenarios.Scrolling - fullName: UICatalog.Scenarios.Scrolling - nameWithType: Scrolling -- uid: UICatalog.Scenarios.Scrolling.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Scrolling.html#UICatalog_Scenarios_Scrolling_Setup - commentId: M:UICatalog.Scenarios.Scrolling.Setup - fullName: UICatalog.Scenarios.Scrolling.Setup() - nameWithType: Scrolling.Setup() -- uid: UICatalog.Scenarios.Scrolling.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Scrolling.html#UICatalog_Scenarios_Scrolling_Setup_ - commentId: Overload:UICatalog.Scenarios.Scrolling.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Scrolling.Setup - nameWithType: Scrolling.Setup -- uid: UICatalog.Scenarios.SendKeys - name: SendKeys - href: api/UICatalog/UICatalog.Scenarios.SendKeys.html - commentId: T:UICatalog.Scenarios.SendKeys - fullName: UICatalog.Scenarios.SendKeys - nameWithType: SendKeys -- uid: UICatalog.Scenarios.SendKeys.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.SendKeys.html#UICatalog_Scenarios_SendKeys_Setup - commentId: M:UICatalog.Scenarios.SendKeys.Setup - fullName: UICatalog.Scenarios.SendKeys.Setup() - nameWithType: SendKeys.Setup() -- uid: UICatalog.Scenarios.SendKeys.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.SendKeys.html#UICatalog_Scenarios_SendKeys_Setup_ - commentId: Overload:UICatalog.Scenarios.SendKeys.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.SendKeys.Setup - nameWithType: SendKeys.Setup -- uid: UICatalog.Scenarios.SingleBackgroundWorker - name: SingleBackgroundWorker - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html - commentId: T:UICatalog.Scenarios.SingleBackgroundWorker - fullName: UICatalog.Scenarios.SingleBackgroundWorker - nameWithType: SingleBackgroundWorker -- uid: UICatalog.Scenarios.SingleBackgroundWorker.MainApp - name: SingleBackgroundWorker.MainApp - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html - commentId: T:UICatalog.Scenarios.SingleBackgroundWorker.MainApp - fullName: UICatalog.Scenarios.SingleBackgroundWorker.MainApp - nameWithType: SingleBackgroundWorker.MainApp -- uid: UICatalog.Scenarios.SingleBackgroundWorker.MainApp.#ctor - name: MainApp() - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html#UICatalog_Scenarios_SingleBackgroundWorker_MainApp__ctor - commentId: M:UICatalog.Scenarios.SingleBackgroundWorker.MainApp.#ctor - fullName: UICatalog.Scenarios.SingleBackgroundWorker.MainApp.MainApp() - nameWithType: SingleBackgroundWorker.MainApp.MainApp() -- uid: UICatalog.Scenarios.SingleBackgroundWorker.MainApp.#ctor* - name: MainApp - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html#UICatalog_Scenarios_SingleBackgroundWorker_MainApp__ctor_ - commentId: Overload:UICatalog.Scenarios.SingleBackgroundWorker.MainApp.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.SingleBackgroundWorker.MainApp.MainApp - nameWithType: SingleBackgroundWorker.MainApp.MainApp -- uid: UICatalog.Scenarios.SingleBackgroundWorker.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html#UICatalog_Scenarios_SingleBackgroundWorker_Run - commentId: M:UICatalog.Scenarios.SingleBackgroundWorker.Run - fullName: UICatalog.Scenarios.SingleBackgroundWorker.Run() - nameWithType: SingleBackgroundWorker.Run() -- uid: UICatalog.Scenarios.SingleBackgroundWorker.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html#UICatalog_Scenarios_SingleBackgroundWorker_Run_ - commentId: Overload:UICatalog.Scenarios.SingleBackgroundWorker.Run - isSpec: "True" - fullName: UICatalog.Scenarios.SingleBackgroundWorker.Run - nameWithType: SingleBackgroundWorker.Run -- uid: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController - name: SingleBackgroundWorker.StagingUIController - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html - commentId: T:UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController - fullName: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController - nameWithType: SingleBackgroundWorker.StagingUIController -- uid: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.#ctor(System.Nullable{System.DateTime},System.Collections.Generic.List{System.String}) - name: StagingUIController(Nullable, List) - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html#UICatalog_Scenarios_SingleBackgroundWorker_StagingUIController__ctor_System_Nullable_System_DateTime__System_Collections_Generic_List_System_String__ - commentId: M:UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.#ctor(System.Nullable{System.DateTime},System.Collections.Generic.List{System.String}) - name.vb: StagingUIController(Nullable(Of DateTime), List(Of String)) - fullName: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.StagingUIController(System.Nullable, System.Collections.Generic.List) - fullName.vb: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.StagingUIController(System.Nullable(Of System.DateTime), System.Collections.Generic.List(Of System.String)) - nameWithType: SingleBackgroundWorker.StagingUIController.StagingUIController(Nullable, List) - nameWithType.vb: SingleBackgroundWorker.StagingUIController.StagingUIController(Nullable(Of DateTime), List(Of String)) -- uid: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.#ctor* - name: StagingUIController - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html#UICatalog_Scenarios_SingleBackgroundWorker_StagingUIController__ctor_ - commentId: Overload:UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.#ctor - isSpec: "True" - fullName: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.StagingUIController - nameWithType: SingleBackgroundWorker.StagingUIController.StagingUIController -- uid: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.Load - name: Load() - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html#UICatalog_Scenarios_SingleBackgroundWorker_StagingUIController_Load - commentId: M:UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.Load - fullName: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.Load() - nameWithType: SingleBackgroundWorker.StagingUIController.Load() -- uid: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.Load* - name: Load - href: api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html#UICatalog_Scenarios_SingleBackgroundWorker_StagingUIController_Load_ - commentId: Overload:UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.Load - isSpec: "True" - fullName: UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.Load - nameWithType: SingleBackgroundWorker.StagingUIController.Load -- uid: UICatalog.Scenarios.SyntaxHighlighting - name: SyntaxHighlighting - href: api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html - commentId: T:UICatalog.Scenarios.SyntaxHighlighting - fullName: UICatalog.Scenarios.SyntaxHighlighting - nameWithType: SyntaxHighlighting -- uid: UICatalog.Scenarios.SyntaxHighlighting.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html#UICatalog_Scenarios_SyntaxHighlighting_Setup - commentId: M:UICatalog.Scenarios.SyntaxHighlighting.Setup - fullName: UICatalog.Scenarios.SyntaxHighlighting.Setup() - nameWithType: SyntaxHighlighting.Setup() -- uid: UICatalog.Scenarios.SyntaxHighlighting.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html#UICatalog_Scenarios_SyntaxHighlighting_Setup_ - commentId: Overload:UICatalog.Scenarios.SyntaxHighlighting.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.SyntaxHighlighting.Setup - nameWithType: SyntaxHighlighting.Setup -- uid: UICatalog.Scenarios.TableEditor - name: TableEditor - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html - commentId: T:UICatalog.Scenarios.TableEditor - fullName: UICatalog.Scenarios.TableEditor - nameWithType: TableEditor -- uid: UICatalog.Scenarios.TableEditor.BuildDemoDataTable(System.Int32,System.Int32) - name: BuildDemoDataTable(Int32, Int32) - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html#UICatalog_Scenarios_TableEditor_BuildDemoDataTable_System_Int32_System_Int32_ - commentId: M:UICatalog.Scenarios.TableEditor.BuildDemoDataTable(System.Int32,System.Int32) - fullName: UICatalog.Scenarios.TableEditor.BuildDemoDataTable(System.Int32, System.Int32) - nameWithType: TableEditor.BuildDemoDataTable(Int32, Int32) -- uid: UICatalog.Scenarios.TableEditor.BuildDemoDataTable* - name: BuildDemoDataTable - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html#UICatalog_Scenarios_TableEditor_BuildDemoDataTable_ - commentId: Overload:UICatalog.Scenarios.TableEditor.BuildDemoDataTable - isSpec: "True" - fullName: UICatalog.Scenarios.TableEditor.BuildDemoDataTable - nameWithType: TableEditor.BuildDemoDataTable -- uid: UICatalog.Scenarios.TableEditor.BuildSimpleDataTable(System.Int32,System.Int32) - name: BuildSimpleDataTable(Int32, Int32) - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html#UICatalog_Scenarios_TableEditor_BuildSimpleDataTable_System_Int32_System_Int32_ - commentId: M:UICatalog.Scenarios.TableEditor.BuildSimpleDataTable(System.Int32,System.Int32) - fullName: UICatalog.Scenarios.TableEditor.BuildSimpleDataTable(System.Int32, System.Int32) - nameWithType: TableEditor.BuildSimpleDataTable(Int32, Int32) -- uid: UICatalog.Scenarios.TableEditor.BuildSimpleDataTable* - name: BuildSimpleDataTable - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html#UICatalog_Scenarios_TableEditor_BuildSimpleDataTable_ - commentId: Overload:UICatalog.Scenarios.TableEditor.BuildSimpleDataTable - isSpec: "True" - fullName: UICatalog.Scenarios.TableEditor.BuildSimpleDataTable - nameWithType: TableEditor.BuildSimpleDataTable -- uid: UICatalog.Scenarios.TableEditor.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html#UICatalog_Scenarios_TableEditor_Setup - commentId: M:UICatalog.Scenarios.TableEditor.Setup - fullName: UICatalog.Scenarios.TableEditor.Setup() - nameWithType: TableEditor.Setup() -- uid: UICatalog.Scenarios.TableEditor.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TableEditor.html#UICatalog_Scenarios_TableEditor_Setup_ - commentId: Overload:UICatalog.Scenarios.TableEditor.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TableEditor.Setup - nameWithType: TableEditor.Setup -- uid: UICatalog.Scenarios.TabViewExample - name: TabViewExample - href: api/UICatalog/UICatalog.Scenarios.TabViewExample.html - commentId: T:UICatalog.Scenarios.TabViewExample - fullName: UICatalog.Scenarios.TabViewExample - nameWithType: TabViewExample -- uid: UICatalog.Scenarios.TabViewExample.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TabViewExample.html#UICatalog_Scenarios_TabViewExample_Setup - commentId: M:UICatalog.Scenarios.TabViewExample.Setup - fullName: UICatalog.Scenarios.TabViewExample.Setup() - nameWithType: TabViewExample.Setup() -- uid: UICatalog.Scenarios.TabViewExample.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TabViewExample.html#UICatalog_Scenarios_TabViewExample_Setup_ - commentId: Overload:UICatalog.Scenarios.TabViewExample.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TabViewExample.Setup - nameWithType: TabViewExample.Setup -- uid: UICatalog.Scenarios.Text - name: Text - href: api/UICatalog/UICatalog.Scenarios.Text.html - commentId: T:UICatalog.Scenarios.Text - fullName: UICatalog.Scenarios.Text - nameWithType: Text -- uid: UICatalog.Scenarios.Text.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Text.html#UICatalog_Scenarios_Text_Setup - commentId: M:UICatalog.Scenarios.Text.Setup - fullName: UICatalog.Scenarios.Text.Setup() - nameWithType: Text.Setup() -- uid: UICatalog.Scenarios.Text.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Text.html#UICatalog_Scenarios_Text_Setup_ - commentId: Overload:UICatalog.Scenarios.Text.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Text.Setup - nameWithType: Text.Setup -- uid: UICatalog.Scenarios.TextAlignments - name: TextAlignments - href: api/UICatalog/UICatalog.Scenarios.TextAlignments.html - commentId: T:UICatalog.Scenarios.TextAlignments - fullName: UICatalog.Scenarios.TextAlignments - nameWithType: TextAlignments -- uid: UICatalog.Scenarios.TextAlignments.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TextAlignments.html#UICatalog_Scenarios_TextAlignments_Setup - commentId: M:UICatalog.Scenarios.TextAlignments.Setup - fullName: UICatalog.Scenarios.TextAlignments.Setup() - nameWithType: TextAlignments.Setup() -- uid: UICatalog.Scenarios.TextAlignments.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TextAlignments.html#UICatalog_Scenarios_TextAlignments_Setup_ - commentId: Overload:UICatalog.Scenarios.TextAlignments.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TextAlignments.Setup - nameWithType: TextAlignments.Setup -- uid: UICatalog.Scenarios.TextAlignmentsAndDirections - name: TextAlignmentsAndDirections - href: api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html - commentId: T:UICatalog.Scenarios.TextAlignmentsAndDirections - fullName: UICatalog.Scenarios.TextAlignmentsAndDirections - nameWithType: TextAlignmentsAndDirections -- uid: UICatalog.Scenarios.TextAlignmentsAndDirections.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html#UICatalog_Scenarios_TextAlignmentsAndDirections_Setup - commentId: M:UICatalog.Scenarios.TextAlignmentsAndDirections.Setup - fullName: UICatalog.Scenarios.TextAlignmentsAndDirections.Setup() - nameWithType: TextAlignmentsAndDirections.Setup() -- uid: UICatalog.Scenarios.TextAlignmentsAndDirections.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html#UICatalog_Scenarios_TextAlignmentsAndDirections_Setup_ - commentId: Overload:UICatalog.Scenarios.TextAlignmentsAndDirections.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TextAlignmentsAndDirections.Setup - nameWithType: TextAlignmentsAndDirections.Setup -- uid: UICatalog.Scenarios.TextFormatterDemo - name: TextFormatterDemo - href: api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html - commentId: T:UICatalog.Scenarios.TextFormatterDemo - fullName: UICatalog.Scenarios.TextFormatterDemo - nameWithType: TextFormatterDemo -- uid: UICatalog.Scenarios.TextFormatterDemo.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html#UICatalog_Scenarios_TextFormatterDemo_Setup - commentId: M:UICatalog.Scenarios.TextFormatterDemo.Setup - fullName: UICatalog.Scenarios.TextFormatterDemo.Setup() - nameWithType: TextFormatterDemo.Setup() -- uid: UICatalog.Scenarios.TextFormatterDemo.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html#UICatalog_Scenarios_TextFormatterDemo_Setup_ - commentId: Overload:UICatalog.Scenarios.TextFormatterDemo.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TextFormatterDemo.Setup - nameWithType: TextFormatterDemo.Setup -- uid: UICatalog.Scenarios.TextViewAutocompletePopup - name: TextViewAutocompletePopup - href: api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html - commentId: T:UICatalog.Scenarios.TextViewAutocompletePopup - fullName: UICatalog.Scenarios.TextViewAutocompletePopup - nameWithType: TextViewAutocompletePopup -- uid: UICatalog.Scenarios.TextViewAutocompletePopup.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html#UICatalog_Scenarios_TextViewAutocompletePopup_Setup - commentId: M:UICatalog.Scenarios.TextViewAutocompletePopup.Setup - fullName: UICatalog.Scenarios.TextViewAutocompletePopup.Setup() - nameWithType: TextViewAutocompletePopup.Setup() -- uid: UICatalog.Scenarios.TextViewAutocompletePopup.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TextViewAutocompletePopup.html#UICatalog_Scenarios_TextViewAutocompletePopup_Setup_ - commentId: Overload:UICatalog.Scenarios.TextViewAutocompletePopup.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TextViewAutocompletePopup.Setup - nameWithType: TextViewAutocompletePopup.Setup -- uid: UICatalog.Scenarios.Threading - name: Threading - href: api/UICatalog/UICatalog.Scenarios.Threading.html - commentId: T:UICatalog.Scenarios.Threading - fullName: UICatalog.Scenarios.Threading - nameWithType: Threading -- uid: UICatalog.Scenarios.Threading.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Threading.html#UICatalog_Scenarios_Threading_Setup - commentId: M:UICatalog.Scenarios.Threading.Setup - fullName: UICatalog.Scenarios.Threading.Setup() - nameWithType: Threading.Setup() -- uid: UICatalog.Scenarios.Threading.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Threading.html#UICatalog_Scenarios_Threading_Setup_ - commentId: Overload:UICatalog.Scenarios.Threading.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Threading.Setup - nameWithType: Threading.Setup -- uid: UICatalog.Scenarios.TimeAndDate - name: TimeAndDate - href: api/UICatalog/UICatalog.Scenarios.TimeAndDate.html - commentId: T:UICatalog.Scenarios.TimeAndDate - fullName: UICatalog.Scenarios.TimeAndDate - nameWithType: TimeAndDate -- uid: UICatalog.Scenarios.TimeAndDate.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TimeAndDate.html#UICatalog_Scenarios_TimeAndDate_Setup - commentId: M:UICatalog.Scenarios.TimeAndDate.Setup - fullName: UICatalog.Scenarios.TimeAndDate.Setup() - nameWithType: TimeAndDate.Setup() -- uid: UICatalog.Scenarios.TimeAndDate.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TimeAndDate.html#UICatalog_Scenarios_TimeAndDate_Setup_ - commentId: Overload:UICatalog.Scenarios.TimeAndDate.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TimeAndDate.Setup - nameWithType: TimeAndDate.Setup -- uid: UICatalog.Scenarios.TreeUseCases - name: TreeUseCases - href: api/UICatalog/UICatalog.Scenarios.TreeUseCases.html - commentId: T:UICatalog.Scenarios.TreeUseCases - fullName: UICatalog.Scenarios.TreeUseCases - nameWithType: TreeUseCases -- uid: UICatalog.Scenarios.TreeUseCases.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TreeUseCases.html#UICatalog_Scenarios_TreeUseCases_Setup - commentId: M:UICatalog.Scenarios.TreeUseCases.Setup - fullName: UICatalog.Scenarios.TreeUseCases.Setup() - nameWithType: TreeUseCases.Setup() -- uid: UICatalog.Scenarios.TreeUseCases.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TreeUseCases.html#UICatalog_Scenarios_TreeUseCases_Setup_ - commentId: Overload:UICatalog.Scenarios.TreeUseCases.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TreeUseCases.Setup - nameWithType: TreeUseCases.Setup -- uid: UICatalog.Scenarios.TreeViewFileSystem - name: TreeViewFileSystem - href: api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html - commentId: T:UICatalog.Scenarios.TreeViewFileSystem - fullName: UICatalog.Scenarios.TreeViewFileSystem - nameWithType: TreeViewFileSystem -- uid: UICatalog.Scenarios.TreeViewFileSystem.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html#UICatalog_Scenarios_TreeViewFileSystem_Setup - commentId: M:UICatalog.Scenarios.TreeViewFileSystem.Setup - fullName: UICatalog.Scenarios.TreeViewFileSystem.Setup() - nameWithType: TreeViewFileSystem.Setup() -- uid: UICatalog.Scenarios.TreeViewFileSystem.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html#UICatalog_Scenarios_TreeViewFileSystem_Setup_ - commentId: Overload:UICatalog.Scenarios.TreeViewFileSystem.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.TreeViewFileSystem.Setup - nameWithType: TreeViewFileSystem.Setup -- uid: UICatalog.Scenarios.UnicodeInMenu - name: UnicodeInMenu - href: api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html - commentId: T:UICatalog.Scenarios.UnicodeInMenu - fullName: UICatalog.Scenarios.UnicodeInMenu - nameWithType: UnicodeInMenu -- uid: UICatalog.Scenarios.UnicodeInMenu.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html#UICatalog_Scenarios_UnicodeInMenu_Setup - commentId: M:UICatalog.Scenarios.UnicodeInMenu.Setup - fullName: UICatalog.Scenarios.UnicodeInMenu.Setup() - nameWithType: UnicodeInMenu.Setup() -- uid: UICatalog.Scenarios.UnicodeInMenu.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html#UICatalog_Scenarios_UnicodeInMenu_Setup_ - commentId: Overload:UICatalog.Scenarios.UnicodeInMenu.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.UnicodeInMenu.Setup - nameWithType: UnicodeInMenu.Setup -- uid: UICatalog.Scenarios.WindowsAndFrameViews - name: WindowsAndFrameViews - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html - commentId: T:UICatalog.Scenarios.WindowsAndFrameViews - fullName: UICatalog.Scenarios.WindowsAndFrameViews - nameWithType: WindowsAndFrameViews -- uid: UICatalog.Scenarios.WindowsAndFrameViews.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.WindowsAndFrameViews.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.WindowsAndFrameViews.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: WindowsAndFrameViews.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.WindowsAndFrameViews.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_Init_ - commentId: Overload:UICatalog.Scenarios.WindowsAndFrameViews.Init - isSpec: "True" - fullName: UICatalog.Scenarios.WindowsAndFrameViews.Init - nameWithType: WindowsAndFrameViews.Init -- uid: UICatalog.Scenarios.WindowsAndFrameViews.RequestStop - name: RequestStop() - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_RequestStop - commentId: M:UICatalog.Scenarios.WindowsAndFrameViews.RequestStop - fullName: UICatalog.Scenarios.WindowsAndFrameViews.RequestStop() - nameWithType: WindowsAndFrameViews.RequestStop() -- uid: UICatalog.Scenarios.WindowsAndFrameViews.RequestStop* - name: RequestStop - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_RequestStop_ - commentId: Overload:UICatalog.Scenarios.WindowsAndFrameViews.RequestStop - isSpec: "True" - fullName: UICatalog.Scenarios.WindowsAndFrameViews.RequestStop - nameWithType: WindowsAndFrameViews.RequestStop -- uid: UICatalog.Scenarios.WindowsAndFrameViews.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_Run - commentId: M:UICatalog.Scenarios.WindowsAndFrameViews.Run - fullName: UICatalog.Scenarios.WindowsAndFrameViews.Run() - nameWithType: WindowsAndFrameViews.Run() -- uid: UICatalog.Scenarios.WindowsAndFrameViews.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_Run_ - commentId: Overload:UICatalog.Scenarios.WindowsAndFrameViews.Run - isSpec: "True" - fullName: UICatalog.Scenarios.WindowsAndFrameViews.Run - nameWithType: WindowsAndFrameViews.Run -- uid: UICatalog.Scenarios.WindowsAndFrameViews.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_Setup - commentId: M:UICatalog.Scenarios.WindowsAndFrameViews.Setup - fullName: UICatalog.Scenarios.WindowsAndFrameViews.Setup() - nameWithType: WindowsAndFrameViews.Setup() -- uid: UICatalog.Scenarios.WindowsAndFrameViews.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html#UICatalog_Scenarios_WindowsAndFrameViews_Setup_ - commentId: Overload:UICatalog.Scenarios.WindowsAndFrameViews.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.WindowsAndFrameViews.Setup - nameWithType: WindowsAndFrameViews.Setup -- uid: UICatalog.Scenarios.WizardAsView - name: WizardAsView - href: api/UICatalog/UICatalog.Scenarios.WizardAsView.html - commentId: T:UICatalog.Scenarios.WizardAsView - fullName: UICatalog.Scenarios.WizardAsView - nameWithType: WizardAsView -- uid: UICatalog.Scenarios.WizardAsView.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - name: Init(Toplevel, ColorScheme) - href: api/UICatalog/UICatalog.Scenarios.WizardAsView.html#UICatalog_Scenarios_WizardAsView_Init_Terminal_Gui_Toplevel_Terminal_Gui_ColorScheme_ - commentId: M:UICatalog.Scenarios.WizardAsView.Init(Terminal.Gui.Toplevel,Terminal.Gui.ColorScheme) - fullName: UICatalog.Scenarios.WizardAsView.Init(Terminal.Gui.Toplevel, Terminal.Gui.ColorScheme) - nameWithType: WizardAsView.Init(Toplevel, ColorScheme) -- uid: UICatalog.Scenarios.WizardAsView.Init* - name: Init - href: api/UICatalog/UICatalog.Scenarios.WizardAsView.html#UICatalog_Scenarios_WizardAsView_Init_ - commentId: Overload:UICatalog.Scenarios.WizardAsView.Init - isSpec: "True" - fullName: UICatalog.Scenarios.WizardAsView.Init - nameWithType: WizardAsView.Init -- uid: UICatalog.Scenarios.WizardAsView.Run - name: Run() - href: api/UICatalog/UICatalog.Scenarios.WizardAsView.html#UICatalog_Scenarios_WizardAsView_Run - commentId: M:UICatalog.Scenarios.WizardAsView.Run - fullName: UICatalog.Scenarios.WizardAsView.Run() - nameWithType: WizardAsView.Run() -- uid: UICatalog.Scenarios.WizardAsView.Run* - name: Run - href: api/UICatalog/UICatalog.Scenarios.WizardAsView.html#UICatalog_Scenarios_WizardAsView_Run_ - commentId: Overload:UICatalog.Scenarios.WizardAsView.Run - isSpec: "True" - fullName: UICatalog.Scenarios.WizardAsView.Run - nameWithType: WizardAsView.Run -- uid: UICatalog.Scenarios.Wizards - name: Wizards - href: api/UICatalog/UICatalog.Scenarios.Wizards.html - commentId: T:UICatalog.Scenarios.Wizards - fullName: UICatalog.Scenarios.Wizards - nameWithType: Wizards -- uid: UICatalog.Scenarios.Wizards.Setup - name: Setup() - href: api/UICatalog/UICatalog.Scenarios.Wizards.html#UICatalog_Scenarios_Wizards_Setup - commentId: M:UICatalog.Scenarios.Wizards.Setup - fullName: UICatalog.Scenarios.Wizards.Setup() - nameWithType: Wizards.Setup() -- uid: UICatalog.Scenarios.Wizards.Setup* - name: Setup - href: api/UICatalog/UICatalog.Scenarios.Wizards.html#UICatalog_Scenarios_Wizards_Setup_ - commentId: Overload:UICatalog.Scenarios.Wizards.Setup - isSpec: "True" - fullName: UICatalog.Scenarios.Wizards.Setup - nameWithType: Wizards.Setup -- uid: UICatalog.UICatalogApp - name: UICatalogApp - href: api/UICatalog/UICatalog.UICatalogApp.html - commentId: T:UICatalog.UICatalogApp - fullName: UICatalog.UICatalogApp - nameWithType: UICatalogApp -- uid: Unix.Terminal - name: Unix.Terminal - href: api/Terminal.Gui/Unix.Terminal.html - commentId: N:Unix.Terminal - fullName: Unix.Terminal - nameWithType: Unix.Terminal -- uid: Unix.Terminal.Curses - name: Curses - href: api/Terminal.Gui/Unix.Terminal.Curses.html - commentId: T:Unix.Terminal.Curses - fullName: Unix.Terminal.Curses - nameWithType: Curses -- uid: Unix.Terminal.Curses.A_BLINK - name: A_BLINK - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_BLINK - commentId: F:Unix.Terminal.Curses.A_BLINK - fullName: Unix.Terminal.Curses.A_BLINK - nameWithType: Curses.A_BLINK -- uid: Unix.Terminal.Curses.A_BOLD - name: A_BOLD - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_BOLD - commentId: F:Unix.Terminal.Curses.A_BOLD - fullName: Unix.Terminal.Curses.A_BOLD - nameWithType: Curses.A_BOLD -- uid: Unix.Terminal.Curses.A_DIM - name: A_DIM - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_DIM - commentId: F:Unix.Terminal.Curses.A_DIM - fullName: Unix.Terminal.Curses.A_DIM - nameWithType: Curses.A_DIM -- uid: Unix.Terminal.Curses.A_INVIS - name: A_INVIS - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_INVIS - commentId: F:Unix.Terminal.Curses.A_INVIS - fullName: Unix.Terminal.Curses.A_INVIS - nameWithType: Curses.A_INVIS -- uid: Unix.Terminal.Curses.A_NORMAL - name: A_NORMAL - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_NORMAL - commentId: F:Unix.Terminal.Curses.A_NORMAL - fullName: Unix.Terminal.Curses.A_NORMAL - nameWithType: Curses.A_NORMAL -- uid: Unix.Terminal.Curses.A_PROTECT - name: A_PROTECT - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_PROTECT - commentId: F:Unix.Terminal.Curses.A_PROTECT - fullName: Unix.Terminal.Curses.A_PROTECT - nameWithType: Curses.A_PROTECT -- uid: Unix.Terminal.Curses.A_REVERSE - name: A_REVERSE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_REVERSE - commentId: F:Unix.Terminal.Curses.A_REVERSE - fullName: Unix.Terminal.Curses.A_REVERSE - nameWithType: Curses.A_REVERSE -- uid: Unix.Terminal.Curses.A_STANDOUT - name: A_STANDOUT - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_STANDOUT - commentId: F:Unix.Terminal.Curses.A_STANDOUT - fullName: Unix.Terminal.Curses.A_STANDOUT - nameWithType: Curses.A_STANDOUT -- uid: Unix.Terminal.Curses.A_UNDERLINE - name: A_UNDERLINE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_A_UNDERLINE - commentId: F:Unix.Terminal.Curses.A_UNDERLINE - fullName: Unix.Terminal.Curses.A_UNDERLINE - nameWithType: Curses.A_UNDERLINE -- uid: Unix.Terminal.Curses.ACS_BLOCK - name: ACS_BLOCK - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_BLOCK - commentId: F:Unix.Terminal.Curses.ACS_BLOCK - fullName: Unix.Terminal.Curses.ACS_BLOCK - nameWithType: Curses.ACS_BLOCK -- uid: Unix.Terminal.Curses.ACS_BOARD - name: ACS_BOARD - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_BOARD - commentId: F:Unix.Terminal.Curses.ACS_BOARD - fullName: Unix.Terminal.Curses.ACS_BOARD - nameWithType: Curses.ACS_BOARD -- uid: Unix.Terminal.Curses.ACS_BTEE - name: ACS_BTEE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_BTEE - commentId: F:Unix.Terminal.Curses.ACS_BTEE - fullName: Unix.Terminal.Curses.ACS_BTEE - nameWithType: Curses.ACS_BTEE -- uid: Unix.Terminal.Curses.ACS_BULLET - name: ACS_BULLET - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_BULLET - commentId: F:Unix.Terminal.Curses.ACS_BULLET - fullName: Unix.Terminal.Curses.ACS_BULLET - nameWithType: Curses.ACS_BULLET -- uid: Unix.Terminal.Curses.ACS_CKBOARD - name: ACS_CKBOARD - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_CKBOARD - commentId: F:Unix.Terminal.Curses.ACS_CKBOARD - fullName: Unix.Terminal.Curses.ACS_CKBOARD - nameWithType: Curses.ACS_CKBOARD -- uid: Unix.Terminal.Curses.ACS_DARROW - name: ACS_DARROW - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_DARROW - commentId: F:Unix.Terminal.Curses.ACS_DARROW - fullName: Unix.Terminal.Curses.ACS_DARROW - nameWithType: Curses.ACS_DARROW -- uid: Unix.Terminal.Curses.ACS_DEGREE - name: ACS_DEGREE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_DEGREE - commentId: F:Unix.Terminal.Curses.ACS_DEGREE - fullName: Unix.Terminal.Curses.ACS_DEGREE - nameWithType: Curses.ACS_DEGREE -- uid: Unix.Terminal.Curses.ACS_DIAMOND - name: ACS_DIAMOND - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_DIAMOND - commentId: F:Unix.Terminal.Curses.ACS_DIAMOND - fullName: Unix.Terminal.Curses.ACS_DIAMOND - nameWithType: Curses.ACS_DIAMOND -- uid: Unix.Terminal.Curses.ACS_HLINE - name: ACS_HLINE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_HLINE - commentId: F:Unix.Terminal.Curses.ACS_HLINE - fullName: Unix.Terminal.Curses.ACS_HLINE - nameWithType: Curses.ACS_HLINE -- uid: Unix.Terminal.Curses.ACS_LANTERN - name: ACS_LANTERN - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_LANTERN - commentId: F:Unix.Terminal.Curses.ACS_LANTERN - fullName: Unix.Terminal.Curses.ACS_LANTERN - nameWithType: Curses.ACS_LANTERN -- uid: Unix.Terminal.Curses.ACS_LARROW - name: ACS_LARROW - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_LARROW - commentId: F:Unix.Terminal.Curses.ACS_LARROW - fullName: Unix.Terminal.Curses.ACS_LARROW - nameWithType: Curses.ACS_LARROW -- uid: Unix.Terminal.Curses.ACS_LLCORNER - name: ACS_LLCORNER - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_LLCORNER - commentId: F:Unix.Terminal.Curses.ACS_LLCORNER - fullName: Unix.Terminal.Curses.ACS_LLCORNER - nameWithType: Curses.ACS_LLCORNER -- uid: Unix.Terminal.Curses.ACS_LRCORNER - name: ACS_LRCORNER - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_LRCORNER - commentId: F:Unix.Terminal.Curses.ACS_LRCORNER - fullName: Unix.Terminal.Curses.ACS_LRCORNER - nameWithType: Curses.ACS_LRCORNER -- uid: Unix.Terminal.Curses.ACS_LTEE - name: ACS_LTEE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_LTEE - commentId: F:Unix.Terminal.Curses.ACS_LTEE - fullName: Unix.Terminal.Curses.ACS_LTEE - nameWithType: Curses.ACS_LTEE -- uid: Unix.Terminal.Curses.ACS_PLMINUS - name: ACS_PLMINUS - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_PLMINUS - commentId: F:Unix.Terminal.Curses.ACS_PLMINUS - fullName: Unix.Terminal.Curses.ACS_PLMINUS - nameWithType: Curses.ACS_PLMINUS -- uid: Unix.Terminal.Curses.ACS_PLUS - name: ACS_PLUS - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_PLUS - commentId: F:Unix.Terminal.Curses.ACS_PLUS - fullName: Unix.Terminal.Curses.ACS_PLUS - nameWithType: Curses.ACS_PLUS -- uid: Unix.Terminal.Curses.ACS_RARROW - name: ACS_RARROW - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_RARROW - commentId: F:Unix.Terminal.Curses.ACS_RARROW - fullName: Unix.Terminal.Curses.ACS_RARROW - nameWithType: Curses.ACS_RARROW -- uid: Unix.Terminal.Curses.ACS_RTEE - name: ACS_RTEE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_RTEE - commentId: F:Unix.Terminal.Curses.ACS_RTEE - fullName: Unix.Terminal.Curses.ACS_RTEE - nameWithType: Curses.ACS_RTEE -- uid: Unix.Terminal.Curses.ACS_S1 - name: ACS_S1 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_S1 - commentId: F:Unix.Terminal.Curses.ACS_S1 - fullName: Unix.Terminal.Curses.ACS_S1 - nameWithType: Curses.ACS_S1 -- uid: Unix.Terminal.Curses.ACS_S9 - name: ACS_S9 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_S9 - commentId: F:Unix.Terminal.Curses.ACS_S9 - fullName: Unix.Terminal.Curses.ACS_S9 - nameWithType: Curses.ACS_S9 -- uid: Unix.Terminal.Curses.ACS_TTEE - name: ACS_TTEE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_TTEE - commentId: F:Unix.Terminal.Curses.ACS_TTEE - fullName: Unix.Terminal.Curses.ACS_TTEE - nameWithType: Curses.ACS_TTEE -- uid: Unix.Terminal.Curses.ACS_UARROW - name: ACS_UARROW - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_UARROW - commentId: F:Unix.Terminal.Curses.ACS_UARROW - fullName: Unix.Terminal.Curses.ACS_UARROW - nameWithType: Curses.ACS_UARROW -- uid: Unix.Terminal.Curses.ACS_ULCORNER - name: ACS_ULCORNER - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_ULCORNER - commentId: F:Unix.Terminal.Curses.ACS_ULCORNER - fullName: Unix.Terminal.Curses.ACS_ULCORNER - nameWithType: Curses.ACS_ULCORNER -- uid: Unix.Terminal.Curses.ACS_URCORNER - name: ACS_URCORNER - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_URCORNER - commentId: F:Unix.Terminal.Curses.ACS_URCORNER - fullName: Unix.Terminal.Curses.ACS_URCORNER - nameWithType: Curses.ACS_URCORNER -- uid: Unix.Terminal.Curses.ACS_VLINE - name: ACS_VLINE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ACS_VLINE - commentId: F:Unix.Terminal.Curses.ACS_VLINE - fullName: Unix.Terminal.Curses.ACS_VLINE - nameWithType: Curses.ACS_VLINE -- uid: Unix.Terminal.Curses.addch(System.Int32) - name: addch(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_addch_System_Int32_ - commentId: M:Unix.Terminal.Curses.addch(System.Int32) - fullName: Unix.Terminal.Curses.addch(System.Int32) - nameWithType: Curses.addch(Int32) -- uid: Unix.Terminal.Curses.addch* - name: addch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_addch_ - commentId: Overload:Unix.Terminal.Curses.addch - isSpec: "True" - fullName: Unix.Terminal.Curses.addch - nameWithType: Curses.addch -- uid: Unix.Terminal.Curses.addstr(System.String,System.Object[]) - name: addstr(String, Object[]) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_addstr_System_String_System_Object___ - commentId: M:Unix.Terminal.Curses.addstr(System.String,System.Object[]) - name.vb: addstr(String, Object()) - fullName: Unix.Terminal.Curses.addstr(System.String, System.Object[]) - fullName.vb: Unix.Terminal.Curses.addstr(System.String, System.Object()) - nameWithType: Curses.addstr(String, Object[]) - nameWithType.vb: Curses.addstr(String, Object()) -- uid: Unix.Terminal.Curses.addstr* - name: addstr - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_addstr_ - commentId: Overload:Unix.Terminal.Curses.addstr - isSpec: "True" - fullName: Unix.Terminal.Curses.addstr - nameWithType: Curses.addstr -- uid: Unix.Terminal.Curses.addwstr(System.String) - name: addwstr(String) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_addwstr_System_String_ - commentId: M:Unix.Terminal.Curses.addwstr(System.String) - fullName: Unix.Terminal.Curses.addwstr(System.String) - nameWithType: Curses.addwstr(String) -- uid: Unix.Terminal.Curses.addwstr* - name: addwstr - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_addwstr_ - commentId: Overload:Unix.Terminal.Curses.addwstr - isSpec: "True" - fullName: Unix.Terminal.Curses.addwstr - nameWithType: Curses.addwstr -- uid: Unix.Terminal.Curses.AltCtrlKeyEnd - name: AltCtrlKeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltCtrlKeyEnd - commentId: F:Unix.Terminal.Curses.AltCtrlKeyEnd - fullName: Unix.Terminal.Curses.AltCtrlKeyEnd - nameWithType: Curses.AltCtrlKeyEnd -- uid: Unix.Terminal.Curses.AltCtrlKeyHome - name: AltCtrlKeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltCtrlKeyHome - commentId: F:Unix.Terminal.Curses.AltCtrlKeyHome - fullName: Unix.Terminal.Curses.AltCtrlKeyHome - nameWithType: Curses.AltCtrlKeyHome -- uid: Unix.Terminal.Curses.AltCtrlKeyNPage - name: AltCtrlKeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltCtrlKeyNPage - commentId: F:Unix.Terminal.Curses.AltCtrlKeyNPage - fullName: Unix.Terminal.Curses.AltCtrlKeyNPage - nameWithType: Curses.AltCtrlKeyNPage -- uid: Unix.Terminal.Curses.AltCtrlKeyPPage - name: AltCtrlKeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltCtrlKeyPPage - commentId: F:Unix.Terminal.Curses.AltCtrlKeyPPage - fullName: Unix.Terminal.Curses.AltCtrlKeyPPage - nameWithType: Curses.AltCtrlKeyPPage -- uid: Unix.Terminal.Curses.AltKeyDown - name: AltKeyDown - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyDown - commentId: F:Unix.Terminal.Curses.AltKeyDown - fullName: Unix.Terminal.Curses.AltKeyDown - nameWithType: Curses.AltKeyDown -- uid: Unix.Terminal.Curses.AltKeyEnd - name: AltKeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyEnd - commentId: F:Unix.Terminal.Curses.AltKeyEnd - fullName: Unix.Terminal.Curses.AltKeyEnd - nameWithType: Curses.AltKeyEnd -- uid: Unix.Terminal.Curses.AltKeyHome - name: AltKeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyHome - commentId: F:Unix.Terminal.Curses.AltKeyHome - fullName: Unix.Terminal.Curses.AltKeyHome - nameWithType: Curses.AltKeyHome -- uid: Unix.Terminal.Curses.AltKeyLeft - name: AltKeyLeft - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyLeft - commentId: F:Unix.Terminal.Curses.AltKeyLeft - fullName: Unix.Terminal.Curses.AltKeyLeft - nameWithType: Curses.AltKeyLeft -- uid: Unix.Terminal.Curses.AltKeyNPage - name: AltKeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyNPage - commentId: F:Unix.Terminal.Curses.AltKeyNPage - fullName: Unix.Terminal.Curses.AltKeyNPage - nameWithType: Curses.AltKeyNPage -- uid: Unix.Terminal.Curses.AltKeyPPage - name: AltKeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyPPage - commentId: F:Unix.Terminal.Curses.AltKeyPPage - fullName: Unix.Terminal.Curses.AltKeyPPage - nameWithType: Curses.AltKeyPPage -- uid: Unix.Terminal.Curses.AltKeyRight - name: AltKeyRight - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyRight - commentId: F:Unix.Terminal.Curses.AltKeyRight - fullName: Unix.Terminal.Curses.AltKeyRight - nameWithType: Curses.AltKeyRight -- uid: Unix.Terminal.Curses.AltKeyUp - name: AltKeyUp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_AltKeyUp - commentId: F:Unix.Terminal.Curses.AltKeyUp - fullName: Unix.Terminal.Curses.AltKeyUp - nameWithType: Curses.AltKeyUp -- uid: Unix.Terminal.Curses.attroff(System.Int32) - name: attroff(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_attroff_System_Int32_ - commentId: M:Unix.Terminal.Curses.attroff(System.Int32) - fullName: Unix.Terminal.Curses.attroff(System.Int32) - nameWithType: Curses.attroff(Int32) -- uid: Unix.Terminal.Curses.attroff* - name: attroff - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_attroff_ - commentId: Overload:Unix.Terminal.Curses.attroff - isSpec: "True" - fullName: Unix.Terminal.Curses.attroff - nameWithType: Curses.attroff -- uid: Unix.Terminal.Curses.attron(System.Int32) - name: attron(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_attron_System_Int32_ - commentId: M:Unix.Terminal.Curses.attron(System.Int32) - fullName: Unix.Terminal.Curses.attron(System.Int32) - nameWithType: Curses.attron(Int32) -- uid: Unix.Terminal.Curses.attron* - name: attron - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_attron_ - commentId: Overload:Unix.Terminal.Curses.attron - isSpec: "True" - fullName: Unix.Terminal.Curses.attron - nameWithType: Curses.attron -- uid: Unix.Terminal.Curses.attrset(System.Int32) - name: attrset(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_attrset_System_Int32_ - commentId: M:Unix.Terminal.Curses.attrset(System.Int32) - fullName: Unix.Terminal.Curses.attrset(System.Int32) - nameWithType: Curses.attrset(Int32) -- uid: Unix.Terminal.Curses.attrset* - name: attrset - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_attrset_ - commentId: Overload:Unix.Terminal.Curses.attrset - isSpec: "True" - fullName: Unix.Terminal.Curses.attrset - nameWithType: Curses.attrset -- uid: Unix.Terminal.Curses.cbreak - name: cbreak() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_cbreak - commentId: M:Unix.Terminal.Curses.cbreak - fullName: Unix.Terminal.Curses.cbreak() - nameWithType: Curses.cbreak() -- uid: Unix.Terminal.Curses.cbreak* - name: cbreak - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_cbreak_ - commentId: Overload:Unix.Terminal.Curses.cbreak - isSpec: "True" - fullName: Unix.Terminal.Curses.cbreak - nameWithType: Curses.cbreak -- uid: Unix.Terminal.Curses.CheckWinChange - name: CheckWinChange() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CheckWinChange - commentId: M:Unix.Terminal.Curses.CheckWinChange - fullName: Unix.Terminal.Curses.CheckWinChange() - nameWithType: Curses.CheckWinChange() -- uid: Unix.Terminal.Curses.CheckWinChange* - name: CheckWinChange - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CheckWinChange_ - commentId: Overload:Unix.Terminal.Curses.CheckWinChange - isSpec: "True" - fullName: Unix.Terminal.Curses.CheckWinChange - nameWithType: Curses.CheckWinChange -- uid: Unix.Terminal.Curses.clearok(System.IntPtr,System.Boolean) - name: clearok(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_clearok_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.clearok(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.clearok(System.IntPtr, System.Boolean) - nameWithType: Curses.clearok(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.clearok* - name: clearok - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_clearok_ - commentId: Overload:Unix.Terminal.Curses.clearok - isSpec: "True" - fullName: Unix.Terminal.Curses.clearok - nameWithType: Curses.clearok -- uid: Unix.Terminal.Curses.COLOR_BLACK - name: COLOR_BLACK - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_BLACK - commentId: F:Unix.Terminal.Curses.COLOR_BLACK - fullName: Unix.Terminal.Curses.COLOR_BLACK - nameWithType: Curses.COLOR_BLACK -- uid: Unix.Terminal.Curses.COLOR_BLUE - name: COLOR_BLUE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_BLUE - commentId: F:Unix.Terminal.Curses.COLOR_BLUE - fullName: Unix.Terminal.Curses.COLOR_BLUE - nameWithType: Curses.COLOR_BLUE -- uid: Unix.Terminal.Curses.COLOR_CYAN - name: COLOR_CYAN - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_CYAN - commentId: F:Unix.Terminal.Curses.COLOR_CYAN - fullName: Unix.Terminal.Curses.COLOR_CYAN - nameWithType: Curses.COLOR_CYAN -- uid: Unix.Terminal.Curses.COLOR_GRAY - name: COLOR_GRAY - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_GRAY - commentId: F:Unix.Terminal.Curses.COLOR_GRAY - fullName: Unix.Terminal.Curses.COLOR_GRAY - nameWithType: Curses.COLOR_GRAY -- uid: Unix.Terminal.Curses.COLOR_GREEN - name: COLOR_GREEN - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_GREEN - commentId: F:Unix.Terminal.Curses.COLOR_GREEN - fullName: Unix.Terminal.Curses.COLOR_GREEN - nameWithType: Curses.COLOR_GREEN -- uid: Unix.Terminal.Curses.COLOR_MAGENTA - name: COLOR_MAGENTA - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_MAGENTA - commentId: F:Unix.Terminal.Curses.COLOR_MAGENTA - fullName: Unix.Terminal.Curses.COLOR_MAGENTA - nameWithType: Curses.COLOR_MAGENTA -- uid: Unix.Terminal.Curses.COLOR_PAIRS - name: COLOR_PAIRS() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_PAIRS - commentId: M:Unix.Terminal.Curses.COLOR_PAIRS - fullName: Unix.Terminal.Curses.COLOR_PAIRS() - nameWithType: Curses.COLOR_PAIRS() -- uid: Unix.Terminal.Curses.COLOR_PAIRS* - name: COLOR_PAIRS - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_PAIRS_ - commentId: Overload:Unix.Terminal.Curses.COLOR_PAIRS - isSpec: "True" - fullName: Unix.Terminal.Curses.COLOR_PAIRS - nameWithType: Curses.COLOR_PAIRS -- uid: Unix.Terminal.Curses.COLOR_RED - name: COLOR_RED - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_RED - commentId: F:Unix.Terminal.Curses.COLOR_RED - fullName: Unix.Terminal.Curses.COLOR_RED - nameWithType: Curses.COLOR_RED -- uid: Unix.Terminal.Curses.COLOR_WHITE - name: COLOR_WHITE - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_WHITE - commentId: F:Unix.Terminal.Curses.COLOR_WHITE - fullName: Unix.Terminal.Curses.COLOR_WHITE - nameWithType: Curses.COLOR_WHITE -- uid: Unix.Terminal.Curses.COLOR_YELLOW - name: COLOR_YELLOW - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_COLOR_YELLOW - commentId: F:Unix.Terminal.Curses.COLOR_YELLOW - fullName: Unix.Terminal.Curses.COLOR_YELLOW - nameWithType: Curses.COLOR_YELLOW -- uid: Unix.Terminal.Curses.ColorPair(System.Int32) - name: ColorPair(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ColorPair_System_Int32_ - commentId: M:Unix.Terminal.Curses.ColorPair(System.Int32) - fullName: Unix.Terminal.Curses.ColorPair(System.Int32) - nameWithType: Curses.ColorPair(Int32) -- uid: Unix.Terminal.Curses.ColorPair* - name: ColorPair - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ColorPair_ - commentId: Overload:Unix.Terminal.Curses.ColorPair - isSpec: "True" - fullName: Unix.Terminal.Curses.ColorPair - nameWithType: Curses.ColorPair -- uid: Unix.Terminal.Curses.ColorPairs - name: ColorPairs - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ColorPairs - commentId: P:Unix.Terminal.Curses.ColorPairs - fullName: Unix.Terminal.Curses.ColorPairs - nameWithType: Curses.ColorPairs -- uid: Unix.Terminal.Curses.ColorPairs* - name: ColorPairs - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ColorPairs_ - commentId: Overload:Unix.Terminal.Curses.ColorPairs - isSpec: "True" - fullName: Unix.Terminal.Curses.ColorPairs - nameWithType: Curses.ColorPairs -- uid: Unix.Terminal.Curses.Cols - name: Cols - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_Cols - commentId: P:Unix.Terminal.Curses.Cols - fullName: Unix.Terminal.Curses.Cols - nameWithType: Curses.Cols -- uid: Unix.Terminal.Curses.Cols* - name: Cols - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_Cols_ - commentId: Overload:Unix.Terminal.Curses.Cols - isSpec: "True" - fullName: Unix.Terminal.Curses.Cols - nameWithType: Curses.Cols -- uid: Unix.Terminal.Curses.CtrlKeyDown - name: CtrlKeyDown - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyDown - commentId: F:Unix.Terminal.Curses.CtrlKeyDown - fullName: Unix.Terminal.Curses.CtrlKeyDown - nameWithType: Curses.CtrlKeyDown -- uid: Unix.Terminal.Curses.CtrlKeyEnd - name: CtrlKeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyEnd - commentId: F:Unix.Terminal.Curses.CtrlKeyEnd - fullName: Unix.Terminal.Curses.CtrlKeyEnd - nameWithType: Curses.CtrlKeyEnd -- uid: Unix.Terminal.Curses.CtrlKeyHome - name: CtrlKeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyHome - commentId: F:Unix.Terminal.Curses.CtrlKeyHome - fullName: Unix.Terminal.Curses.CtrlKeyHome - nameWithType: Curses.CtrlKeyHome -- uid: Unix.Terminal.Curses.CtrlKeyLeft - name: CtrlKeyLeft - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyLeft - commentId: F:Unix.Terminal.Curses.CtrlKeyLeft - fullName: Unix.Terminal.Curses.CtrlKeyLeft - nameWithType: Curses.CtrlKeyLeft -- uid: Unix.Terminal.Curses.CtrlKeyNPage - name: CtrlKeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyNPage - commentId: F:Unix.Terminal.Curses.CtrlKeyNPage - fullName: Unix.Terminal.Curses.CtrlKeyNPage - nameWithType: Curses.CtrlKeyNPage -- uid: Unix.Terminal.Curses.CtrlKeyPPage - name: CtrlKeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyPPage - commentId: F:Unix.Terminal.Curses.CtrlKeyPPage - fullName: Unix.Terminal.Curses.CtrlKeyPPage - nameWithType: Curses.CtrlKeyPPage -- uid: Unix.Terminal.Curses.CtrlKeyRight - name: CtrlKeyRight - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyRight - commentId: F:Unix.Terminal.Curses.CtrlKeyRight - fullName: Unix.Terminal.Curses.CtrlKeyRight - nameWithType: Curses.CtrlKeyRight -- uid: Unix.Terminal.Curses.CtrlKeyUp - name: CtrlKeyUp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_CtrlKeyUp - commentId: F:Unix.Terminal.Curses.CtrlKeyUp - fullName: Unix.Terminal.Curses.CtrlKeyUp - nameWithType: Curses.CtrlKeyUp -- uid: Unix.Terminal.Curses.curs_set(System.Int32) - name: curs_set(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_curs_set_System_Int32_ - commentId: M:Unix.Terminal.Curses.curs_set(System.Int32) - fullName: Unix.Terminal.Curses.curs_set(System.Int32) - nameWithType: Curses.curs_set(Int32) -- uid: Unix.Terminal.Curses.curs_set* - name: curs_set - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_curs_set_ - commentId: Overload:Unix.Terminal.Curses.curs_set - isSpec: "True" - fullName: Unix.Terminal.Curses.curs_set - nameWithType: Curses.curs_set -- uid: Unix.Terminal.Curses.def_prog_mode - name: def_prog_mode() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_def_prog_mode - commentId: M:Unix.Terminal.Curses.def_prog_mode - fullName: Unix.Terminal.Curses.def_prog_mode() - nameWithType: Curses.def_prog_mode() -- uid: Unix.Terminal.Curses.def_prog_mode* - name: def_prog_mode - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_def_prog_mode_ - commentId: Overload:Unix.Terminal.Curses.def_prog_mode - isSpec: "True" - fullName: Unix.Terminal.Curses.def_prog_mode - nameWithType: Curses.def_prog_mode -- uid: Unix.Terminal.Curses.def_shell_mode - name: def_shell_mode() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_def_shell_mode - commentId: M:Unix.Terminal.Curses.def_shell_mode - fullName: Unix.Terminal.Curses.def_shell_mode() - nameWithType: Curses.def_shell_mode() -- uid: Unix.Terminal.Curses.def_shell_mode* - name: def_shell_mode - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_def_shell_mode_ - commentId: Overload:Unix.Terminal.Curses.def_shell_mode - isSpec: "True" - fullName: Unix.Terminal.Curses.def_shell_mode - nameWithType: Curses.def_shell_mode -- uid: Unix.Terminal.Curses.doupdate - name: doupdate() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_doupdate - commentId: M:Unix.Terminal.Curses.doupdate - fullName: Unix.Terminal.Curses.doupdate() - nameWithType: Curses.doupdate() -- uid: Unix.Terminal.Curses.doupdate* - name: doupdate - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_doupdate_ - commentId: Overload:Unix.Terminal.Curses.doupdate - isSpec: "True" - fullName: Unix.Terminal.Curses.doupdate - nameWithType: Curses.doupdate -- uid: Unix.Terminal.Curses.DownEnd - name: DownEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_DownEnd - commentId: F:Unix.Terminal.Curses.DownEnd - fullName: Unix.Terminal.Curses.DownEnd - nameWithType: Curses.DownEnd -- uid: Unix.Terminal.Curses.echo - name: echo() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_echo - commentId: M:Unix.Terminal.Curses.echo - fullName: Unix.Terminal.Curses.echo() - nameWithType: Curses.echo() -- uid: Unix.Terminal.Curses.echo* - name: echo - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_echo_ - commentId: Overload:Unix.Terminal.Curses.echo - isSpec: "True" - fullName: Unix.Terminal.Curses.echo - nameWithType: Curses.echo -- uid: Unix.Terminal.Curses.endwin - name: endwin() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_endwin - commentId: M:Unix.Terminal.Curses.endwin - fullName: Unix.Terminal.Curses.endwin() - nameWithType: Curses.endwin() -- uid: Unix.Terminal.Curses.endwin* - name: endwin - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_endwin_ - commentId: Overload:Unix.Terminal.Curses.endwin - isSpec: "True" - fullName: Unix.Terminal.Curses.endwin - nameWithType: Curses.endwin -- uid: Unix.Terminal.Curses.ERR - name: ERR - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ERR - commentId: F:Unix.Terminal.Curses.ERR - fullName: Unix.Terminal.Curses.ERR - nameWithType: Curses.ERR -- uid: Unix.Terminal.Curses.Event - name: Curses.Event - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html - commentId: T:Unix.Terminal.Curses.Event - fullName: Unix.Terminal.Curses.Event - nameWithType: Curses.Event -- uid: Unix.Terminal.Curses.Event.AllEvents - name: AllEvents - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_AllEvents - commentId: F:Unix.Terminal.Curses.Event.AllEvents - fullName: Unix.Terminal.Curses.Event.AllEvents - nameWithType: Curses.Event.AllEvents -- uid: Unix.Terminal.Curses.Event.Button1Clicked - name: Button1Clicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button1Clicked - commentId: F:Unix.Terminal.Curses.Event.Button1Clicked - fullName: Unix.Terminal.Curses.Event.Button1Clicked - nameWithType: Curses.Event.Button1Clicked -- uid: Unix.Terminal.Curses.Event.Button1DoubleClicked - name: Button1DoubleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button1DoubleClicked - commentId: F:Unix.Terminal.Curses.Event.Button1DoubleClicked - fullName: Unix.Terminal.Curses.Event.Button1DoubleClicked - nameWithType: Curses.Event.Button1DoubleClicked -- uid: Unix.Terminal.Curses.Event.Button1Pressed - name: Button1Pressed - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button1Pressed - commentId: F:Unix.Terminal.Curses.Event.Button1Pressed - fullName: Unix.Terminal.Curses.Event.Button1Pressed - nameWithType: Curses.Event.Button1Pressed -- uid: Unix.Terminal.Curses.Event.Button1Released - name: Button1Released - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button1Released - commentId: F:Unix.Terminal.Curses.Event.Button1Released - fullName: Unix.Terminal.Curses.Event.Button1Released - nameWithType: Curses.Event.Button1Released -- uid: Unix.Terminal.Curses.Event.Button1TripleClicked - name: Button1TripleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button1TripleClicked - commentId: F:Unix.Terminal.Curses.Event.Button1TripleClicked - fullName: Unix.Terminal.Curses.Event.Button1TripleClicked - nameWithType: Curses.Event.Button1TripleClicked -- uid: Unix.Terminal.Curses.Event.Button2Clicked - name: Button2Clicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button2Clicked - commentId: F:Unix.Terminal.Curses.Event.Button2Clicked - fullName: Unix.Terminal.Curses.Event.Button2Clicked - nameWithType: Curses.Event.Button2Clicked -- uid: Unix.Terminal.Curses.Event.Button2DoubleClicked - name: Button2DoubleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button2DoubleClicked - commentId: F:Unix.Terminal.Curses.Event.Button2DoubleClicked - fullName: Unix.Terminal.Curses.Event.Button2DoubleClicked - nameWithType: Curses.Event.Button2DoubleClicked -- uid: Unix.Terminal.Curses.Event.Button2Pressed - name: Button2Pressed - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button2Pressed - commentId: F:Unix.Terminal.Curses.Event.Button2Pressed - fullName: Unix.Terminal.Curses.Event.Button2Pressed - nameWithType: Curses.Event.Button2Pressed -- uid: Unix.Terminal.Curses.Event.Button2Released - name: Button2Released - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button2Released - commentId: F:Unix.Terminal.Curses.Event.Button2Released - fullName: Unix.Terminal.Curses.Event.Button2Released - nameWithType: Curses.Event.Button2Released -- uid: Unix.Terminal.Curses.Event.Button2TrippleClicked - name: Button2TrippleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button2TrippleClicked - commentId: F:Unix.Terminal.Curses.Event.Button2TrippleClicked - fullName: Unix.Terminal.Curses.Event.Button2TrippleClicked - nameWithType: Curses.Event.Button2TrippleClicked -- uid: Unix.Terminal.Curses.Event.Button3Clicked - name: Button3Clicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button3Clicked - commentId: F:Unix.Terminal.Curses.Event.Button3Clicked - fullName: Unix.Terminal.Curses.Event.Button3Clicked - nameWithType: Curses.Event.Button3Clicked -- uid: Unix.Terminal.Curses.Event.Button3DoubleClicked - name: Button3DoubleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button3DoubleClicked - commentId: F:Unix.Terminal.Curses.Event.Button3DoubleClicked - fullName: Unix.Terminal.Curses.Event.Button3DoubleClicked - nameWithType: Curses.Event.Button3DoubleClicked -- uid: Unix.Terminal.Curses.Event.Button3Pressed - name: Button3Pressed - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button3Pressed - commentId: F:Unix.Terminal.Curses.Event.Button3Pressed - fullName: Unix.Terminal.Curses.Event.Button3Pressed - nameWithType: Curses.Event.Button3Pressed -- uid: Unix.Terminal.Curses.Event.Button3Released - name: Button3Released - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button3Released - commentId: F:Unix.Terminal.Curses.Event.Button3Released - fullName: Unix.Terminal.Curses.Event.Button3Released - nameWithType: Curses.Event.Button3Released -- uid: Unix.Terminal.Curses.Event.Button3TripleClicked - name: Button3TripleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button3TripleClicked - commentId: F:Unix.Terminal.Curses.Event.Button3TripleClicked - fullName: Unix.Terminal.Curses.Event.Button3TripleClicked - nameWithType: Curses.Event.Button3TripleClicked -- uid: Unix.Terminal.Curses.Event.Button4Clicked - name: Button4Clicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button4Clicked - commentId: F:Unix.Terminal.Curses.Event.Button4Clicked - fullName: Unix.Terminal.Curses.Event.Button4Clicked - nameWithType: Curses.Event.Button4Clicked -- uid: Unix.Terminal.Curses.Event.Button4DoubleClicked - name: Button4DoubleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button4DoubleClicked - commentId: F:Unix.Terminal.Curses.Event.Button4DoubleClicked - fullName: Unix.Terminal.Curses.Event.Button4DoubleClicked - nameWithType: Curses.Event.Button4DoubleClicked -- uid: Unix.Terminal.Curses.Event.Button4Pressed - name: Button4Pressed - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button4Pressed - commentId: F:Unix.Terminal.Curses.Event.Button4Pressed - fullName: Unix.Terminal.Curses.Event.Button4Pressed - nameWithType: Curses.Event.Button4Pressed -- uid: Unix.Terminal.Curses.Event.Button4Released - name: Button4Released - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button4Released - commentId: F:Unix.Terminal.Curses.Event.Button4Released - fullName: Unix.Terminal.Curses.Event.Button4Released - nameWithType: Curses.Event.Button4Released -- uid: Unix.Terminal.Curses.Event.Button4TripleClicked - name: Button4TripleClicked - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_Button4TripleClicked - commentId: F:Unix.Terminal.Curses.Event.Button4TripleClicked - fullName: Unix.Terminal.Curses.Event.Button4TripleClicked - nameWithType: Curses.Event.Button4TripleClicked -- uid: Unix.Terminal.Curses.Event.ButtonAlt - name: ButtonAlt - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_ButtonAlt - commentId: F:Unix.Terminal.Curses.Event.ButtonAlt - fullName: Unix.Terminal.Curses.Event.ButtonAlt - nameWithType: Curses.Event.ButtonAlt -- uid: Unix.Terminal.Curses.Event.ButtonCtrl - name: ButtonCtrl - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_ButtonCtrl - commentId: F:Unix.Terminal.Curses.Event.ButtonCtrl - fullName: Unix.Terminal.Curses.Event.ButtonCtrl - nameWithType: Curses.Event.ButtonCtrl -- uid: Unix.Terminal.Curses.Event.ButtonShift - name: ButtonShift - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_ButtonShift - commentId: F:Unix.Terminal.Curses.Event.ButtonShift - fullName: Unix.Terminal.Curses.Event.ButtonShift - nameWithType: Curses.Event.ButtonShift -- uid: Unix.Terminal.Curses.Event.ButtonWheeledDown - name: ButtonWheeledDown - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_ButtonWheeledDown - commentId: F:Unix.Terminal.Curses.Event.ButtonWheeledDown - fullName: Unix.Terminal.Curses.Event.ButtonWheeledDown - nameWithType: Curses.Event.ButtonWheeledDown -- uid: Unix.Terminal.Curses.Event.ButtonWheeledUp - name: ButtonWheeledUp - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_ButtonWheeledUp - commentId: F:Unix.Terminal.Curses.Event.ButtonWheeledUp - fullName: Unix.Terminal.Curses.Event.ButtonWheeledUp - nameWithType: Curses.Event.ButtonWheeledUp -- uid: Unix.Terminal.Curses.Event.ReportMousePosition - name: ReportMousePosition - href: api/Terminal.Gui/Unix.Terminal.Curses.Event.html#Unix_Terminal_Curses_Event_ReportMousePosition - commentId: F:Unix.Terminal.Curses.Event.ReportMousePosition - fullName: Unix.Terminal.Curses.Event.ReportMousePosition - nameWithType: Curses.Event.ReportMousePosition -- uid: Unix.Terminal.Curses.flushinp - name: flushinp() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_flushinp - commentId: M:Unix.Terminal.Curses.flushinp - fullName: Unix.Terminal.Curses.flushinp() - nameWithType: Curses.flushinp() -- uid: Unix.Terminal.Curses.flushinp* - name: flushinp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_flushinp_ - commentId: Overload:Unix.Terminal.Curses.flushinp - isSpec: "True" - fullName: Unix.Terminal.Curses.flushinp - nameWithType: Curses.flushinp -- uid: Unix.Terminal.Curses.get_wch(System.Int32@) - name: get_wch(out Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_get_wch_System_Int32__ - commentId: M:Unix.Terminal.Curses.get_wch(System.Int32@) - name.vb: get_wch(ByRef Int32) - fullName: Unix.Terminal.Curses.get_wch(out System.Int32) - fullName.vb: Unix.Terminal.Curses.get_wch(ByRef System.Int32) - nameWithType: Curses.get_wch(out Int32) - nameWithType.vb: Curses.get_wch(ByRef Int32) -- uid: Unix.Terminal.Curses.get_wch* - name: get_wch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_get_wch_ - commentId: Overload:Unix.Terminal.Curses.get_wch - isSpec: "True" - fullName: Unix.Terminal.Curses.get_wch - nameWithType: Curses.get_wch -- uid: Unix.Terminal.Curses.getch - name: getch() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_getch - commentId: M:Unix.Terminal.Curses.getch - fullName: Unix.Terminal.Curses.getch() - nameWithType: Curses.getch() -- uid: Unix.Terminal.Curses.getch* - name: getch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_getch_ - commentId: Overload:Unix.Terminal.Curses.getch - isSpec: "True" - fullName: Unix.Terminal.Curses.getch - nameWithType: Curses.getch -- uid: Unix.Terminal.Curses.getmouse(Unix.Terminal.Curses.MouseEvent@) - name: getmouse(out Curses.MouseEvent) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_getmouse_Unix_Terminal_Curses_MouseEvent__ - commentId: M:Unix.Terminal.Curses.getmouse(Unix.Terminal.Curses.MouseEvent@) - name.vb: getmouse(ByRef Curses.MouseEvent) - fullName: Unix.Terminal.Curses.getmouse(out Unix.Terminal.Curses.MouseEvent) - fullName.vb: Unix.Terminal.Curses.getmouse(ByRef Unix.Terminal.Curses.MouseEvent) - nameWithType: Curses.getmouse(out Curses.MouseEvent) - nameWithType.vb: Curses.getmouse(ByRef Curses.MouseEvent) -- uid: Unix.Terminal.Curses.getmouse* - name: getmouse - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_getmouse_ - commentId: Overload:Unix.Terminal.Curses.getmouse - isSpec: "True" - fullName: Unix.Terminal.Curses.getmouse - nameWithType: Curses.getmouse -- uid: Unix.Terminal.Curses.halfdelay(System.Int32) - name: halfdelay(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_halfdelay_System_Int32_ - commentId: M:Unix.Terminal.Curses.halfdelay(System.Int32) - fullName: Unix.Terminal.Curses.halfdelay(System.Int32) - nameWithType: Curses.halfdelay(Int32) -- uid: Unix.Terminal.Curses.halfdelay* - name: halfdelay - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_halfdelay_ - commentId: Overload:Unix.Terminal.Curses.halfdelay - isSpec: "True" - fullName: Unix.Terminal.Curses.halfdelay - nameWithType: Curses.halfdelay -- uid: Unix.Terminal.Curses.has_colors - name: has_colors() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_has_colors - commentId: M:Unix.Terminal.Curses.has_colors - fullName: Unix.Terminal.Curses.has_colors() - nameWithType: Curses.has_colors() -- uid: Unix.Terminal.Curses.has_colors* - name: has_colors - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_has_colors_ - commentId: Overload:Unix.Terminal.Curses.has_colors - isSpec: "True" - fullName: Unix.Terminal.Curses.has_colors - nameWithType: Curses.has_colors -- uid: Unix.Terminal.Curses.HasColors - name: HasColors - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_HasColors - commentId: P:Unix.Terminal.Curses.HasColors - fullName: Unix.Terminal.Curses.HasColors - nameWithType: Curses.HasColors -- uid: Unix.Terminal.Curses.HasColors* - name: HasColors - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_HasColors_ - commentId: Overload:Unix.Terminal.Curses.HasColors - isSpec: "True" - fullName: Unix.Terminal.Curses.HasColors - nameWithType: Curses.HasColors -- uid: Unix.Terminal.Curses.Home - name: Home - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_Home - commentId: F:Unix.Terminal.Curses.Home - fullName: Unix.Terminal.Curses.Home - nameWithType: Curses.Home -- uid: Unix.Terminal.Curses.idcok(System.IntPtr,System.Boolean) - name: idcok(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_idcok_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.idcok(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.idcok(System.IntPtr, System.Boolean) - nameWithType: Curses.idcok(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.idcok* - name: idcok - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_idcok_ - commentId: Overload:Unix.Terminal.Curses.idcok - isSpec: "True" - fullName: Unix.Terminal.Curses.idcok - nameWithType: Curses.idcok -- uid: Unix.Terminal.Curses.idlok(System.IntPtr,System.Boolean) - name: idlok(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_idlok_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.idlok(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.idlok(System.IntPtr, System.Boolean) - nameWithType: Curses.idlok(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.idlok* - name: idlok - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_idlok_ - commentId: Overload:Unix.Terminal.Curses.idlok - isSpec: "True" - fullName: Unix.Terminal.Curses.idlok - nameWithType: Curses.idlok -- uid: Unix.Terminal.Curses.immedok(System.IntPtr,System.Boolean) - name: immedok(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_immedok_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.immedok(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.immedok(System.IntPtr, System.Boolean) - nameWithType: Curses.immedok(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.immedok* - name: immedok - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_immedok_ - commentId: Overload:Unix.Terminal.Curses.immedok - isSpec: "True" - fullName: Unix.Terminal.Curses.immedok - nameWithType: Curses.immedok -- uid: Unix.Terminal.Curses.init_pair(System.Int16,System.Int16,System.Int16) - name: init_pair(Int16, Int16, Int16) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_init_pair_System_Int16_System_Int16_System_Int16_ - commentId: M:Unix.Terminal.Curses.init_pair(System.Int16,System.Int16,System.Int16) - fullName: Unix.Terminal.Curses.init_pair(System.Int16, System.Int16, System.Int16) - nameWithType: Curses.init_pair(Int16, Int16, Int16) -- uid: Unix.Terminal.Curses.init_pair* - name: init_pair - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_init_pair_ - commentId: Overload:Unix.Terminal.Curses.init_pair - isSpec: "True" - fullName: Unix.Terminal.Curses.init_pair - nameWithType: Curses.init_pair -- uid: Unix.Terminal.Curses.InitColorPair(System.Int16,System.Int16,System.Int16) - name: InitColorPair(Int16, Int16, Int16) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_InitColorPair_System_Int16_System_Int16_System_Int16_ - commentId: M:Unix.Terminal.Curses.InitColorPair(System.Int16,System.Int16,System.Int16) - fullName: Unix.Terminal.Curses.InitColorPair(System.Int16, System.Int16, System.Int16) - nameWithType: Curses.InitColorPair(Int16, Int16, Int16) -- uid: Unix.Terminal.Curses.InitColorPair* - name: InitColorPair - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_InitColorPair_ - commentId: Overload:Unix.Terminal.Curses.InitColorPair - isSpec: "True" - fullName: Unix.Terminal.Curses.InitColorPair - nameWithType: Curses.InitColorPair -- uid: Unix.Terminal.Curses.initscr - name: initscr() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_initscr - commentId: M:Unix.Terminal.Curses.initscr - fullName: Unix.Terminal.Curses.initscr() - nameWithType: Curses.initscr() -- uid: Unix.Terminal.Curses.initscr* - name: initscr - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_initscr_ - commentId: Overload:Unix.Terminal.Curses.initscr - isSpec: "True" - fullName: Unix.Terminal.Curses.initscr - nameWithType: Curses.initscr -- uid: Unix.Terminal.Curses.intrflush(System.IntPtr,System.Boolean) - name: intrflush(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_intrflush_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.intrflush(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.intrflush(System.IntPtr, System.Boolean) - nameWithType: Curses.intrflush(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.intrflush* - name: intrflush - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_intrflush_ - commentId: Overload:Unix.Terminal.Curses.intrflush - isSpec: "True" - fullName: Unix.Terminal.Curses.intrflush - nameWithType: Curses.intrflush -- uid: Unix.Terminal.Curses.is_term_resized(System.Int32,System.Int32) - name: is_term_resized(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_is_term_resized_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.is_term_resized(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.is_term_resized(System.Int32, System.Int32) - nameWithType: Curses.is_term_resized(Int32, Int32) -- uid: Unix.Terminal.Curses.is_term_resized* - name: is_term_resized - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_is_term_resized_ - commentId: Overload:Unix.Terminal.Curses.is_term_resized - isSpec: "True" - fullName: Unix.Terminal.Curses.is_term_resized - nameWithType: Curses.is_term_resized -- uid: Unix.Terminal.Curses.IsAlt(System.Int32) - name: IsAlt(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_IsAlt_System_Int32_ - commentId: M:Unix.Terminal.Curses.IsAlt(System.Int32) - fullName: Unix.Terminal.Curses.IsAlt(System.Int32) - nameWithType: Curses.IsAlt(Int32) -- uid: Unix.Terminal.Curses.IsAlt* - name: IsAlt - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_IsAlt_ - commentId: Overload:Unix.Terminal.Curses.IsAlt - isSpec: "True" - fullName: Unix.Terminal.Curses.IsAlt - nameWithType: Curses.IsAlt -- uid: Unix.Terminal.Curses.isendwin - name: isendwin() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_isendwin - commentId: M:Unix.Terminal.Curses.isendwin - fullName: Unix.Terminal.Curses.isendwin() - nameWithType: Curses.isendwin() -- uid: Unix.Terminal.Curses.isendwin* - name: isendwin - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_isendwin_ - commentId: Overload:Unix.Terminal.Curses.isendwin - isSpec: "True" - fullName: Unix.Terminal.Curses.isendwin - nameWithType: Curses.isendwin -- uid: Unix.Terminal.Curses.KEY_CODE_SEQ - name: KEY_CODE_SEQ - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KEY_CODE_SEQ - commentId: F:Unix.Terminal.Curses.KEY_CODE_SEQ - fullName: Unix.Terminal.Curses.KEY_CODE_SEQ - nameWithType: Curses.KEY_CODE_SEQ -- uid: Unix.Terminal.Curses.KEY_CODE_YES - name: KEY_CODE_YES - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KEY_CODE_YES - commentId: F:Unix.Terminal.Curses.KEY_CODE_YES - fullName: Unix.Terminal.Curses.KEY_CODE_YES - nameWithType: Curses.KEY_CODE_YES -- uid: Unix.Terminal.Curses.KeyAlt - name: KeyAlt - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyAlt - commentId: F:Unix.Terminal.Curses.KeyAlt - fullName: Unix.Terminal.Curses.KeyAlt - nameWithType: Curses.KeyAlt -- uid: Unix.Terminal.Curses.KeyBackspace - name: KeyBackspace - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyBackspace - commentId: F:Unix.Terminal.Curses.KeyBackspace - fullName: Unix.Terminal.Curses.KeyBackspace - nameWithType: Curses.KeyBackspace -- uid: Unix.Terminal.Curses.KeyBackTab - name: KeyBackTab - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyBackTab - commentId: F:Unix.Terminal.Curses.KeyBackTab - fullName: Unix.Terminal.Curses.KeyBackTab - nameWithType: Curses.KeyBackTab -- uid: Unix.Terminal.Curses.KeyDeleteChar - name: KeyDeleteChar - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyDeleteChar - commentId: F:Unix.Terminal.Curses.KeyDeleteChar - fullName: Unix.Terminal.Curses.KeyDeleteChar - nameWithType: Curses.KeyDeleteChar -- uid: Unix.Terminal.Curses.KeyDown - name: KeyDown - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyDown - commentId: F:Unix.Terminal.Curses.KeyDown - fullName: Unix.Terminal.Curses.KeyDown - nameWithType: Curses.KeyDown -- uid: Unix.Terminal.Curses.KeyEnd - name: KeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyEnd - commentId: F:Unix.Terminal.Curses.KeyEnd - fullName: Unix.Terminal.Curses.KeyEnd - nameWithType: Curses.KeyEnd -- uid: Unix.Terminal.Curses.KeyF1 - name: KeyF1 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF1 - commentId: F:Unix.Terminal.Curses.KeyF1 - fullName: Unix.Terminal.Curses.KeyF1 - nameWithType: Curses.KeyF1 -- uid: Unix.Terminal.Curses.KeyF10 - name: KeyF10 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF10 - commentId: F:Unix.Terminal.Curses.KeyF10 - fullName: Unix.Terminal.Curses.KeyF10 - nameWithType: Curses.KeyF10 -- uid: Unix.Terminal.Curses.KeyF11 - name: KeyF11 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF11 - commentId: F:Unix.Terminal.Curses.KeyF11 - fullName: Unix.Terminal.Curses.KeyF11 - nameWithType: Curses.KeyF11 -- uid: Unix.Terminal.Curses.KeyF12 - name: KeyF12 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF12 - commentId: F:Unix.Terminal.Curses.KeyF12 - fullName: Unix.Terminal.Curses.KeyF12 - nameWithType: Curses.KeyF12 -- uid: Unix.Terminal.Curses.KeyF2 - name: KeyF2 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF2 - commentId: F:Unix.Terminal.Curses.KeyF2 - fullName: Unix.Terminal.Curses.KeyF2 - nameWithType: Curses.KeyF2 -- uid: Unix.Terminal.Curses.KeyF3 - name: KeyF3 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF3 - commentId: F:Unix.Terminal.Curses.KeyF3 - fullName: Unix.Terminal.Curses.KeyF3 - nameWithType: Curses.KeyF3 -- uid: Unix.Terminal.Curses.KeyF4 - name: KeyF4 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF4 - commentId: F:Unix.Terminal.Curses.KeyF4 - fullName: Unix.Terminal.Curses.KeyF4 - nameWithType: Curses.KeyF4 -- uid: Unix.Terminal.Curses.KeyF5 - name: KeyF5 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF5 - commentId: F:Unix.Terminal.Curses.KeyF5 - fullName: Unix.Terminal.Curses.KeyF5 - nameWithType: Curses.KeyF5 -- uid: Unix.Terminal.Curses.KeyF6 - name: KeyF6 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF6 - commentId: F:Unix.Terminal.Curses.KeyF6 - fullName: Unix.Terminal.Curses.KeyF6 - nameWithType: Curses.KeyF6 -- uid: Unix.Terminal.Curses.KeyF7 - name: KeyF7 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF7 - commentId: F:Unix.Terminal.Curses.KeyF7 - fullName: Unix.Terminal.Curses.KeyF7 - nameWithType: Curses.KeyF7 -- uid: Unix.Terminal.Curses.KeyF8 - name: KeyF8 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF8 - commentId: F:Unix.Terminal.Curses.KeyF8 - fullName: Unix.Terminal.Curses.KeyF8 - nameWithType: Curses.KeyF8 -- uid: Unix.Terminal.Curses.KeyF9 - name: KeyF9 - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyF9 - commentId: F:Unix.Terminal.Curses.KeyF9 - fullName: Unix.Terminal.Curses.KeyF9 - nameWithType: Curses.KeyF9 -- uid: Unix.Terminal.Curses.KeyHome - name: KeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyHome - commentId: F:Unix.Terminal.Curses.KeyHome - fullName: Unix.Terminal.Curses.KeyHome - nameWithType: Curses.KeyHome -- uid: Unix.Terminal.Curses.KeyInsertChar - name: KeyInsertChar - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyInsertChar - commentId: F:Unix.Terminal.Curses.KeyInsertChar - fullName: Unix.Terminal.Curses.KeyInsertChar - nameWithType: Curses.KeyInsertChar -- uid: Unix.Terminal.Curses.KeyLeft - name: KeyLeft - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyLeft - commentId: F:Unix.Terminal.Curses.KeyLeft - fullName: Unix.Terminal.Curses.KeyLeft - nameWithType: Curses.KeyLeft -- uid: Unix.Terminal.Curses.KeyMouse - name: KeyMouse - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyMouse - commentId: F:Unix.Terminal.Curses.KeyMouse - fullName: Unix.Terminal.Curses.KeyMouse - nameWithType: Curses.KeyMouse -- uid: Unix.Terminal.Curses.KeyNPage - name: KeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyNPage - commentId: F:Unix.Terminal.Curses.KeyNPage - fullName: Unix.Terminal.Curses.KeyNPage - nameWithType: Curses.KeyNPage -- uid: Unix.Terminal.Curses.keypad(System.IntPtr,System.Boolean) - name: keypad(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_keypad_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.keypad(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.keypad(System.IntPtr, System.Boolean) - nameWithType: Curses.keypad(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.keypad* - name: keypad - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_keypad_ - commentId: Overload:Unix.Terminal.Curses.keypad - isSpec: "True" - fullName: Unix.Terminal.Curses.keypad - nameWithType: Curses.keypad -- uid: Unix.Terminal.Curses.KeyPPage - name: KeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyPPage - commentId: F:Unix.Terminal.Curses.KeyPPage - fullName: Unix.Terminal.Curses.KeyPPage - nameWithType: Curses.KeyPPage -- uid: Unix.Terminal.Curses.KeyResize - name: KeyResize - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyResize - commentId: F:Unix.Terminal.Curses.KeyResize - fullName: Unix.Terminal.Curses.KeyResize - nameWithType: Curses.KeyResize -- uid: Unix.Terminal.Curses.KeyRight - name: KeyRight - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyRight - commentId: F:Unix.Terminal.Curses.KeyRight - fullName: Unix.Terminal.Curses.KeyRight - nameWithType: Curses.KeyRight -- uid: Unix.Terminal.Curses.KeyTab - name: KeyTab - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyTab - commentId: F:Unix.Terminal.Curses.KeyTab - fullName: Unix.Terminal.Curses.KeyTab - nameWithType: Curses.KeyTab -- uid: Unix.Terminal.Curses.KeyUp - name: KeyUp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_KeyUp - commentId: F:Unix.Terminal.Curses.KeyUp - fullName: Unix.Terminal.Curses.KeyUp - nameWithType: Curses.KeyUp -- uid: Unix.Terminal.Curses.LC_ALL - name: LC_ALL - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_LC_ALL - commentId: P:Unix.Terminal.Curses.LC_ALL - fullName: Unix.Terminal.Curses.LC_ALL - nameWithType: Curses.LC_ALL -- uid: Unix.Terminal.Curses.LC_ALL* - name: LC_ALL - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_LC_ALL_ - commentId: Overload:Unix.Terminal.Curses.LC_ALL - isSpec: "True" - fullName: Unix.Terminal.Curses.LC_ALL - nameWithType: Curses.LC_ALL -- uid: Unix.Terminal.Curses.leaveok(System.IntPtr,System.Boolean) - name: leaveok(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_leaveok_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.leaveok(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.leaveok(System.IntPtr, System.Boolean) - nameWithType: Curses.leaveok(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.leaveok* - name: leaveok - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_leaveok_ - commentId: Overload:Unix.Terminal.Curses.leaveok - isSpec: "True" - fullName: Unix.Terminal.Curses.leaveok - nameWithType: Curses.leaveok -- uid: Unix.Terminal.Curses.LeftRightUpNPagePPage - name: LeftRightUpNPagePPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_LeftRightUpNPagePPage - commentId: F:Unix.Terminal.Curses.LeftRightUpNPagePPage - fullName: Unix.Terminal.Curses.LeftRightUpNPagePPage - nameWithType: Curses.LeftRightUpNPagePPage -- uid: Unix.Terminal.Curses.Lines - name: Lines - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_Lines - commentId: P:Unix.Terminal.Curses.Lines - fullName: Unix.Terminal.Curses.Lines - nameWithType: Curses.Lines -- uid: Unix.Terminal.Curses.Lines* - name: Lines - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_Lines_ - commentId: Overload:Unix.Terminal.Curses.Lines - isSpec: "True" - fullName: Unix.Terminal.Curses.Lines - nameWithType: Curses.Lines -- uid: Unix.Terminal.Curses.meta(System.IntPtr,System.Boolean) - name: meta(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_meta_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.meta(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.meta(System.IntPtr, System.Boolean) - nameWithType: Curses.meta(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.meta* - name: meta - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_meta_ - commentId: Overload:Unix.Terminal.Curses.meta - isSpec: "True" - fullName: Unix.Terminal.Curses.meta - nameWithType: Curses.meta -- uid: Unix.Terminal.Curses.MouseEvent - name: Curses.MouseEvent - href: api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html - commentId: T:Unix.Terminal.Curses.MouseEvent - fullName: Unix.Terminal.Curses.MouseEvent - nameWithType: Curses.MouseEvent -- uid: Unix.Terminal.Curses.MouseEvent.ButtonState - name: ButtonState - href: api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html#Unix_Terminal_Curses_MouseEvent_ButtonState - commentId: F:Unix.Terminal.Curses.MouseEvent.ButtonState - fullName: Unix.Terminal.Curses.MouseEvent.ButtonState - nameWithType: Curses.MouseEvent.ButtonState -- uid: Unix.Terminal.Curses.MouseEvent.ID - name: ID - href: api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html#Unix_Terminal_Curses_MouseEvent_ID - commentId: F:Unix.Terminal.Curses.MouseEvent.ID - fullName: Unix.Terminal.Curses.MouseEvent.ID - nameWithType: Curses.MouseEvent.ID -- uid: Unix.Terminal.Curses.MouseEvent.X - name: X - href: api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html#Unix_Terminal_Curses_MouseEvent_X - commentId: F:Unix.Terminal.Curses.MouseEvent.X - fullName: Unix.Terminal.Curses.MouseEvent.X - nameWithType: Curses.MouseEvent.X -- uid: Unix.Terminal.Curses.MouseEvent.Y - name: Y - href: api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html#Unix_Terminal_Curses_MouseEvent_Y - commentId: F:Unix.Terminal.Curses.MouseEvent.Y - fullName: Unix.Terminal.Curses.MouseEvent.Y - nameWithType: Curses.MouseEvent.Y -- uid: Unix.Terminal.Curses.MouseEvent.Z - name: Z - href: api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html#Unix_Terminal_Curses_MouseEvent_Z - commentId: F:Unix.Terminal.Curses.MouseEvent.Z - fullName: Unix.Terminal.Curses.MouseEvent.Z - nameWithType: Curses.MouseEvent.Z -- uid: Unix.Terminal.Curses.mouseinterval(System.Int32) - name: mouseinterval(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mouseinterval_System_Int32_ - commentId: M:Unix.Terminal.Curses.mouseinterval(System.Int32) - fullName: Unix.Terminal.Curses.mouseinterval(System.Int32) - nameWithType: Curses.mouseinterval(Int32) -- uid: Unix.Terminal.Curses.mouseinterval* - name: mouseinterval - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mouseinterval_ - commentId: Overload:Unix.Terminal.Curses.mouseinterval - isSpec: "True" - fullName: Unix.Terminal.Curses.mouseinterval - nameWithType: Curses.mouseinterval -- uid: Unix.Terminal.Curses.mousemask(Unix.Terminal.Curses.Event,Unix.Terminal.Curses.Event@) - name: mousemask(Curses.Event, out Curses.Event) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mousemask_Unix_Terminal_Curses_Event_Unix_Terminal_Curses_Event__ - commentId: M:Unix.Terminal.Curses.mousemask(Unix.Terminal.Curses.Event,Unix.Terminal.Curses.Event@) - name.vb: mousemask(Curses.Event, ByRef Curses.Event) - fullName: Unix.Terminal.Curses.mousemask(Unix.Terminal.Curses.Event, out Unix.Terminal.Curses.Event) - fullName.vb: Unix.Terminal.Curses.mousemask(Unix.Terminal.Curses.Event, ByRef Unix.Terminal.Curses.Event) - nameWithType: Curses.mousemask(Curses.Event, out Curses.Event) - nameWithType.vb: Curses.mousemask(Curses.Event, ByRef Curses.Event) -- uid: Unix.Terminal.Curses.mousemask* - name: mousemask - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mousemask_ - commentId: Overload:Unix.Terminal.Curses.mousemask - isSpec: "True" - fullName: Unix.Terminal.Curses.mousemask - nameWithType: Curses.mousemask -- uid: Unix.Terminal.Curses.move(System.Int32,System.Int32) - name: move(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_move_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.move(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.move(System.Int32, System.Int32) - nameWithType: Curses.move(Int32, Int32) -- uid: Unix.Terminal.Curses.move* - name: move - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_move_ - commentId: Overload:Unix.Terminal.Curses.move - isSpec: "True" - fullName: Unix.Terminal.Curses.move - nameWithType: Curses.move -- uid: Unix.Terminal.Curses.mvaddch(System.Int32,System.Int32,System.Int32) - name: mvaddch(Int32, Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mvaddch_System_Int32_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.mvaddch(System.Int32,System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.mvaddch(System.Int32, System.Int32, System.Int32) - nameWithType: Curses.mvaddch(Int32, Int32, Int32) -- uid: Unix.Terminal.Curses.mvaddch* - name: mvaddch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mvaddch_ - commentId: Overload:Unix.Terminal.Curses.mvaddch - isSpec: "True" - fullName: Unix.Terminal.Curses.mvaddch - nameWithType: Curses.mvaddch -- uid: Unix.Terminal.Curses.mvaddwstr(System.Int32,System.Int32,System.String) - name: mvaddwstr(Int32, Int32, String) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mvaddwstr_System_Int32_System_Int32_System_String_ - commentId: M:Unix.Terminal.Curses.mvaddwstr(System.Int32,System.Int32,System.String) - fullName: Unix.Terminal.Curses.mvaddwstr(System.Int32, System.Int32, System.String) - nameWithType: Curses.mvaddwstr(Int32, Int32, String) -- uid: Unix.Terminal.Curses.mvaddwstr* - name: mvaddwstr - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mvaddwstr_ - commentId: Overload:Unix.Terminal.Curses.mvaddwstr - isSpec: "True" - fullName: Unix.Terminal.Curses.mvaddwstr - nameWithType: Curses.mvaddwstr -- uid: Unix.Terminal.Curses.mvgetch(System.Int32,System.Int32) - name: mvgetch(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mvgetch_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.mvgetch(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.mvgetch(System.Int32, System.Int32) - nameWithType: Curses.mvgetch(Int32, Int32) -- uid: Unix.Terminal.Curses.mvgetch* - name: mvgetch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_mvgetch_ - commentId: Overload:Unix.Terminal.Curses.mvgetch - isSpec: "True" - fullName: Unix.Terminal.Curses.mvgetch - nameWithType: Curses.mvgetch -- uid: Unix.Terminal.Curses.nl - name: nl() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_nl - commentId: M:Unix.Terminal.Curses.nl - fullName: Unix.Terminal.Curses.nl() - nameWithType: Curses.nl() -- uid: Unix.Terminal.Curses.nl* - name: nl - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_nl_ - commentId: Overload:Unix.Terminal.Curses.nl - isSpec: "True" - fullName: Unix.Terminal.Curses.nl - nameWithType: Curses.nl -- uid: Unix.Terminal.Curses.nocbreak - name: nocbreak() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_nocbreak - commentId: M:Unix.Terminal.Curses.nocbreak - fullName: Unix.Terminal.Curses.nocbreak() - nameWithType: Curses.nocbreak() -- uid: Unix.Terminal.Curses.nocbreak* - name: nocbreak - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_nocbreak_ - commentId: Overload:Unix.Terminal.Curses.nocbreak - isSpec: "True" - fullName: Unix.Terminal.Curses.nocbreak - nameWithType: Curses.nocbreak -- uid: Unix.Terminal.Curses.noecho - name: noecho() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_noecho - commentId: M:Unix.Terminal.Curses.noecho - fullName: Unix.Terminal.Curses.noecho() - nameWithType: Curses.noecho() -- uid: Unix.Terminal.Curses.noecho* - name: noecho - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_noecho_ - commentId: Overload:Unix.Terminal.Curses.noecho - isSpec: "True" - fullName: Unix.Terminal.Curses.noecho - nameWithType: Curses.noecho -- uid: Unix.Terminal.Curses.nonl - name: nonl() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_nonl - commentId: M:Unix.Terminal.Curses.nonl - fullName: Unix.Terminal.Curses.nonl() - nameWithType: Curses.nonl() -- uid: Unix.Terminal.Curses.nonl* - name: nonl - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_nonl_ - commentId: Overload:Unix.Terminal.Curses.nonl - isSpec: "True" - fullName: Unix.Terminal.Curses.nonl - nameWithType: Curses.nonl -- uid: Unix.Terminal.Curses.noqiflush - name: noqiflush() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_noqiflush - commentId: M:Unix.Terminal.Curses.noqiflush - fullName: Unix.Terminal.Curses.noqiflush() - nameWithType: Curses.noqiflush() -- uid: Unix.Terminal.Curses.noqiflush* - name: noqiflush - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_noqiflush_ - commentId: Overload:Unix.Terminal.Curses.noqiflush - isSpec: "True" - fullName: Unix.Terminal.Curses.noqiflush - nameWithType: Curses.noqiflush -- uid: Unix.Terminal.Curses.noraw - name: noraw() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_noraw - commentId: M:Unix.Terminal.Curses.noraw - fullName: Unix.Terminal.Curses.noraw() - nameWithType: Curses.noraw() -- uid: Unix.Terminal.Curses.noraw* - name: noraw - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_noraw_ - commentId: Overload:Unix.Terminal.Curses.noraw - isSpec: "True" - fullName: Unix.Terminal.Curses.noraw - nameWithType: Curses.noraw -- uid: Unix.Terminal.Curses.notimeout(System.IntPtr,System.Boolean) - name: notimeout(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_notimeout_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.notimeout(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.notimeout(System.IntPtr, System.Boolean) - nameWithType: Curses.notimeout(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.notimeout* - name: notimeout - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_notimeout_ - commentId: Overload:Unix.Terminal.Curses.notimeout - isSpec: "True" - fullName: Unix.Terminal.Curses.notimeout - nameWithType: Curses.notimeout -- uid: Unix.Terminal.Curses.qiflush - name: qiflush() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_qiflush - commentId: M:Unix.Terminal.Curses.qiflush - fullName: Unix.Terminal.Curses.qiflush() - nameWithType: Curses.qiflush() -- uid: Unix.Terminal.Curses.qiflush* - name: qiflush - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_qiflush_ - commentId: Overload:Unix.Terminal.Curses.qiflush - isSpec: "True" - fullName: Unix.Terminal.Curses.qiflush - nameWithType: Curses.qiflush -- uid: Unix.Terminal.Curses.raw - name: raw() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_raw - commentId: M:Unix.Terminal.Curses.raw - fullName: Unix.Terminal.Curses.raw() - nameWithType: Curses.raw() -- uid: Unix.Terminal.Curses.raw* - name: raw - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_raw_ - commentId: Overload:Unix.Terminal.Curses.raw - isSpec: "True" - fullName: Unix.Terminal.Curses.raw - nameWithType: Curses.raw -- uid: Unix.Terminal.Curses.redrawwin(System.IntPtr) - name: redrawwin(IntPtr) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_redrawwin_System_IntPtr_ - commentId: M:Unix.Terminal.Curses.redrawwin(System.IntPtr) - fullName: Unix.Terminal.Curses.redrawwin(System.IntPtr) - nameWithType: Curses.redrawwin(IntPtr) -- uid: Unix.Terminal.Curses.redrawwin* - name: redrawwin - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_redrawwin_ - commentId: Overload:Unix.Terminal.Curses.redrawwin - isSpec: "True" - fullName: Unix.Terminal.Curses.redrawwin - nameWithType: Curses.redrawwin -- uid: Unix.Terminal.Curses.refresh - name: refresh() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_refresh - commentId: M:Unix.Terminal.Curses.refresh - fullName: Unix.Terminal.Curses.refresh() - nameWithType: Curses.refresh() -- uid: Unix.Terminal.Curses.refresh* - name: refresh - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_refresh_ - commentId: Overload:Unix.Terminal.Curses.refresh - isSpec: "True" - fullName: Unix.Terminal.Curses.refresh - nameWithType: Curses.refresh -- uid: Unix.Terminal.Curses.reset_prog_mode - name: reset_prog_mode() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_reset_prog_mode - commentId: M:Unix.Terminal.Curses.reset_prog_mode - fullName: Unix.Terminal.Curses.reset_prog_mode() - nameWithType: Curses.reset_prog_mode() -- uid: Unix.Terminal.Curses.reset_prog_mode* - name: reset_prog_mode - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_reset_prog_mode_ - commentId: Overload:Unix.Terminal.Curses.reset_prog_mode - isSpec: "True" - fullName: Unix.Terminal.Curses.reset_prog_mode - nameWithType: Curses.reset_prog_mode -- uid: Unix.Terminal.Curses.reset_shell_mode - name: reset_shell_mode() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_reset_shell_mode - commentId: M:Unix.Terminal.Curses.reset_shell_mode - fullName: Unix.Terminal.Curses.reset_shell_mode() - nameWithType: Curses.reset_shell_mode() -- uid: Unix.Terminal.Curses.reset_shell_mode* - name: reset_shell_mode - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_reset_shell_mode_ - commentId: Overload:Unix.Terminal.Curses.reset_shell_mode - isSpec: "True" - fullName: Unix.Terminal.Curses.reset_shell_mode - nameWithType: Curses.reset_shell_mode -- uid: Unix.Terminal.Curses.resetty - name: resetty() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_resetty - commentId: M:Unix.Terminal.Curses.resetty - fullName: Unix.Terminal.Curses.resetty() - nameWithType: Curses.resetty() -- uid: Unix.Terminal.Curses.resetty* - name: resetty - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_resetty_ - commentId: Overload:Unix.Terminal.Curses.resetty - isSpec: "True" - fullName: Unix.Terminal.Curses.resetty - nameWithType: Curses.resetty -- uid: Unix.Terminal.Curses.resize_term(System.Int32,System.Int32) - name: resize_term(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_resize_term_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.resize_term(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.resize_term(System.Int32, System.Int32) - nameWithType: Curses.resize_term(Int32, Int32) -- uid: Unix.Terminal.Curses.resize_term* - name: resize_term - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_resize_term_ - commentId: Overload:Unix.Terminal.Curses.resize_term - isSpec: "True" - fullName: Unix.Terminal.Curses.resize_term - nameWithType: Curses.resize_term -- uid: Unix.Terminal.Curses.resizeterm(System.Int32,System.Int32) - name: resizeterm(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_resizeterm_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.resizeterm(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.resizeterm(System.Int32, System.Int32) - nameWithType: Curses.resizeterm(Int32, Int32) -- uid: Unix.Terminal.Curses.resizeterm* - name: resizeterm - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_resizeterm_ - commentId: Overload:Unix.Terminal.Curses.resizeterm - isSpec: "True" - fullName: Unix.Terminal.Curses.resizeterm - nameWithType: Curses.resizeterm -- uid: Unix.Terminal.Curses.savetty - name: savetty() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_savetty - commentId: M:Unix.Terminal.Curses.savetty - fullName: Unix.Terminal.Curses.savetty() - nameWithType: Curses.savetty() -- uid: Unix.Terminal.Curses.savetty* - name: savetty - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_savetty_ - commentId: Overload:Unix.Terminal.Curses.savetty - isSpec: "True" - fullName: Unix.Terminal.Curses.savetty - nameWithType: Curses.savetty -- uid: Unix.Terminal.Curses.scrollok(System.IntPtr,System.Boolean) - name: scrollok(IntPtr, Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_scrollok_System_IntPtr_System_Boolean_ - commentId: M:Unix.Terminal.Curses.scrollok(System.IntPtr,System.Boolean) - fullName: Unix.Terminal.Curses.scrollok(System.IntPtr, System.Boolean) - nameWithType: Curses.scrollok(IntPtr, Boolean) -- uid: Unix.Terminal.Curses.scrollok* - name: scrollok - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_scrollok_ - commentId: Overload:Unix.Terminal.Curses.scrollok - isSpec: "True" - fullName: Unix.Terminal.Curses.scrollok - nameWithType: Curses.scrollok -- uid: Unix.Terminal.Curses.set_escdelay(System.Int32) - name: set_escdelay(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_set_escdelay_System_Int32_ - commentId: M:Unix.Terminal.Curses.set_escdelay(System.Int32) - fullName: Unix.Terminal.Curses.set_escdelay(System.Int32) - nameWithType: Curses.set_escdelay(Int32) -- uid: Unix.Terminal.Curses.set_escdelay* - name: set_escdelay - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_set_escdelay_ - commentId: Overload:Unix.Terminal.Curses.set_escdelay - isSpec: "True" - fullName: Unix.Terminal.Curses.set_escdelay - nameWithType: Curses.set_escdelay -- uid: Unix.Terminal.Curses.setlocale(System.Int32,System.String) - name: setlocale(Int32, String) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_setlocale_System_Int32_System_String_ - commentId: M:Unix.Terminal.Curses.setlocale(System.Int32,System.String) - fullName: Unix.Terminal.Curses.setlocale(System.Int32, System.String) - nameWithType: Curses.setlocale(Int32, String) -- uid: Unix.Terminal.Curses.setlocale* - name: setlocale - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_setlocale_ - commentId: Overload:Unix.Terminal.Curses.setlocale - fullName: Unix.Terminal.Curses.setlocale - nameWithType: Curses.setlocale -- uid: Unix.Terminal.Curses.setscrreg(System.Int32,System.Int32) - name: setscrreg(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_setscrreg_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.setscrreg(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.setscrreg(System.Int32, System.Int32) - nameWithType: Curses.setscrreg(Int32, Int32) -- uid: Unix.Terminal.Curses.setscrreg* - name: setscrreg - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_setscrreg_ - commentId: Overload:Unix.Terminal.Curses.setscrreg - isSpec: "True" - fullName: Unix.Terminal.Curses.setscrreg - nameWithType: Curses.setscrreg -- uid: Unix.Terminal.Curses.ShiftAltKeyDown - name: ShiftAltKeyDown - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyDown - commentId: F:Unix.Terminal.Curses.ShiftAltKeyDown - fullName: Unix.Terminal.Curses.ShiftAltKeyDown - nameWithType: Curses.ShiftAltKeyDown -- uid: Unix.Terminal.Curses.ShiftAltKeyEnd - name: ShiftAltKeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyEnd - commentId: F:Unix.Terminal.Curses.ShiftAltKeyEnd - fullName: Unix.Terminal.Curses.ShiftAltKeyEnd - nameWithType: Curses.ShiftAltKeyEnd -- uid: Unix.Terminal.Curses.ShiftAltKeyHome - name: ShiftAltKeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyHome - commentId: F:Unix.Terminal.Curses.ShiftAltKeyHome - fullName: Unix.Terminal.Curses.ShiftAltKeyHome - nameWithType: Curses.ShiftAltKeyHome -- uid: Unix.Terminal.Curses.ShiftAltKeyLeft - name: ShiftAltKeyLeft - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyLeft - commentId: F:Unix.Terminal.Curses.ShiftAltKeyLeft - fullName: Unix.Terminal.Curses.ShiftAltKeyLeft - nameWithType: Curses.ShiftAltKeyLeft -- uid: Unix.Terminal.Curses.ShiftAltKeyNPage - name: ShiftAltKeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyNPage - commentId: F:Unix.Terminal.Curses.ShiftAltKeyNPage - fullName: Unix.Terminal.Curses.ShiftAltKeyNPage - nameWithType: Curses.ShiftAltKeyNPage -- uid: Unix.Terminal.Curses.ShiftAltKeyPPage - name: ShiftAltKeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyPPage - commentId: F:Unix.Terminal.Curses.ShiftAltKeyPPage - fullName: Unix.Terminal.Curses.ShiftAltKeyPPage - nameWithType: Curses.ShiftAltKeyPPage -- uid: Unix.Terminal.Curses.ShiftAltKeyRight - name: ShiftAltKeyRight - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyRight - commentId: F:Unix.Terminal.Curses.ShiftAltKeyRight - fullName: Unix.Terminal.Curses.ShiftAltKeyRight - nameWithType: Curses.ShiftAltKeyRight -- uid: Unix.Terminal.Curses.ShiftAltKeyUp - name: ShiftAltKeyUp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftAltKeyUp - commentId: F:Unix.Terminal.Curses.ShiftAltKeyUp - fullName: Unix.Terminal.Curses.ShiftAltKeyUp - nameWithType: Curses.ShiftAltKeyUp -- uid: Unix.Terminal.Curses.ShiftCtrlKeyDown - name: ShiftCtrlKeyDown - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyDown - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyDown - fullName: Unix.Terminal.Curses.ShiftCtrlKeyDown - nameWithType: Curses.ShiftCtrlKeyDown -- uid: Unix.Terminal.Curses.ShiftCtrlKeyEnd - name: ShiftCtrlKeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyEnd - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyEnd - fullName: Unix.Terminal.Curses.ShiftCtrlKeyEnd - nameWithType: Curses.ShiftCtrlKeyEnd -- uid: Unix.Terminal.Curses.ShiftCtrlKeyHome - name: ShiftCtrlKeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyHome - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyHome - fullName: Unix.Terminal.Curses.ShiftCtrlKeyHome - nameWithType: Curses.ShiftCtrlKeyHome -- uid: Unix.Terminal.Curses.ShiftCtrlKeyLeft - name: ShiftCtrlKeyLeft - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyLeft - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyLeft - fullName: Unix.Terminal.Curses.ShiftCtrlKeyLeft - nameWithType: Curses.ShiftCtrlKeyLeft -- uid: Unix.Terminal.Curses.ShiftCtrlKeyNPage - name: ShiftCtrlKeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyNPage - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyNPage - fullName: Unix.Terminal.Curses.ShiftCtrlKeyNPage - nameWithType: Curses.ShiftCtrlKeyNPage -- uid: Unix.Terminal.Curses.ShiftCtrlKeyPPage - name: ShiftCtrlKeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyPPage - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyPPage - fullName: Unix.Terminal.Curses.ShiftCtrlKeyPPage - nameWithType: Curses.ShiftCtrlKeyPPage -- uid: Unix.Terminal.Curses.ShiftCtrlKeyRight - name: ShiftCtrlKeyRight - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyRight - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyRight - fullName: Unix.Terminal.Curses.ShiftCtrlKeyRight - nameWithType: Curses.ShiftCtrlKeyRight -- uid: Unix.Terminal.Curses.ShiftCtrlKeyUp - name: ShiftCtrlKeyUp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftCtrlKeyUp - commentId: F:Unix.Terminal.Curses.ShiftCtrlKeyUp - fullName: Unix.Terminal.Curses.ShiftCtrlKeyUp - nameWithType: Curses.ShiftCtrlKeyUp -- uid: Unix.Terminal.Curses.ShiftKeyDown - name: ShiftKeyDown - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyDown - commentId: F:Unix.Terminal.Curses.ShiftKeyDown - fullName: Unix.Terminal.Curses.ShiftKeyDown - nameWithType: Curses.ShiftKeyDown -- uid: Unix.Terminal.Curses.ShiftKeyEnd - name: ShiftKeyEnd - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyEnd - commentId: F:Unix.Terminal.Curses.ShiftKeyEnd - fullName: Unix.Terminal.Curses.ShiftKeyEnd - nameWithType: Curses.ShiftKeyEnd -- uid: Unix.Terminal.Curses.ShiftKeyHome - name: ShiftKeyHome - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyHome - commentId: F:Unix.Terminal.Curses.ShiftKeyHome - fullName: Unix.Terminal.Curses.ShiftKeyHome - nameWithType: Curses.ShiftKeyHome -- uid: Unix.Terminal.Curses.ShiftKeyLeft - name: ShiftKeyLeft - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyLeft - commentId: F:Unix.Terminal.Curses.ShiftKeyLeft - fullName: Unix.Terminal.Curses.ShiftKeyLeft - nameWithType: Curses.ShiftKeyLeft -- uid: Unix.Terminal.Curses.ShiftKeyNPage - name: ShiftKeyNPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyNPage - commentId: F:Unix.Terminal.Curses.ShiftKeyNPage - fullName: Unix.Terminal.Curses.ShiftKeyNPage - nameWithType: Curses.ShiftKeyNPage -- uid: Unix.Terminal.Curses.ShiftKeyPPage - name: ShiftKeyPPage - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyPPage - commentId: F:Unix.Terminal.Curses.ShiftKeyPPage - fullName: Unix.Terminal.Curses.ShiftKeyPPage - nameWithType: Curses.ShiftKeyPPage -- uid: Unix.Terminal.Curses.ShiftKeyRight - name: ShiftKeyRight - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyRight - commentId: F:Unix.Terminal.Curses.ShiftKeyRight - fullName: Unix.Terminal.Curses.ShiftKeyRight - nameWithType: Curses.ShiftKeyRight -- uid: Unix.Terminal.Curses.ShiftKeyUp - name: ShiftKeyUp - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ShiftKeyUp - commentId: F:Unix.Terminal.Curses.ShiftKeyUp - fullName: Unix.Terminal.Curses.ShiftKeyUp - nameWithType: Curses.ShiftKeyUp -- uid: Unix.Terminal.Curses.start_color - name: start_color() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_start_color - commentId: M:Unix.Terminal.Curses.start_color - fullName: Unix.Terminal.Curses.start_color() - nameWithType: Curses.start_color() -- uid: Unix.Terminal.Curses.start_color* - name: start_color - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_start_color_ - commentId: Overload:Unix.Terminal.Curses.start_color - isSpec: "True" - fullName: Unix.Terminal.Curses.start_color - nameWithType: Curses.start_color -- uid: Unix.Terminal.Curses.StartColor - name: StartColor() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_StartColor - commentId: M:Unix.Terminal.Curses.StartColor - fullName: Unix.Terminal.Curses.StartColor() - nameWithType: Curses.StartColor() -- uid: Unix.Terminal.Curses.StartColor* - name: StartColor - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_StartColor_ - commentId: Overload:Unix.Terminal.Curses.StartColor - isSpec: "True" - fullName: Unix.Terminal.Curses.StartColor - nameWithType: Curses.StartColor -- uid: Unix.Terminal.Curses.timeout(System.Int32) - name: timeout(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_timeout_System_Int32_ - commentId: M:Unix.Terminal.Curses.timeout(System.Int32) - fullName: Unix.Terminal.Curses.timeout(System.Int32) - nameWithType: Curses.timeout(Int32) -- uid: Unix.Terminal.Curses.timeout* - name: timeout - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_timeout_ - commentId: Overload:Unix.Terminal.Curses.timeout - isSpec: "True" - fullName: Unix.Terminal.Curses.timeout - nameWithType: Curses.timeout -- uid: Unix.Terminal.Curses.TIOCGWINSZ - name: TIOCGWINSZ - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_TIOCGWINSZ - commentId: F:Unix.Terminal.Curses.TIOCGWINSZ - fullName: Unix.Terminal.Curses.TIOCGWINSZ - nameWithType: Curses.TIOCGWINSZ -- uid: Unix.Terminal.Curses.TIOCGWINSZ_MAC - name: TIOCGWINSZ_MAC - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_TIOCGWINSZ_MAC - commentId: F:Unix.Terminal.Curses.TIOCGWINSZ_MAC - fullName: Unix.Terminal.Curses.TIOCGWINSZ_MAC - nameWithType: Curses.TIOCGWINSZ_MAC -- uid: Unix.Terminal.Curses.typeahead(System.IntPtr) - name: typeahead(IntPtr) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_typeahead_System_IntPtr_ - commentId: M:Unix.Terminal.Curses.typeahead(System.IntPtr) - fullName: Unix.Terminal.Curses.typeahead(System.IntPtr) - nameWithType: Curses.typeahead(IntPtr) -- uid: Unix.Terminal.Curses.typeahead* - name: typeahead - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_typeahead_ - commentId: Overload:Unix.Terminal.Curses.typeahead - isSpec: "True" - fullName: Unix.Terminal.Curses.typeahead - nameWithType: Curses.typeahead -- uid: Unix.Terminal.Curses.ungetch(System.Int32) - name: ungetch(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ungetch_System_Int32_ - commentId: M:Unix.Terminal.Curses.ungetch(System.Int32) - fullName: Unix.Terminal.Curses.ungetch(System.Int32) - nameWithType: Curses.ungetch(Int32) -- uid: Unix.Terminal.Curses.ungetch* - name: ungetch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ungetch_ - commentId: Overload:Unix.Terminal.Curses.ungetch - isSpec: "True" - fullName: Unix.Terminal.Curses.ungetch - nameWithType: Curses.ungetch -- uid: Unix.Terminal.Curses.ungetmouse(Unix.Terminal.Curses.MouseEvent@) - name: ungetmouse(ref Curses.MouseEvent) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ungetmouse_Unix_Terminal_Curses_MouseEvent__ - commentId: M:Unix.Terminal.Curses.ungetmouse(Unix.Terminal.Curses.MouseEvent@) - name.vb: ungetmouse(ByRef Curses.MouseEvent) - fullName: Unix.Terminal.Curses.ungetmouse(ref Unix.Terminal.Curses.MouseEvent) - fullName.vb: Unix.Terminal.Curses.ungetmouse(ByRef Unix.Terminal.Curses.MouseEvent) - nameWithType: Curses.ungetmouse(ref Curses.MouseEvent) - nameWithType.vb: Curses.ungetmouse(ByRef Curses.MouseEvent) -- uid: Unix.Terminal.Curses.ungetmouse* - name: ungetmouse - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_ungetmouse_ - commentId: Overload:Unix.Terminal.Curses.ungetmouse - isSpec: "True" - fullName: Unix.Terminal.Curses.ungetmouse - nameWithType: Curses.ungetmouse -- uid: Unix.Terminal.Curses.use_default_colors - name: use_default_colors() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_use_default_colors - commentId: M:Unix.Terminal.Curses.use_default_colors - fullName: Unix.Terminal.Curses.use_default_colors() - nameWithType: Curses.use_default_colors() -- uid: Unix.Terminal.Curses.use_default_colors* - name: use_default_colors - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_use_default_colors_ - commentId: Overload:Unix.Terminal.Curses.use_default_colors - isSpec: "True" - fullName: Unix.Terminal.Curses.use_default_colors - nameWithType: Curses.use_default_colors -- uid: Unix.Terminal.Curses.use_env(System.Boolean) - name: use_env(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_use_env_System_Boolean_ - commentId: M:Unix.Terminal.Curses.use_env(System.Boolean) - fullName: Unix.Terminal.Curses.use_env(System.Boolean) - nameWithType: Curses.use_env(Boolean) -- uid: Unix.Terminal.Curses.use_env* - name: use_env - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_use_env_ - commentId: Overload:Unix.Terminal.Curses.use_env - isSpec: "True" - fullName: Unix.Terminal.Curses.use_env - nameWithType: Curses.use_env -- uid: Unix.Terminal.Curses.UseDefaultColors - name: UseDefaultColors() - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_UseDefaultColors - commentId: M:Unix.Terminal.Curses.UseDefaultColors - fullName: Unix.Terminal.Curses.UseDefaultColors() - nameWithType: Curses.UseDefaultColors() -- uid: Unix.Terminal.Curses.UseDefaultColors* - name: UseDefaultColors - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_UseDefaultColors_ - commentId: Overload:Unix.Terminal.Curses.UseDefaultColors - isSpec: "True" - fullName: Unix.Terminal.Curses.UseDefaultColors - nameWithType: Curses.UseDefaultColors -- uid: Unix.Terminal.Curses.waddch(System.IntPtr,System.Int32) - name: waddch(IntPtr, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_waddch_System_IntPtr_System_Int32_ - commentId: M:Unix.Terminal.Curses.waddch(System.IntPtr,System.Int32) - fullName: Unix.Terminal.Curses.waddch(System.IntPtr, System.Int32) - nameWithType: Curses.waddch(IntPtr, Int32) -- uid: Unix.Terminal.Curses.waddch* - name: waddch - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_waddch_ - commentId: Overload:Unix.Terminal.Curses.waddch - isSpec: "True" - fullName: Unix.Terminal.Curses.waddch - nameWithType: Curses.waddch -- uid: Unix.Terminal.Curses.Window - name: Curses.Window - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html - commentId: T:Unix.Terminal.Curses.Window - fullName: Unix.Terminal.Curses.Window - nameWithType: Curses.Window -- uid: Unix.Terminal.Curses.Window.addch(System.Char) - name: addch(Char) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_addch_System_Char_ - commentId: M:Unix.Terminal.Curses.Window.addch(System.Char) - fullName: Unix.Terminal.Curses.Window.addch(System.Char) - nameWithType: Curses.Window.addch(Char) -- uid: Unix.Terminal.Curses.Window.addch* - name: addch - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_addch_ - commentId: Overload:Unix.Terminal.Curses.Window.addch - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.addch - nameWithType: Curses.Window.addch -- uid: Unix.Terminal.Curses.Window.clearok(System.Boolean) - name: clearok(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_clearok_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.clearok(System.Boolean) - fullName: Unix.Terminal.Curses.Window.clearok(System.Boolean) - nameWithType: Curses.Window.clearok(Boolean) -- uid: Unix.Terminal.Curses.Window.clearok* - name: clearok - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_clearok_ - commentId: Overload:Unix.Terminal.Curses.Window.clearok - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.clearok - nameWithType: Curses.Window.clearok -- uid: Unix.Terminal.Curses.Window.Current - name: Current - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_Current - commentId: P:Unix.Terminal.Curses.Window.Current - fullName: Unix.Terminal.Curses.Window.Current - nameWithType: Curses.Window.Current -- uid: Unix.Terminal.Curses.Window.Current* - name: Current - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_Current_ - commentId: Overload:Unix.Terminal.Curses.Window.Current - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.Current - nameWithType: Curses.Window.Current -- uid: Unix.Terminal.Curses.Window.Handle - name: Handle - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_Handle - commentId: F:Unix.Terminal.Curses.Window.Handle - fullName: Unix.Terminal.Curses.Window.Handle - nameWithType: Curses.Window.Handle -- uid: Unix.Terminal.Curses.Window.idcok(System.Boolean) - name: idcok(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_idcok_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.idcok(System.Boolean) - fullName: Unix.Terminal.Curses.Window.idcok(System.Boolean) - nameWithType: Curses.Window.idcok(Boolean) -- uid: Unix.Terminal.Curses.Window.idcok* - name: idcok - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_idcok_ - commentId: Overload:Unix.Terminal.Curses.Window.idcok - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.idcok - nameWithType: Curses.Window.idcok -- uid: Unix.Terminal.Curses.Window.idlok(System.Boolean) - name: idlok(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_idlok_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.idlok(System.Boolean) - fullName: Unix.Terminal.Curses.Window.idlok(System.Boolean) - nameWithType: Curses.Window.idlok(Boolean) -- uid: Unix.Terminal.Curses.Window.idlok* - name: idlok - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_idlok_ - commentId: Overload:Unix.Terminal.Curses.Window.idlok - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.idlok - nameWithType: Curses.Window.idlok -- uid: Unix.Terminal.Curses.Window.immedok(System.Boolean) - name: immedok(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_immedok_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.immedok(System.Boolean) - fullName: Unix.Terminal.Curses.Window.immedok(System.Boolean) - nameWithType: Curses.Window.immedok(Boolean) -- uid: Unix.Terminal.Curses.Window.immedok* - name: immedok - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_immedok_ - commentId: Overload:Unix.Terminal.Curses.Window.immedok - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.immedok - nameWithType: Curses.Window.immedok -- uid: Unix.Terminal.Curses.Window.intrflush(System.Boolean) - name: intrflush(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_intrflush_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.intrflush(System.Boolean) - fullName: Unix.Terminal.Curses.Window.intrflush(System.Boolean) - nameWithType: Curses.Window.intrflush(Boolean) -- uid: Unix.Terminal.Curses.Window.intrflush* - name: intrflush - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_intrflush_ - commentId: Overload:Unix.Terminal.Curses.Window.intrflush - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.intrflush - nameWithType: Curses.Window.intrflush -- uid: Unix.Terminal.Curses.Window.keypad(System.Boolean) - name: keypad(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_keypad_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.keypad(System.Boolean) - fullName: Unix.Terminal.Curses.Window.keypad(System.Boolean) - nameWithType: Curses.Window.keypad(Boolean) -- uid: Unix.Terminal.Curses.Window.keypad* - name: keypad - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_keypad_ - commentId: Overload:Unix.Terminal.Curses.Window.keypad - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.keypad - nameWithType: Curses.Window.keypad -- uid: Unix.Terminal.Curses.Window.leaveok(System.Boolean) - name: leaveok(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_leaveok_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.leaveok(System.Boolean) - fullName: Unix.Terminal.Curses.Window.leaveok(System.Boolean) - nameWithType: Curses.Window.leaveok(Boolean) -- uid: Unix.Terminal.Curses.Window.leaveok* - name: leaveok - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_leaveok_ - commentId: Overload:Unix.Terminal.Curses.Window.leaveok - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.leaveok - nameWithType: Curses.Window.leaveok -- uid: Unix.Terminal.Curses.Window.meta(System.Boolean) - name: meta(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_meta_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.meta(System.Boolean) - fullName: Unix.Terminal.Curses.Window.meta(System.Boolean) - nameWithType: Curses.Window.meta(Boolean) -- uid: Unix.Terminal.Curses.Window.meta* - name: meta - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_meta_ - commentId: Overload:Unix.Terminal.Curses.Window.meta - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.meta - nameWithType: Curses.Window.meta -- uid: Unix.Terminal.Curses.Window.move(System.Int32,System.Int32) - name: move(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_move_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.Window.move(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.Window.move(System.Int32, System.Int32) - nameWithType: Curses.Window.move(Int32, Int32) -- uid: Unix.Terminal.Curses.Window.move* - name: move - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_move_ - commentId: Overload:Unix.Terminal.Curses.Window.move - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.move - nameWithType: Curses.Window.move -- uid: Unix.Terminal.Curses.Window.notimeout(System.Boolean) - name: notimeout(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_notimeout_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.notimeout(System.Boolean) - fullName: Unix.Terminal.Curses.Window.notimeout(System.Boolean) - nameWithType: Curses.Window.notimeout(Boolean) -- uid: Unix.Terminal.Curses.Window.notimeout* - name: notimeout - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_notimeout_ - commentId: Overload:Unix.Terminal.Curses.Window.notimeout - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.notimeout - nameWithType: Curses.Window.notimeout -- uid: Unix.Terminal.Curses.Window.redrawwin - name: redrawwin() - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_redrawwin - commentId: M:Unix.Terminal.Curses.Window.redrawwin - fullName: Unix.Terminal.Curses.Window.redrawwin() - nameWithType: Curses.Window.redrawwin() -- uid: Unix.Terminal.Curses.Window.redrawwin* - name: redrawwin - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_redrawwin_ - commentId: Overload:Unix.Terminal.Curses.Window.redrawwin - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.redrawwin - nameWithType: Curses.Window.redrawwin -- uid: Unix.Terminal.Curses.Window.refresh - name: refresh() - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_refresh - commentId: M:Unix.Terminal.Curses.Window.refresh - fullName: Unix.Terminal.Curses.Window.refresh() - nameWithType: Curses.Window.refresh() -- uid: Unix.Terminal.Curses.Window.refresh* - name: refresh - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_refresh_ - commentId: Overload:Unix.Terminal.Curses.Window.refresh - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.refresh - nameWithType: Curses.Window.refresh -- uid: Unix.Terminal.Curses.Window.scrollok(System.Boolean) - name: scrollok(Boolean) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_scrollok_System_Boolean_ - commentId: M:Unix.Terminal.Curses.Window.scrollok(System.Boolean) - fullName: Unix.Terminal.Curses.Window.scrollok(System.Boolean) - nameWithType: Curses.Window.scrollok(Boolean) -- uid: Unix.Terminal.Curses.Window.scrollok* - name: scrollok - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_scrollok_ - commentId: Overload:Unix.Terminal.Curses.Window.scrollok - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.scrollok - nameWithType: Curses.Window.scrollok -- uid: Unix.Terminal.Curses.Window.setscrreg(System.Int32,System.Int32) - name: setscrreg(Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_setscrreg_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.Window.setscrreg(System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.Window.setscrreg(System.Int32, System.Int32) - nameWithType: Curses.Window.setscrreg(Int32, Int32) -- uid: Unix.Terminal.Curses.Window.setscrreg* - name: setscrreg - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_setscrreg_ - commentId: Overload:Unix.Terminal.Curses.Window.setscrreg - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.setscrreg - nameWithType: Curses.Window.setscrreg -- uid: Unix.Terminal.Curses.Window.Standard - name: Standard - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_Standard - commentId: P:Unix.Terminal.Curses.Window.Standard - fullName: Unix.Terminal.Curses.Window.Standard - nameWithType: Curses.Window.Standard -- uid: Unix.Terminal.Curses.Window.Standard* - name: Standard - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_Standard_ - commentId: Overload:Unix.Terminal.Curses.Window.Standard - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.Standard - nameWithType: Curses.Window.Standard -- uid: Unix.Terminal.Curses.Window.wnoutrefresh - name: wnoutrefresh() - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_wnoutrefresh - commentId: M:Unix.Terminal.Curses.Window.wnoutrefresh - fullName: Unix.Terminal.Curses.Window.wnoutrefresh() - nameWithType: Curses.Window.wnoutrefresh() -- uid: Unix.Terminal.Curses.Window.wnoutrefresh* - name: wnoutrefresh - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_wnoutrefresh_ - commentId: Overload:Unix.Terminal.Curses.Window.wnoutrefresh - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.wnoutrefresh - nameWithType: Curses.Window.wnoutrefresh -- uid: Unix.Terminal.Curses.Window.wrefresh - name: wrefresh() - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_wrefresh - commentId: M:Unix.Terminal.Curses.Window.wrefresh - fullName: Unix.Terminal.Curses.Window.wrefresh() - nameWithType: Curses.Window.wrefresh() -- uid: Unix.Terminal.Curses.Window.wrefresh* - name: wrefresh - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_wrefresh_ - commentId: Overload:Unix.Terminal.Curses.Window.wrefresh - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.wrefresh - nameWithType: Curses.Window.wrefresh -- uid: Unix.Terminal.Curses.Window.wtimeout(System.Int32) - name: wtimeout(Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_wtimeout_System_Int32_ - commentId: M:Unix.Terminal.Curses.Window.wtimeout(System.Int32) - fullName: Unix.Terminal.Curses.Window.wtimeout(System.Int32) - nameWithType: Curses.Window.wtimeout(Int32) -- uid: Unix.Terminal.Curses.Window.wtimeout* - name: wtimeout - href: api/Terminal.Gui/Unix.Terminal.Curses.Window.html#Unix_Terminal_Curses_Window_wtimeout_ - commentId: Overload:Unix.Terminal.Curses.Window.wtimeout - isSpec: "True" - fullName: Unix.Terminal.Curses.Window.wtimeout - nameWithType: Curses.Window.wtimeout -- uid: Unix.Terminal.Curses.wmove(System.IntPtr,System.Int32,System.Int32) - name: wmove(IntPtr, Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wmove_System_IntPtr_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.wmove(System.IntPtr,System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.wmove(System.IntPtr, System.Int32, System.Int32) - nameWithType: Curses.wmove(IntPtr, Int32, Int32) -- uid: Unix.Terminal.Curses.wmove* - name: wmove - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wmove_ - commentId: Overload:Unix.Terminal.Curses.wmove - isSpec: "True" - fullName: Unix.Terminal.Curses.wmove - nameWithType: Curses.wmove -- uid: Unix.Terminal.Curses.wnoutrefresh(System.IntPtr) - name: wnoutrefresh(IntPtr) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wnoutrefresh_System_IntPtr_ - commentId: M:Unix.Terminal.Curses.wnoutrefresh(System.IntPtr) - fullName: Unix.Terminal.Curses.wnoutrefresh(System.IntPtr) - nameWithType: Curses.wnoutrefresh(IntPtr) -- uid: Unix.Terminal.Curses.wnoutrefresh* - name: wnoutrefresh - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wnoutrefresh_ - commentId: Overload:Unix.Terminal.Curses.wnoutrefresh - isSpec: "True" - fullName: Unix.Terminal.Curses.wnoutrefresh - nameWithType: Curses.wnoutrefresh -- uid: Unix.Terminal.Curses.wrefresh(System.IntPtr) - name: wrefresh(IntPtr) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wrefresh_System_IntPtr_ - commentId: M:Unix.Terminal.Curses.wrefresh(System.IntPtr) - fullName: Unix.Terminal.Curses.wrefresh(System.IntPtr) - nameWithType: Curses.wrefresh(IntPtr) -- uid: Unix.Terminal.Curses.wrefresh* - name: wrefresh - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wrefresh_ - commentId: Overload:Unix.Terminal.Curses.wrefresh - isSpec: "True" - fullName: Unix.Terminal.Curses.wrefresh - nameWithType: Curses.wrefresh -- uid: Unix.Terminal.Curses.wsetscrreg(System.IntPtr,System.Int32,System.Int32) - name: wsetscrreg(IntPtr, Int32, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wsetscrreg_System_IntPtr_System_Int32_System_Int32_ - commentId: M:Unix.Terminal.Curses.wsetscrreg(System.IntPtr,System.Int32,System.Int32) - fullName: Unix.Terminal.Curses.wsetscrreg(System.IntPtr, System.Int32, System.Int32) - nameWithType: Curses.wsetscrreg(IntPtr, Int32, Int32) -- uid: Unix.Terminal.Curses.wsetscrreg* - name: wsetscrreg - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wsetscrreg_ - commentId: Overload:Unix.Terminal.Curses.wsetscrreg - isSpec: "True" - fullName: Unix.Terminal.Curses.wsetscrreg - nameWithType: Curses.wsetscrreg -- uid: Unix.Terminal.Curses.wtimeout(System.IntPtr,System.Int32) - name: wtimeout(IntPtr, Int32) - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wtimeout_System_IntPtr_System_Int32_ - commentId: M:Unix.Terminal.Curses.wtimeout(System.IntPtr,System.Int32) - fullName: Unix.Terminal.Curses.wtimeout(System.IntPtr, System.Int32) - nameWithType: Curses.wtimeout(IntPtr, Int32) -- uid: Unix.Terminal.Curses.wtimeout* - name: wtimeout - href: api/Terminal.Gui/Unix.Terminal.Curses.html#Unix_Terminal_Curses_wtimeout_ - commentId: Overload:Unix.Terminal.Curses.wtimeout - isSpec: "True" - fullName: Unix.Terminal.Curses.wtimeout - nameWithType: Curses.wtimeout