Update docs

This commit is contained in:
Miguel de Icaza
2018-01-15 23:17:12 -05:00
parent e1b1b52e99
commit f3f32f6a24
52 changed files with 568 additions and 362 deletions

View File

@@ -91,11 +91,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The current toplevel object. This is updated when Application.Run enters and leaves and points to the current toplevel.
syntax:
content: public static Terminal.Toplevel Current { get; }
return:
type: Terminal.Toplevel
description: To be added.
description: The current.
overload: Terminal.Application.Current*
exceptions: []
- uid: Terminal.Application.DebugDrawBounds
@@ -128,6 +129,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The current Console Driver in use.
syntax:
content: public static Terminal.ConsoleDriver Driver;
return:
@@ -227,11 +229,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The mainloop driver for the applicaiton
syntax:
content: public static Mono.Terminal.MainLoop MainLoop { get; }
return:
type: Mono.Terminal.MainLoop
description: To be added.
description: The main loop.
overload: Terminal.Application.MainLoop*
exceptions: []
- uid: Terminal.Application.MakeCenteredRect(Terminal.Size)
@@ -401,11 +404,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The Toplevel object used for the application on startup.
syntax:
content: public static Terminal.Toplevel Top { get; }
return:
type: Terminal.Toplevel
description: To be added.
description: The top.
overload: Terminal.Application.Top*
exceptions: []
- uid: Terminal.Application.UngrabMouse

View File

@@ -50,7 +50,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -649,12 +648,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -41,7 +41,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -515,12 +514,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -32,6 +32,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: ConsoleDriver is an abstract class that defines the requirements for a console driver. One implementation if the CursesDriver, and another one uses the .NET Console one.
syntax:
content: public abstract class ConsoleDriver
inheritance:

View File

@@ -32,6 +32,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: This is the Curses driver for the gui.cs/Terminal framework.
syntax:
content: 'public class CursesDriver : Terminal.ConsoleDriver'
inheritance:

View File

@@ -41,7 +41,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -354,12 +353,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -41,7 +41,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -206,11 +205,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Controls the text-alignemtn property of the label, changing it will redisplay the label.
syntax:
content: public Terminal.TextAlignment TextAlignment { get; set; }
return:
type: Terminal.TextAlignment
description: To be added.
description: The text alignment.
overload: Terminal.Label.TextAlignment*
exceptions: []
- uid: Terminal.Label.TextColor
@@ -225,6 +225,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The color used for the label
syntax:
content: public Terminal.Attribute TextColor { get; set; }
return:
@@ -449,12 +450,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -40,7 +40,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -77,12 +76,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Initializes a new instance of the <xref href="Terminal.MenuBar"></xref> class with the specified set of toplevel menu items.
syntax:
content: public MenuBar (Terminal.MenuBarItem[] menus);
parameters:
- id: menus
type: Terminal.MenuBarItem[]
description: To be added.
description: Menus.
overload: Terminal.MenuBar.#ctor*
exceptions: []
- uid: Terminal.MenuBar.Menus
@@ -97,11 +97,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The menus that were defined when the menubar was created. This can be updated if the menu is not currently visible.
syntax:
content: public Terminal.MenuBarItem[] Menus { get; set; }
return:
type: Terminal.MenuBarItem[]
description: To be added.
description: The menu array.
overload: Terminal.MenuBar.Menus*
exceptions: []
- uid: Terminal.MenuBar.MouseEvent(Terminal.MouseEvent)
@@ -427,12 +428,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -37,18 +37,19 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Initializes a new <xref href="Terminal.MenuItem"></xref>.
syntax:
content: public MenuItem (string title, string help, Action action);
parameters:
- id: title
type: System.String
description: To be added.
description: Title for the menu item.
- id: help
type: System.String
description: To be added.
description: Help text to display.
- id: action
type: System.Action
description: To be added.
description: Action to invoke when the menu item is activated.
overload: Terminal.MenuItem.#ctor*
exceptions: []
- uid: Terminal.MenuItem.Action
@@ -63,11 +64,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Gets or sets the action to be invoked when the menu is triggered
syntax:
content: public Action Action { get; set; }
return:
type: System.Action
description: To be added.
description: Method to invoke.
overload: Terminal.MenuItem.Action*
exceptions: []
- uid: Terminal.MenuItem.Help
@@ -82,11 +84,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Gets or sets the help text for the menu item.
syntax:
content: public string Help { get; set; }
return:
type: System.String
description: To be added.
description: The help text.
overload: Terminal.MenuItem.Help*
exceptions: []
- uid: Terminal.MenuItem.HotKey
@@ -101,6 +104,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: "The hotkey is used when the menu is active, the shortcut can be triggered when the menu is not active. \n For example HotKey would be \"N\" when the File Menu is open (assuming there is a \"_New\" entry\n if the ShortCut is set to \"Control-N\", this would be a global hotkey that would trigger as well"
syntax:
content: public char HotKey;
return:
@@ -119,6 +123,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: This is the global setting that can be used as a global shortcut to invoke the action on the menu.
syntax:
content: public Terminal.Key ShortCut;
return:
@@ -137,11 +142,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Gets or sets the title.
syntax:
content: public string Title { get; set; }
return:
type: System.String
description: To be added.
description: The title.
overload: Terminal.MenuItem.Title*
exceptions: []
references:

View File

@@ -53,12 +53,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Returns a <xref href="System.String"></xref> that represents the current <xref href="Terminal.MouseEvent"></xref>.
syntax:
content: public override string ToString ();
parameters: []
return:
type: System.String
description: To be added.
description: A <xref href="System.String"></xref> that represents the current <xref href="Terminal.MouseEvent"></xref>.
overload: Terminal.MouseEvent.ToString*
exceptions: []
- uid: Terminal.MouseEvent.X

View File

@@ -43,7 +43,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -562,12 +561,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -34,7 +34,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -210,12 +209,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -46,7 +46,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -573,12 +572,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -45,7 +45,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -85,12 +84,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Initializes a new instance of the <xref href="Terminal.Toplevel"></xref> class.
syntax:
content: public Toplevel (Terminal.Rect frame);
parameters:
- id: frame
type: Terminal.Rect
description: To be added.
description: Frame.
overload: Terminal.Toplevel.#ctor*
exceptions: []
- uid: Terminal.Toplevel.CanFocus
@@ -124,12 +124,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Convenience factory method that creates a new toplevel with the current terminal dimensions.
syntax:
content: public static Terminal.Toplevel Create ();
parameters: []
return:
type: Terminal.Toplevel
description: To be added.
description: The create.
overload: Terminal.Toplevel.Create*
exceptions: []
- uid: Terminal.Toplevel.ProcessKey(Terminal.KeyEvent)
@@ -348,12 +349,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false

View File

@@ -15,7 +15,6 @@ items:
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -53,6 +52,8 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: 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.
remarks: "<p>\n The View defines the base functionality for user interface elements in Terminal/gui.cs. Views\n can contain one or more subviews, can respond to user input and render themselves on the screen.\n </p>\n <p>\n Views are created with a specified rectangle region (the frame) that is relative to the container\n that they are added into. \n </p>\n <p>\n Subviews can be added to a View by calling the Add method. The container of a view is the \n Superview.\n </p>\n <p>\n Developers can call the SetNeedsDisplay method on the view to flag a region or the entire view\n as requiring to be redrawn.\n </p>"
syntax:
content: 'public class View : Terminal.Responder, System.Collections.IEnumerable'
inheritance:
@@ -84,12 +85,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Initializes a new instance of the <xref href="Terminal.View"></xref> class with the specified frame. This is the default constructor.
syntax:
content: public View (Terminal.Rect frame);
parameters:
- id: frame
type: Terminal.Rect
description: To be added.
description: The region covered by this view.
overload: Terminal.View.#ctor*
exceptions: []
- uid: Terminal.View.Add(Terminal.View)
@@ -125,12 +127,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Adds the specified views to the view.
syntax:
content: public void Add (Terminal.View[] views);
parameters:
- id: views
type: Terminal.View[]
description: To be added.
description: Array of one or more views (can be optional parameter).
overload: Terminal.View.Add*
exceptions: []
- uid: Terminal.View.AddCh(System.Int32,System.Int32,System.Int32)
@@ -172,11 +175,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The bounds represent the View-relative rectangle used for this view. Updates to the Bounds update the Frame, and has the same side effects as updating the frame.
syntax:
content: public Terminal.Rect Bounds { get; set; }
return:
type: Terminal.Rect
description: To be added.
description: The bounds.
overload: Terminal.View.Bounds*
exceptions: []
- uid: Terminal.View.ChildNeedsDisplay
@@ -191,6 +195,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Flags this view for requiring the children views to be repainted.
syntax:
content: public void ChildNeedsDisplay ();
parameters: []
@@ -230,6 +235,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Removes the SetNeedsDisplay and the ChildNeedsDisplay setting on this view.
syntax:
content: protected void ClearNeedsDisplay ();
parameters: []
@@ -325,30 +331,15 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: >-
Points to the current driver in use by the view, it is a convenience property
for simplifying the development of new views.
syntax:
content: public static Terminal.ConsoleDriver Driver;
return:
type: Terminal.ConsoleDriver
description: To be added.
exceptions: []
- uid: Terminal.View.empty
id: empty
parent: Terminal.View
langs:
- csharp
name: empty
nameWithType: View.empty
fullName: View.empty
type: Field
assemblies:
- Terminal
namespace: Terminal
syntax:
content: public static System.Collections.Generic.IList<Terminal.View> empty;
return:
type: System.Collections.Generic.IList{Terminal.View}
description: To be added.
exceptions: []
- uid: Terminal.View.EnsureFocus
id: EnsureFocus
parent: Terminal.View
@@ -477,11 +468,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Gets or sets the frame for the view.
remarks: "Altering the Frame of a view will trigger the redrawing of the \n view as well as the redrawing of the affected regions in the superview."
syntax:
content: public Terminal.Rect Frame { get; set; }
return:
type: Terminal.Rect
description: To be added.
description: The frame.
overload: Terminal.View.Frame*
exceptions: []
- uid: Terminal.View.GetEnumerator
@@ -496,6 +489,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Gets an enumerator that enumerates the subviews in this view.
syntax:
content: >-
[System.Runtime.CompilerServices.IteratorStateMachine(typeof(Terminal.View/<GetEnumerator>d__23))]
@@ -504,7 +498,7 @@ items:
parameters: []
return:
type: System.Collections.IEnumerator
description: To be added.
description: The enumerator.
overload: Terminal.View.GetEnumerator*
exceptions: []
attributes:
@@ -521,11 +515,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Gets or sets a value indicating whether this <xref href="Terminal.View"></xref> has focus.
syntax:
content: public override bool HasFocus { get; }
return:
type: System.Boolean
description: To be added.
description: <code>true</code> if has focus; otherwise, <code>false</code>.
overload: Terminal.View.HasFocus*
exceptions: []
- uid: Terminal.View.Id
@@ -559,6 +554,7 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: "This virtual method is invoked when a view starts executing or \n when the dimensions of the view have changed, for example in \n response to the container view or terminal resizing."
syntax:
content: public virtual void LayoutSubviews ();
parameters: []
@@ -576,11 +572,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Returns the most focused view in the chain of subviews (the leaf view that has the focus).
syntax:
content: public Terminal.View MostFocused { get; }
return:
type: Terminal.View
description: To be added.
description: The most focused.
overload: Terminal.View.MostFocused*
exceptions: []
- uid: Terminal.View.Move(System.Int32,System.Int32)
@@ -835,12 +832,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Flags the specified rectangle region on this view as needing to be repainted.
syntax:
content: public void SetNeedsDisplay (Terminal.Rect region);
parameters:
- id: region
type: Terminal.Rect
description: To be added.
description: The region that must be flagged for repaint.
overload: Terminal.View.SetNeedsDisplay*
exceptions: []
- uid: Terminal.View.Subviews
@@ -855,11 +853,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: This returns a list of the subviews contained by this view.
syntax:
content: public System.Collections.Generic.IList<Terminal.View> Subviews { get; }
return:
type: System.Collections.Generic.IList{Terminal.View}
description: To be added.
description: The subviews.
overload: Terminal.View.Subviews*
exceptions: []
- uid: Terminal.View.SuperView
@@ -874,11 +873,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Returns the container for this view, or null if this view has not been added to a container.
syntax:
content: public Terminal.View SuperView { get; }
return:
type: Terminal.View
description: To be added.
description: The super view.
overload: Terminal.View.SuperView*
exceptions: []
- uid: Terminal.View.ToString
@@ -893,12 +893,13 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: Returns a <xref href="System.String"></xref> that represents the current <xref href="Terminal.View"></xref>.
syntax:
content: public override string ToString ();
parameters: []
return:
type: System.String
description: To be added.
description: A <xref href="System.String"></xref> that represents the current <xref href="Terminal.View"></xref>.
overload: Terminal.View.ToString*
exceptions: []
- uid: Terminal.View.WantMousePositionReports
@@ -1062,37 +1063,6 @@ references:
name: ConsoleDriver
nameWithType: ConsoleDriver
fullName: Terminal.ConsoleDriver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: System.Collections.Generic.IList`1
name: IList
nameWithType: IList
fullName: System.Collections.Generic.IList
- uid: System.Collections.Generic.IList{Terminal.View}
parent: System.Collections.Generic
isExternal: true
name: IList<View>
nameWithType: IList<View>
fullName: System.Collections.Generic.IList<Terminal.View>
spec.csharp:
- uid: System.Collections.Generic.IList`1
name: IList
nameWithType: IList
fullName: System.Collections.Generic.IList
- name: <
nameWithType: <
fullName: <
- uid: Terminal.View
name: View
nameWithType: View
fullName: Terminal.View
- name: '>'
nameWithType: '>'
fullName: '>'
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false
@@ -1261,6 +1231,31 @@ references:
name: Subviews
nameWithType: View.Subviews
fullName: View.Subviews
- uid: System.Collections.Generic.IList`1
name: IList
nameWithType: IList
fullName: System.Collections.Generic.IList
- uid: System.Collections.Generic.IList{Terminal.View}
parent: System.Collections.Generic
isExternal: true
name: IList<View>
nameWithType: IList<View>
fullName: System.Collections.Generic.IList<Terminal.View>
spec.csharp:
- uid: System.Collections.Generic.IList`1
name: IList
nameWithType: IList
fullName: System.Collections.Generic.IList
- name: <
nameWithType: <
fullName: <
- uid: Terminal.View
name: View
nameWithType: View
fullName: Terminal.View
- name: '>'
nameWithType: '>'
fullName: '>'
- uid: Terminal.View.SuperView
parent: Terminal.View
isExternal: false

View File

@@ -45,7 +45,6 @@ items:
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
- Terminal.View.Driver
- Terminal.View.empty
- Terminal.View.EnsureFocus
- Terminal.View.Focused
- Terminal.View.FocusFirst
@@ -169,11 +168,12 @@ items:
assemblies:
- Terminal
namespace: Terminal
summary: The title to be displayed for this window.
syntax:
content: public string Title { get; set; }
return:
type: System.String
description: To be added.
description: The title.
overload: Terminal.Window.Title*
exceptions: []
references:
@@ -363,12 +363,6 @@ references:
name: Driver
nameWithType: View.Driver
fullName: View.Driver
- uid: Terminal.View.empty
parent: Terminal.View
isExternal: false
name: empty
nameWithType: View.empty
fullName: View.empty
- uid: Terminal.View.EnsureFocus
parent: Terminal.View
isExternal: false