### YamlMime:ManagedReference items: - uid: Terminal.Gui.TextView id: TextView children: - Terminal.Gui.TextView.#ctor - Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect) - Terminal.Gui.TextView.CanFocus - Terminal.Gui.TextView.CurrentColumn - Terminal.Gui.TextView.CurrentRow - Terminal.Gui.TextView.LoadFile(System.String) - Terminal.Gui.TextView.LoadStream(System.IO.Stream) - Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent) - Terminal.Gui.TextView.PositionCursor - Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) - Terminal.Gui.TextView.ReadOnly - Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) - Terminal.Gui.TextView.ScrollTo(System.Int32) - Terminal.Gui.TextView.Text langs: - csharp name: TextView nameWithType: TextView fullName: Terminal.Gui.TextView type: Class assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Multi-line text editing view remarks: "

\n The text view provides a multi-line text view. Users interact\n with it with the standard Emacs commands for movement or the arrow\n keys. \n

\n
ShortcutAction performed
Left cursor, Control-b\n Moves the editing point left.\n
Right cursor, Control-f\n Moves the editing point right.\n
Alt-b\n Moves one word back.\n
Alt-f\n Moves one word forward.\n
Up cursor, Control-p\n Moves the editing point one line up.\n
Down cursor, Control-n\n Moves the editing point one line down\n
Home key, Control-a\n Moves the cursor to the beginning of the line.\n
End key, Control-e\n Moves the cursor to the end of the line.\n
Delete, Control-d\n Deletes the character in front of the cursor.\n
Backspace\n Deletes the character behind the cursor.\n
Control-k\n Deletes the text until the end of the line and replaces the kill buffer\n with the deleted text. You can paste this text in a different place by\n using Control-y.\n
Control-y\n Pastes the content of the kill ring into the current position.\n
Alt-d\n Deletes the word above the cursor and adds it to the kill ring. You \n can paste the contents of the kill ring with Control-y.\n
Control-q\n Quotes the next input character, to prevent the normal processing of\n key handling to take place.\n
" syntax: content: 'public class TextView : Terminal.Gui.View' inheritance: - System.Object - Terminal.Gui.Responder - Terminal.Gui.View implements: [] inheritedMembers: - Terminal.Gui.View.Add(Terminal.Gui.View) - Terminal.Gui.View.Add(Terminal.Gui.View[]) - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune) - Terminal.Gui.View.Bounds - Terminal.Gui.View.ChildNeedsDisplay - Terminal.Gui.View.Clear - Terminal.Gui.View.Clear(Terminal.Gui.Rect) - Terminal.Gui.View.ClearNeedsDisplay - Terminal.Gui.View.ClipToBounds - Terminal.Gui.View.ColorScheme - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean) - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme) - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute) - Terminal.Gui.View.Driver - Terminal.Gui.View.EnsureFocus - Terminal.Gui.View.Focused - Terminal.Gui.View.FocusFirst - Terminal.Gui.View.FocusLast - Terminal.Gui.View.FocusNext - Terminal.Gui.View.FocusPrev - Terminal.Gui.View.Frame - Terminal.Gui.View.GetEnumerator - Terminal.Gui.View.HasFocus - Terminal.Gui.View.Height - Terminal.Gui.View.Id - Terminal.Gui.View.LayoutStyle - Terminal.Gui.View.LayoutSubviews - Terminal.Gui.View.MostFocused - Terminal.Gui.View.Move(System.Int32,System.Int32) - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent) - Terminal.Gui.View.Remove(Terminal.Gui.View) - Terminal.Gui.View.RemoveAll - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32) - Terminal.Gui.View.SetClip(Terminal.Gui.Rect) - Terminal.Gui.View.SetFocus(Terminal.Gui.View) - Terminal.Gui.View.SetNeedsDisplay - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect) - Terminal.Gui.View.Subviews - Terminal.Gui.View.SuperView - Terminal.Gui.View.ToString - Terminal.Gui.View.WantMousePositionReports - Terminal.Gui.View.Width - Terminal.Gui.View.X - Terminal.Gui.View.Y - uid: Terminal.Gui.TextView.#ctor id: '#ctor' parent: Terminal.Gui.TextView langs: - csharp name: TextView() nameWithType: TextView.TextView() fullName: TextView.TextView() type: Constructor assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Public constructor, creates a view on the specified area, with dimensions controlled with the X, Y, Width and Height properties. syntax: content: public TextView (); parameters: [] overload: Terminal.Gui.TextView.#ctor* exceptions: [] - uid: Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect) id: '#ctor(Terminal.Gui.Rect)' parent: Terminal.Gui.TextView langs: - csharp name: TextView(Rect) nameWithType: TextView.TextView(Rect) fullName: TextView.TextView(Rect) type: Constructor assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Public constructor, creates a view on the specified area, with absolute position and size. syntax: content: public TextView (Terminal.Gui.Rect frame); parameters: - id: frame type: Terminal.Gui.Rect description: To be added. overload: Terminal.Gui.TextView.#ctor* exceptions: [] - uid: Terminal.Gui.TextView.CanFocus id: CanFocus parent: Terminal.Gui.TextView langs: - csharp name: CanFocus nameWithType: TextView.CanFocus fullName: TextView.CanFocus type: Property assemblies: - Terminal.Gui namespace: Terminal.Gui syntax: content: public override bool CanFocus { get; set; } return: type: System.Boolean description: To be added. overload: Terminal.Gui.TextView.CanFocus* exceptions: [] - uid: Terminal.Gui.TextView.CurrentColumn id: CurrentColumn parent: Terminal.Gui.TextView langs: - csharp name: CurrentColumn nameWithType: TextView.CurrentColumn fullName: TextView.CurrentColumn type: Property assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Gets the cursor column. syntax: content: public int CurrentColumn { get; } return: type: System.Int32 description: The cursor column. overload: Terminal.Gui.TextView.CurrentColumn* exceptions: [] - uid: Terminal.Gui.TextView.CurrentRow id: CurrentRow parent: Terminal.Gui.TextView langs: - csharp name: CurrentRow nameWithType: TextView.CurrentRow fullName: TextView.CurrentRow type: Property assemblies: - Terminal.Gui namespace: Terminal.Gui summary: The current cursor row. syntax: content: public int CurrentRow { get; } return: type: System.Int32 description: To be added. overload: Terminal.Gui.TextView.CurrentRow* exceptions: [] - uid: Terminal.Gui.TextView.LoadFile(System.String) id: LoadFile(System.String) parent: Terminal.Gui.TextView langs: - csharp name: LoadFile(String) nameWithType: TextView.LoadFile(String) fullName: TextView.LoadFile(String) type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Loads the contents of the file into the TextView. syntax: content: public bool LoadFile (string path); parameters: - id: path type: System.String description: Path to the file to load. return: type: System.Boolean description: true, if file was loaded, false otherwise. overload: Terminal.Gui.TextView.LoadFile* exceptions: [] - uid: Terminal.Gui.TextView.LoadStream(System.IO.Stream) id: LoadStream(System.IO.Stream) parent: Terminal.Gui.TextView langs: - csharp name: LoadStream(Stream) nameWithType: TextView.LoadStream(Stream) fullName: TextView.LoadStream(Stream) type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Loads the contents of the stream into the TextView. syntax: content: public void LoadStream (System.IO.Stream stream); parameters: - id: stream type: System.IO.Stream description: Stream to load the contents from. overload: Terminal.Gui.TextView.LoadStream* exceptions: [] - uid: Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent) id: MouseEvent(Terminal.Gui.MouseEvent) parent: Terminal.Gui.TextView langs: - csharp name: MouseEvent(MouseEvent) nameWithType: TextView.MouseEvent(MouseEvent) fullName: TextView.MouseEvent(MouseEvent) type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui syntax: content: public override bool MouseEvent (Terminal.Gui.MouseEvent ev); parameters: - id: ev type: Terminal.Gui.MouseEvent description: To be added. return: type: System.Boolean description: To be added. overload: Terminal.Gui.TextView.MouseEvent* exceptions: [] - uid: Terminal.Gui.TextView.PositionCursor id: PositionCursor parent: Terminal.Gui.TextView langs: - csharp name: PositionCursor() nameWithType: TextView.PositionCursor() fullName: TextView.PositionCursor() type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Positions the cursor on the current row and column syntax: content: public override void PositionCursor (); parameters: [] overload: Terminal.Gui.TextView.PositionCursor* exceptions: [] - uid: Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) id: ProcessKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.TextView langs: - csharp name: ProcessKey(KeyEvent) nameWithType: TextView.ProcessKey(KeyEvent) fullName: TextView.ProcessKey(KeyEvent) type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui syntax: content: public override bool ProcessKey (Terminal.Gui.KeyEvent kb); parameters: - id: kb type: Terminal.Gui.KeyEvent description: To be added. return: type: System.Boolean description: To be added. overload: Terminal.Gui.TextView.ProcessKey* exceptions: [] - uid: Terminal.Gui.TextView.ReadOnly id: ReadOnly parent: Terminal.Gui.TextView langs: - csharp name: ReadOnly nameWithType: TextView.ReadOnly fullName: TextView.ReadOnly type: Property assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Indicates readonly attribute of TextView syntax: content: public bool ReadOnly { get; set; } return: type: System.Boolean description: Boolean value(Default false) overload: Terminal.Gui.TextView.ReadOnly* exceptions: [] - uid: Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) id: Redraw(Terminal.Gui.Rect) parent: Terminal.Gui.TextView langs: - csharp name: Redraw(Rect) nameWithType: TextView.Redraw(Rect) fullName: TextView.Redraw(Rect) type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Redraw the text editor region syntax: content: public override void Redraw (Terminal.Gui.Rect region); parameters: - id: region type: Terminal.Gui.Rect description: The region to redraw. overload: Terminal.Gui.TextView.Redraw* exceptions: [] - uid: Terminal.Gui.TextView.ScrollTo(System.Int32) id: ScrollTo(System.Int32) parent: Terminal.Gui.TextView langs: - csharp name: ScrollTo(Int32) nameWithType: TextView.ScrollTo(Int32) fullName: TextView.ScrollTo(Int32) type: Method assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Will scroll the view to display the specified row at the top syntax: content: public void ScrollTo (int row); parameters: - id: row type: System.Int32 description: Row that should be displayed at the top, if the value is negative it will be reset to zero overload: Terminal.Gui.TextView.ScrollTo* exceptions: [] - uid: Terminal.Gui.TextView.Text id: Text parent: Terminal.Gui.TextView langs: - csharp name: Text nameWithType: TextView.Text fullName: TextView.Text type: Property assemblies: - Terminal.Gui namespace: Terminal.Gui summary: Sets or gets the text in the entry. syntax: content: public NStack.ustring Text { get; set; } return: type: NStack.ustring description: To be added. overload: Terminal.Gui.TextView.Text* exceptions: [] references: - uid: Terminal.Gui.View parent: Terminal.Gui isExternal: false name: View nameWithType: View fullName: Terminal.Gui.View - uid: Terminal.Gui.TextView.#ctor parent: Terminal.Gui.TextView isExternal: false name: TextView() nameWithType: TextView.TextView() fullName: TextView.TextView() - uid: Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect) parent: Terminal.Gui.TextView isExternal: false name: TextView(Rect) nameWithType: TextView.TextView(Rect) fullName: TextView.TextView(Rect) - uid: Terminal.Gui.Rect parent: Terminal.Gui isExternal: false name: Rect nameWithType: Rect fullName: Terminal.Gui.Rect - uid: Terminal.Gui.TextView.CanFocus parent: Terminal.Gui.TextView isExternal: false name: CanFocus nameWithType: TextView.CanFocus fullName: TextView.CanFocus - uid: System.Boolean parent: System isExternal: true name: Boolean nameWithType: Boolean fullName: System.Boolean - uid: Terminal.Gui.TextView.CurrentColumn parent: Terminal.Gui.TextView isExternal: false name: CurrentColumn nameWithType: TextView.CurrentColumn fullName: TextView.CurrentColumn - uid: System.Int32 parent: System isExternal: true name: Int32 nameWithType: Int32 fullName: System.Int32 - uid: Terminal.Gui.TextView.CurrentRow parent: Terminal.Gui.TextView isExternal: false name: CurrentRow nameWithType: TextView.CurrentRow fullName: TextView.CurrentRow - uid: Terminal.Gui.TextView.LoadFile(System.String) parent: Terminal.Gui.TextView isExternal: false name: LoadFile(String) nameWithType: TextView.LoadFile(String) fullName: TextView.LoadFile(String) - uid: System.String parent: System isExternal: true name: String nameWithType: String fullName: System.String - uid: Terminal.Gui.TextView.LoadStream(System.IO.Stream) parent: Terminal.Gui.TextView isExternal: false name: LoadStream(Stream) nameWithType: TextView.LoadStream(Stream) fullName: TextView.LoadStream(Stream) - uid: System.IO.Stream parent: System.IO isExternal: true name: Stream nameWithType: Stream fullName: System.IO.Stream - uid: Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent) parent: Terminal.Gui.TextView isExternal: false name: MouseEvent(MouseEvent) nameWithType: TextView.MouseEvent(MouseEvent) fullName: TextView.MouseEvent(MouseEvent) - uid: Terminal.Gui.MouseEvent parent: Terminal.Gui isExternal: false name: MouseEvent nameWithType: MouseEvent fullName: Terminal.Gui.MouseEvent - uid: Terminal.Gui.TextView.PositionCursor parent: Terminal.Gui.TextView isExternal: false name: PositionCursor() nameWithType: TextView.PositionCursor() fullName: TextView.PositionCursor() - uid: Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.TextView isExternal: false name: ProcessKey(KeyEvent) nameWithType: TextView.ProcessKey(KeyEvent) fullName: TextView.ProcessKey(KeyEvent) - uid: Terminal.Gui.KeyEvent parent: Terminal.Gui isExternal: false name: KeyEvent nameWithType: KeyEvent fullName: Terminal.Gui.KeyEvent - uid: Terminal.Gui.TextView.ReadOnly parent: Terminal.Gui.TextView isExternal: false name: ReadOnly nameWithType: TextView.ReadOnly fullName: TextView.ReadOnly - uid: Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) parent: Terminal.Gui.TextView isExternal: false name: Redraw(Rect) nameWithType: TextView.Redraw(Rect) fullName: TextView.Redraw(Rect) - uid: Terminal.Gui.TextView.ScrollTo(System.Int32) parent: Terminal.Gui.TextView isExternal: false name: ScrollTo(Int32) nameWithType: TextView.ScrollTo(Int32) fullName: TextView.ScrollTo(Int32) - uid: Terminal.Gui.TextView.Text parent: Terminal.Gui.TextView isExternal: false name: Text nameWithType: TextView.Text fullName: TextView.Text - uid: NStack.ustring parent: NStack isExternal: true name: ustring nameWithType: ustring fullName: NStack.ustring - uid: Terminal.Gui.TextView.#ctor* parent: Terminal.Gui.TextView isExternal: false name: TextView nameWithType: TextView.TextView fullName: TextView.TextView - uid: Terminal.Gui.TextView.CanFocus* parent: Terminal.Gui.TextView isExternal: false name: CanFocus nameWithType: TextView.CanFocus fullName: TextView.CanFocus - uid: Terminal.Gui.TextView.CurrentColumn* parent: Terminal.Gui.TextView isExternal: false name: CurrentColumn nameWithType: TextView.CurrentColumn fullName: TextView.CurrentColumn - uid: Terminal.Gui.TextView.CurrentRow* parent: Terminal.Gui.TextView isExternal: false name: CurrentRow nameWithType: TextView.CurrentRow fullName: TextView.CurrentRow - uid: Terminal.Gui.TextView.LoadFile* parent: Terminal.Gui.TextView isExternal: false name: LoadFile nameWithType: TextView.LoadFile fullName: TextView.LoadFile - uid: Terminal.Gui.TextView.LoadStream* parent: Terminal.Gui.TextView isExternal: false name: LoadStream nameWithType: TextView.LoadStream fullName: TextView.LoadStream - uid: Terminal.Gui.TextView.MouseEvent* parent: Terminal.Gui.TextView isExternal: false name: MouseEvent nameWithType: TextView.MouseEvent fullName: TextView.MouseEvent - uid: Terminal.Gui.TextView.PositionCursor* parent: Terminal.Gui.TextView isExternal: false name: PositionCursor nameWithType: TextView.PositionCursor fullName: TextView.PositionCursor - uid: Terminal.Gui.TextView.ProcessKey* parent: Terminal.Gui.TextView isExternal: false name: ProcessKey nameWithType: TextView.ProcessKey fullName: TextView.ProcessKey - uid: Terminal.Gui.TextView.ReadOnly* parent: Terminal.Gui.TextView isExternal: false name: ReadOnly nameWithType: TextView.ReadOnly fullName: TextView.ReadOnly - uid: Terminal.Gui.TextView.Redraw* parent: Terminal.Gui.TextView isExternal: false name: Redraw nameWithType: TextView.Redraw fullName: TextView.Redraw - uid: Terminal.Gui.TextView.ScrollTo* parent: Terminal.Gui.TextView isExternal: false name: ScrollTo nameWithType: TextView.ScrollTo fullName: TextView.ScrollTo - uid: Terminal.Gui.TextView.Text* parent: Terminal.Gui.TextView isExternal: false name: Text nameWithType: TextView.Text fullName: TextView.Text - uid: Terminal.Gui.View.HasFocus parent: Terminal.Gui.View isExternal: false name: HasFocus nameWithType: View.HasFocus fullName: View.HasFocus - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.View isExternal: false name: ProcessColdKey(KeyEvent) nameWithType: View.ProcessColdKey(KeyEvent) fullName: View.ProcessColdKey(KeyEvent) - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.View isExternal: false name: ProcessHotKey(KeyEvent) nameWithType: View.ProcessHotKey(KeyEvent) fullName: View.ProcessHotKey(KeyEvent) - uid: Terminal.Gui.View.Add(Terminal.Gui.View) parent: Terminal.Gui.View isExternal: false name: Add(View) nameWithType: View.Add(View) fullName: View.Add(View) - uid: Terminal.Gui.View.Add(Terminal.Gui.View[]) parent: Terminal.Gui.View isExternal: false name: Add(View[]) nameWithType: View.Add(View[]) fullName: View.Add(View[]) - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune) parent: Terminal.Gui.View isExternal: false name: AddRune(Int32, Int32, Rune) nameWithType: View.AddRune(Int32, Int32, Rune) fullName: View.AddRune(Int32, Int32, Rune) - uid: Terminal.Gui.View.Bounds parent: Terminal.Gui.View isExternal: false name: Bounds nameWithType: View.Bounds fullName: View.Bounds - uid: Terminal.Gui.View.ChildNeedsDisplay parent: Terminal.Gui.View isExternal: false name: ChildNeedsDisplay() nameWithType: View.ChildNeedsDisplay() fullName: View.ChildNeedsDisplay() - uid: Terminal.Gui.View.Clear parent: Terminal.Gui.View isExternal: false name: Clear() nameWithType: View.Clear() fullName: View.Clear() - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect) parent: Terminal.Gui.View isExternal: false name: Clear(Rect) nameWithType: View.Clear(Rect) fullName: View.Clear(Rect) - uid: Terminal.Gui.View.ClearNeedsDisplay parent: Terminal.Gui.View isExternal: false name: ClearNeedsDisplay() nameWithType: View.ClearNeedsDisplay() fullName: View.ClearNeedsDisplay() - uid: Terminal.Gui.View.ClipToBounds parent: Terminal.Gui.View isExternal: false name: ClipToBounds() nameWithType: View.ClipToBounds() fullName: View.ClipToBounds() - uid: Terminal.Gui.View.ColorScheme parent: Terminal.Gui.View isExternal: false name: ColorScheme nameWithType: View.ColorScheme fullName: View.ColorScheme - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean) parent: Terminal.Gui.View isExternal: false name: DrawFrame(Rect, Int32, Boolean) nameWithType: View.DrawFrame(Rect, Int32, Boolean) fullName: View.DrawFrame(Rect, Int32, Boolean) - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme) parent: Terminal.Gui.View isExternal: false name: DrawHotString(ustring, Boolean, ColorScheme) nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme) fullName: View.DrawHotString(ustring, Boolean, ColorScheme) - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute) parent: Terminal.Gui.View isExternal: false name: DrawHotString(ustring, Attribute, Attribute) nameWithType: View.DrawHotString(ustring, Attribute, Attribute) fullName: View.DrawHotString(ustring, Attribute, Attribute) - uid: Terminal.Gui.View.Driver parent: Terminal.Gui.View isExternal: false name: Driver nameWithType: View.Driver fullName: View.Driver - uid: Terminal.Gui.View.EnsureFocus parent: Terminal.Gui.View isExternal: false name: EnsureFocus() nameWithType: View.EnsureFocus() fullName: View.EnsureFocus() - uid: Terminal.Gui.View.Focused parent: Terminal.Gui.View isExternal: false name: Focused nameWithType: View.Focused fullName: View.Focused - uid: Terminal.Gui.View.FocusFirst parent: Terminal.Gui.View isExternal: false name: FocusFirst() nameWithType: View.FocusFirst() fullName: View.FocusFirst() - uid: Terminal.Gui.View.FocusLast parent: Terminal.Gui.View isExternal: false name: FocusLast() nameWithType: View.FocusLast() fullName: View.FocusLast() - uid: Terminal.Gui.View.FocusNext parent: Terminal.Gui.View isExternal: false name: FocusNext() nameWithType: View.FocusNext() fullName: View.FocusNext() - uid: Terminal.Gui.View.FocusPrev parent: Terminal.Gui.View isExternal: false name: FocusPrev() nameWithType: View.FocusPrev() fullName: View.FocusPrev() - uid: Terminal.Gui.View.Frame parent: Terminal.Gui.View isExternal: false name: Frame nameWithType: View.Frame fullName: View.Frame - uid: Terminal.Gui.View.GetEnumerator parent: Terminal.Gui.View isExternal: false name: GetEnumerator() nameWithType: View.GetEnumerator() fullName: View.GetEnumerator() - uid: Terminal.Gui.View.Height parent: Terminal.Gui.View isExternal: false name: Height nameWithType: View.Height fullName: View.Height - uid: Terminal.Gui.View.Id parent: Terminal.Gui.View isExternal: false name: Id nameWithType: View.Id fullName: View.Id - uid: Terminal.Gui.View.LayoutStyle parent: Terminal.Gui.View isExternal: false name: LayoutStyle nameWithType: View.LayoutStyle fullName: View.LayoutStyle - uid: Terminal.Gui.View.LayoutSubviews parent: Terminal.Gui.View isExternal: false name: LayoutSubviews() nameWithType: View.LayoutSubviews() fullName: View.LayoutSubviews() - uid: Terminal.Gui.View.MostFocused parent: Terminal.Gui.View isExternal: false name: MostFocused nameWithType: View.MostFocused fullName: View.MostFocused - uid: Terminal.Gui.View.Move(System.Int32,System.Int32) parent: Terminal.Gui.View isExternal: false name: Move(Int32, Int32) nameWithType: View.Move(Int32, Int32) fullName: View.Move(Int32, Int32) - uid: Terminal.Gui.View.Remove(Terminal.Gui.View) parent: Terminal.Gui.View isExternal: false name: Remove(View) nameWithType: View.Remove(View) fullName: View.Remove(View) - uid: Terminal.Gui.View.RemoveAll parent: Terminal.Gui.View isExternal: false name: RemoveAll() nameWithType: View.RemoveAll() fullName: View.RemoveAll() - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32) parent: Terminal.Gui.View isExternal: false name: ScreenToView(Int32, Int32) nameWithType: View.ScreenToView(Int32, Int32) fullName: View.ScreenToView(Int32, Int32) - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect) parent: Terminal.Gui.View isExternal: false name: SetClip(Rect) nameWithType: View.SetClip(Rect) fullName: View.SetClip(Rect) - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View) parent: Terminal.Gui.View isExternal: false name: SetFocus(View) nameWithType: View.SetFocus(View) fullName: View.SetFocus(View) - uid: Terminal.Gui.View.SetNeedsDisplay parent: Terminal.Gui.View isExternal: false name: SetNeedsDisplay() nameWithType: View.SetNeedsDisplay() fullName: View.SetNeedsDisplay() - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect) parent: Terminal.Gui.View isExternal: false name: SetNeedsDisplay(Rect) nameWithType: View.SetNeedsDisplay(Rect) fullName: View.SetNeedsDisplay(Rect) - uid: Terminal.Gui.View.Subviews parent: Terminal.Gui.View isExternal: false name: Subviews nameWithType: View.Subviews fullName: View.Subviews - uid: Terminal.Gui.View.SuperView parent: Terminal.Gui.View isExternal: false name: SuperView nameWithType: View.SuperView fullName: View.SuperView - uid: Terminal.Gui.View.ToString parent: Terminal.Gui.View isExternal: false name: ToString() nameWithType: View.ToString() fullName: View.ToString() - uid: Terminal.Gui.View.WantMousePositionReports parent: Terminal.Gui.View isExternal: false name: WantMousePositionReports nameWithType: View.WantMousePositionReports fullName: View.WantMousePositionReports - uid: Terminal.Gui.View.Width parent: Terminal.Gui.View isExternal: false name: Width nameWithType: View.Width fullName: View.Width - uid: Terminal.Gui.View.X parent: Terminal.Gui.View isExternal: false name: X nameWithType: View.X fullName: View.X - uid: Terminal.Gui.View.Y parent: Terminal.Gui.View isExternal: false name: Y nameWithType: View.Y fullName: View.Y