123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755 |
- ### YamlMime:ManagedReference
- items:
- - uid: Terminal.Gui.Label
- id: Label
- children:
- - Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,NStack.ustring)
- - Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,System.String)
- - Terminal.Gui.Label.#ctor(System.Int32,System.Int32,NStack.ustring)
- - Terminal.Gui.Label.#ctor(System.Int32,System.Int32,System.String)
- - Terminal.Gui.Label.MeasureLines(NStack.ustring,System.Int32)
- - Terminal.Gui.Label.MeasureLines(System.String,System.Int32)
- - Terminal.Gui.Label.Redraw(Terminal.Gui.Rect)
- - Terminal.Gui.Label.Text
- - Terminal.Gui.Label.TextAlignment
- - Terminal.Gui.Label.TextColor
- langs:
- - csharp
- name: Label
- nameWithType: Label
- fullName: Terminal.Gui.Label
- type: Class
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: Label view, displays a string at a given position, can include multiple lines.
- syntax:
- content: 'public class Label : Terminal.Gui.View'
- inheritance:
- - System.Object
- - Terminal.Gui.Responder
- - Terminal.Gui.View
- implements: []
- inheritedMembers:
- - Terminal.Gui.Responder.CanFocus
- - Terminal.Gui.Responder.MouseEvent(Terminal.Gui.MouseEvent)
- - Terminal.Gui.View.Add(Terminal.Gui.View)
- - Terminal.Gui.View.Add(Terminal.Gui.View[])
- - Terminal.Gui.View.AddCh(System.Int32,System.Int32,System.Int32)
- - 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.Boolean)
- - 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.DrawHotString(System.String,System.Boolean,Terminal.Gui.ColorScheme)
- - Terminal.Gui.View.DrawHotString(System.String,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.Id
- - Terminal.Gui.View.LayoutSubviews
- - Terminal.Gui.View.MostFocused
- - Terminal.Gui.View.Move(System.Int32,System.Int32)
- - Terminal.Gui.View.PositionCursor
- - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- - Terminal.Gui.View.ProcessKey(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
- - uid: Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,NStack.ustring)
- id: '#ctor(Terminal.Gui.Rect,NStack.ustring)'
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: Label(Rect, ustring)
- nameWithType: Label.Label(Rect, ustring)
- fullName: Label.Label(Rect, ustring)
- type: Constructor
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: >-
- Public constructor: creates a label at the given
- coordinate with the given string and uses the specified
- frame for the string.
- syntax:
- content: public Label (Terminal.Gui.Rect rect, NStack.ustring text);
- parameters:
- - id: rect
- type: Terminal.Gui.Rect
- description: To be added.
- - id: text
- type: NStack.ustring
- description: To be added.
- overload: Terminal.Gui.Label.#ctor*
- exceptions: []
- - uid: Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,System.String)
- id: '#ctor(Terminal.Gui.Rect,System.String)'
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: Label(Rect, String)
- nameWithType: Label.Label(Rect, String)
- fullName: Label.Label(Rect, String)
- type: Constructor
- assemblies: []
- namespace: Terminal.Gui
- summary: >-
- Public constructor: creates a label at the given
- coordinate with the given string and uses the specified
- frame for the string.
- syntax:
- content: public Label (Terminal.Gui.Rect rect, string text);
- parameters:
- - id: rect
- type: Terminal.Gui.Rect
- description: To be added.
- - id: text
- type: System.String
- description: To be added.
- overload: Terminal.Gui.Label.#ctor*
- exceptions: []
- - uid: Terminal.Gui.Label.#ctor(System.Int32,System.Int32,NStack.ustring)
- id: '#ctor(System.Int32,System.Int32,NStack.ustring)'
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: Label(Int32, Int32, ustring)
- nameWithType: Label.Label(Int32, Int32, ustring)
- fullName: Label.Label(Int32, Int32, ustring)
- type: Constructor
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: >-
- Public constructor: creates a label at the given
- coordinate with the given string, computes the bounding box
- based on the size of the string, assumes that the string contains
- newlines for multiple lines, no special breaking rules are used.
- syntax:
- content: public Label (int x, int y, NStack.ustring text);
- parameters:
- - id: x
- type: System.Int32
- description: To be added.
- - id: y
- type: System.Int32
- description: To be added.
- - id: text
- type: NStack.ustring
- description: To be added.
- overload: Terminal.Gui.Label.#ctor*
- exceptions: []
- - uid: Terminal.Gui.Label.#ctor(System.Int32,System.Int32,System.String)
- id: '#ctor(System.Int32,System.Int32,System.String)'
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: Label(Int32, Int32, String)
- nameWithType: Label.Label(Int32, Int32, String)
- fullName: Label.Label(Int32, Int32, String)
- type: Constructor
- assemblies: []
- namespace: Terminal.Gui
- summary: >-
- Public constructor: creates a label at the given
- coordinate with the given string, computes the bounding box
- based on the size of the string, assumes that the string contains
- newlines for multiple lines, no special breaking rules are used.
- syntax:
- content: public Label (int x, int y, string text);
- parameters:
- - id: x
- type: System.Int32
- description: To be added.
- - id: y
- type: System.Int32
- description: To be added.
- - id: text
- type: System.String
- description: To be added.
- overload: Terminal.Gui.Label.#ctor*
- exceptions: []
- - uid: Terminal.Gui.Label.MeasureLines(NStack.ustring,System.Int32)
- id: MeasureLines(NStack.ustring,System.Int32)
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: MeasureLines(ustring, Int32)
- nameWithType: Label.MeasureLines(ustring, Int32)
- fullName: Label.MeasureLines(ustring, Int32)
- type: Method
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: Computes the number of lines needed to render the specified text by the Label control
- syntax:
- content: public static int MeasureLines (NStack.ustring text, int width);
- parameters:
- - id: text
- type: NStack.ustring
- description: Text, may contain newlines.
- - id: width
- type: System.Int32
- description: The width for the text.
- return:
- type: System.Int32
- description: Number of lines.
- overload: Terminal.Gui.Label.MeasureLines*
- exceptions: []
- - uid: Terminal.Gui.Label.MeasureLines(System.String,System.Int32)
- id: MeasureLines(System.String,System.Int32)
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: MeasureLines(String, Int32)
- nameWithType: Label.MeasureLines(String, Int32)
- fullName: Label.MeasureLines(String, Int32)
- type: Method
- assemblies: []
- namespace: Terminal.Gui
- summary: Computes the number of lines needed to render the specified text by the Label control
- syntax:
- content: public static int MeasureLines (string text, int width);
- parameters:
- - id: text
- type: System.String
- description: Text, may contain newlines.
- - id: width
- type: System.Int32
- description: The width for the text.
- return:
- type: System.Int32
- description: Number of lines.
- overload: Terminal.Gui.Label.MeasureLines*
- exceptions: []
- - uid: Terminal.Gui.Label.Redraw(Terminal.Gui.Rect)
- id: Redraw(Terminal.Gui.Rect)
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: Redraw(Rect)
- nameWithType: Label.Redraw(Rect)
- fullName: Label.Redraw(Rect)
- type: Method
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- syntax:
- content: public override void Redraw (Terminal.Gui.Rect region);
- parameters:
- - id: region
- type: Terminal.Gui.Rect
- description: To be added.
- overload: Terminal.Gui.Label.Redraw*
- exceptions: []
- - uid: Terminal.Gui.Label.Text
- id: Text
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: Text
- nameWithType: Label.Text
- fullName: Label.Text
- type: Property
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: The text displayed by this widget.
- syntax:
- content: public virtual NStack.ustring Text { get; set; }
- return:
- type: NStack.ustring
- description: To be added.
- overload: Terminal.Gui.Label.Text*
- exceptions: []
- - uid: Terminal.Gui.Label.TextAlignment
- id: TextAlignment
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: TextAlignment
- nameWithType: Label.TextAlignment
- fullName: Label.TextAlignment
- type: Property
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: Controls the text-alignemtn property of the label, changing it will redisplay the label.
- syntax:
- content: public Terminal.Gui.TextAlignment TextAlignment { get; set; }
- return:
- type: Terminal.Gui.TextAlignment
- description: The text alignment.
- overload: Terminal.Gui.Label.TextAlignment*
- exceptions: []
- - uid: Terminal.Gui.Label.TextColor
- id: TextColor
- parent: Terminal.Gui.Label
- langs:
- - csharp
- name: TextColor
- nameWithType: Label.TextColor
- fullName: Label.TextColor
- type: Property
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: The color used for the label
- syntax:
- content: public Terminal.Gui.Attribute TextColor { get; set; }
- return:
- type: Terminal.Gui.Attribute
- description: To be added.
- overload: Terminal.Gui.Label.TextColor*
- exceptions: []
- references:
- - uid: Terminal.Gui.View
- parent: Terminal.Gui
- isExternal: false
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - uid: Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,NStack.ustring)
- parent: Terminal.Gui.Label
- isExternal: false
- name: Label(Rect, ustring)
- nameWithType: Label.Label(Rect, ustring)
- fullName: Label.Label(Rect, ustring)
- - uid: Terminal.Gui.Rect
- parent: Terminal.Gui
- isExternal: false
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - uid: NStack.ustring
- parent: NStack
- isExternal: true
- name: ustring
- nameWithType: ustring
- fullName: NStack.ustring
- - uid: Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,System.String)
- parent: Terminal.Gui.Label
- isExternal: false
- name: Label(Rect, String)
- nameWithType: Label.Label(Rect, String)
- fullName: Label.Label(Rect, String)
- - uid: System.String
- parent: System
- isExternal: true
- name: String
- nameWithType: String
- fullName: System.String
- - uid: Terminal.Gui.Label.#ctor(System.Int32,System.Int32,NStack.ustring)
- parent: Terminal.Gui.Label
- isExternal: false
- name: Label(Int32, Int32, ustring)
- nameWithType: Label.Label(Int32, Int32, ustring)
- fullName: Label.Label(Int32, Int32, ustring)
- - uid: System.Int32
- parent: System
- isExternal: true
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- - uid: Terminal.Gui.Label.#ctor(System.Int32,System.Int32,System.String)
- parent: Terminal.Gui.Label
- isExternal: false
- name: Label(Int32, Int32, String)
- nameWithType: Label.Label(Int32, Int32, String)
- fullName: Label.Label(Int32, Int32, String)
- - uid: Terminal.Gui.Label.MeasureLines(NStack.ustring,System.Int32)
- parent: Terminal.Gui.Label
- isExternal: false
- name: MeasureLines(ustring, Int32)
- nameWithType: Label.MeasureLines(ustring, Int32)
- fullName: Label.MeasureLines(ustring, Int32)
- - uid: Terminal.Gui.Label.MeasureLines(System.String,System.Int32)
- parent: Terminal.Gui.Label
- isExternal: false
- name: MeasureLines(String, Int32)
- nameWithType: Label.MeasureLines(String, Int32)
- fullName: Label.MeasureLines(String, Int32)
- - uid: Terminal.Gui.Label.Redraw(Terminal.Gui.Rect)
- parent: Terminal.Gui.Label
- isExternal: false
- name: Redraw(Rect)
- nameWithType: Label.Redraw(Rect)
- fullName: Label.Redraw(Rect)
- - uid: Terminal.Gui.Label.Text
- parent: Terminal.Gui.Label
- isExternal: false
- name: Text
- nameWithType: Label.Text
- fullName: Label.Text
- - uid: Terminal.Gui.Label.TextAlignment
- parent: Terminal.Gui.Label
- isExternal: false
- name: TextAlignment
- nameWithType: Label.TextAlignment
- fullName: Label.TextAlignment
- - uid: Terminal.Gui.TextAlignment
- parent: Terminal.Gui
- isExternal: false
- name: TextAlignment
- nameWithType: TextAlignment
- fullName: Terminal.Gui.TextAlignment
- - uid: Terminal.Gui.Label.TextColor
- parent: Terminal.Gui.Label
- isExternal: false
- name: TextColor
- nameWithType: Label.TextColor
- fullName: Label.TextColor
- - uid: Terminal.Gui.Attribute
- parent: Terminal.Gui
- isExternal: false
- name: Attribute
- nameWithType: Attribute
- fullName: Terminal.Gui.Attribute
- - uid: Terminal.Gui.Label.#ctor*
- parent: Terminal.Gui.Label
- isExternal: false
- name: Label
- nameWithType: Label.Label
- fullName: Label.Label
- - uid: Terminal.Gui.Label.MeasureLines*
- parent: Terminal.Gui.Label
- isExternal: false
- name: MeasureLines
- nameWithType: Label.MeasureLines
- fullName: Label.MeasureLines
- - uid: Terminal.Gui.Label.Redraw*
- parent: Terminal.Gui.Label
- isExternal: false
- name: Redraw
- nameWithType: Label.Redraw
- fullName: Label.Redraw
- - uid: Terminal.Gui.Label.Text*
- parent: Terminal.Gui.Label
- isExternal: false
- name: Text
- nameWithType: Label.Text
- fullName: Label.Text
- - uid: Terminal.Gui.Label.TextAlignment*
- parent: Terminal.Gui.Label
- isExternal: false
- name: TextAlignment
- nameWithType: Label.TextAlignment
- fullName: Label.TextAlignment
- - uid: Terminal.Gui.Label.TextColor*
- parent: Terminal.Gui.Label
- isExternal: false
- name: TextColor
- nameWithType: Label.TextColor
- fullName: Label.TextColor
- - uid: Terminal.Gui.Responder.CanFocus
- parent: Terminal.Gui.Responder
- isExternal: false
- name: CanFocus
- nameWithType: Responder.CanFocus
- fullName: Responder.CanFocus
- - uid: Terminal.Gui.View.HasFocus
- parent: Terminal.Gui.View
- isExternal: false
- name: HasFocus
- nameWithType: View.HasFocus
- fullName: View.HasFocus
- - uid: Terminal.Gui.Responder.MouseEvent(Terminal.Gui.MouseEvent)
- parent: Terminal.Gui.Responder
- isExternal: false
- name: MouseEvent(MouseEvent)
- nameWithType: Responder.MouseEvent(MouseEvent)
- fullName: Responder.MouseEvent(MouseEvent)
- - 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.ProcessKey(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.View
- isExternal: false
- name: ProcessKey(KeyEvent)
- nameWithType: View.ProcessKey(KeyEvent)
- fullName: View.ProcessKey(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.AddCh(System.Int32,System.Int32,System.Int32)
- parent: Terminal.Gui.View
- isExternal: false
- name: AddCh(Int32, Int32, Int32)
- nameWithType: View.AddCh(Int32, Int32, Int32)
- fullName: View.AddCh(Int32, Int32, Int32)
- - 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.Boolean)
- parent: Terminal.Gui.View
- isExternal: false
- name: DrawFrame(Rect, Boolean)
- nameWithType: View.DrawFrame(Rect, Boolean)
- fullName: View.DrawFrame(Rect, Boolean)
- - 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.DrawHotString(System.String,System.Boolean,Terminal.Gui.ColorScheme)
- parent: Terminal.Gui.View
- isExternal: false
- name: DrawHotString(String, Boolean, ColorScheme)
- nameWithType: View.DrawHotString(String, Boolean, ColorScheme)
- fullName: View.DrawHotString(String, Boolean, ColorScheme)
- - uid: Terminal.Gui.View.DrawHotString(System.String,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
- parent: Terminal.Gui.View
- isExternal: false
- name: DrawHotString(String, Attribute, Attribute)
- nameWithType: View.DrawHotString(String, Attribute, Attribute)
- fullName: View.DrawHotString(String, 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.Id
- parent: Terminal.Gui.View
- isExternal: false
- name: Id
- nameWithType: View.Id
- fullName: View.Id
- - 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.PositionCursor
- parent: Terminal.Gui.View
- isExternal: false
- name: PositionCursor()
- nameWithType: View.PositionCursor()
- fullName: View.PositionCursor()
- - 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
|