Terminal.Gui.Dialog.yml 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Dialog
  4. commentId: T:Terminal.Gui.Dialog
  5. id: Dialog
  6. parent: Terminal.Gui
  7. children:
  8. - Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
  9. - Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  10. - Terminal.Gui.Dialog.LayoutSubviews
  11. - Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  12. langs:
  13. - csharp
  14. - vb
  15. name: Dialog
  16. nameWithType: Dialog
  17. fullName: Terminal.Gui.Dialog
  18. type: Class
  19. source:
  20. remote:
  21. path: Terminal.Gui/Windows/Dialog.cs
  22. branch: refactor_core
  23. repo: tig:tig/gui.cs.git
  24. id: Dialog
  25. path: ../Terminal.Gui/Windows/Dialog.cs
  26. startLine: 21
  27. assemblies:
  28. - Terminal.Gui
  29. namespace: Terminal.Gui
  30. summary: "\nThe <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref> <xref href=\"Terminal.Gui.View\" data-throw-if-not-resolved=\"false\"></xref> is a <xref href=\"Terminal.Gui.Window\" data-throw-if-not-resolved=\"false\"></xref> that by default is centered and contains one \nor more <xref href=\"Terminal.Gui.Button\" data-throw-if-not-resolved=\"false\"></xref>. It defaults to the <xref href=\"Terminal.Gui.Colors.Dialog\" data-throw-if-not-resolved=\"false\"></xref> color scheme and has a 1 cell padding around the edges.\n"
  31. remarks: "\nTo run the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref> modally, create the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref>, and pass it to <xref href=\"Terminal.Gui.Application.Run\" data-throw-if-not-resolved=\"false\"></xref>. \nThis will execute the dialog until it terminates via the [ESC] or [CTRL-Q] key, or when one of the views\nor buttons added to the dialog calls <xref href=\"Terminal.Gui.Application.RequestStop\" data-throw-if-not-resolved=\"false\"></xref>.\n"
  32. example: []
  33. syntax:
  34. content: 'public class Dialog : Window, IEnumerable'
  35. content.vb: >-
  36. Public Class Dialog
  37. Inherits Window
  38. Implements IEnumerable
  39. inheritance:
  40. - System.Object
  41. - Terminal.Gui.Responder
  42. - Terminal.Gui.View
  43. - Terminal.Gui.Toplevel
  44. - Terminal.Gui.Window
  45. derivedClasses:
  46. - Terminal.Gui.FileDialog
  47. implements:
  48. - System.Collections.IEnumerable
  49. inheritedMembers:
  50. - Terminal.Gui.Window.Title
  51. - Terminal.Gui.Window.GetEnumerator
  52. - Terminal.Gui.Window.Add(Terminal.Gui.View)
  53. - Terminal.Gui.Window.Remove(Terminal.Gui.View)
  54. - Terminal.Gui.Window.RemoveAll
  55. - Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  56. - Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  57. - Terminal.Gui.Toplevel.Running
  58. - Terminal.Gui.Toplevel.Ready
  59. - Terminal.Gui.Toplevel.Create
  60. - Terminal.Gui.Toplevel.CanFocus
  61. - Terminal.Gui.Toplevel.Modal
  62. - Terminal.Gui.Toplevel.MenuBar
  63. - Terminal.Gui.Toplevel.StatusBar
  64. - Terminal.Gui.Toplevel.WillPresent
  65. - Terminal.Gui.View.Enter
  66. - Terminal.Gui.View.Leave
  67. - Terminal.Gui.View.MouseEnter
  68. - Terminal.Gui.View.MouseLeave
  69. - Terminal.Gui.View.Driver
  70. - Terminal.Gui.View.Subviews
  71. - Terminal.Gui.View.Id
  72. - Terminal.Gui.View.IsCurrentTop
  73. - Terminal.Gui.View.WantMousePositionReports
  74. - Terminal.Gui.View.WantContinuousButtonPressed
  75. - Terminal.Gui.View.Frame
  76. - Terminal.Gui.View.LayoutStyle
  77. - Terminal.Gui.View.Bounds
  78. - Terminal.Gui.View.X
  79. - Terminal.Gui.View.Y
  80. - Terminal.Gui.View.Width
  81. - Terminal.Gui.View.Height
  82. - Terminal.Gui.View.SuperView
  83. - Terminal.Gui.View.SetNeedsDisplay
  84. - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  85. - Terminal.Gui.View.ChildNeedsDisplay
  86. - Terminal.Gui.View.Add(Terminal.Gui.View[])
  87. - Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
  88. - Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
  89. - Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
  90. - Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
  91. - Terminal.Gui.View.Clear
  92. - Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  93. - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  94. - Terminal.Gui.View.ClipToBounds
  95. - Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  96. - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  97. - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  98. - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  99. - Terminal.Gui.View.Move(System.Int32,System.Int32)
  100. - Terminal.Gui.View.PositionCursor
  101. - Terminal.Gui.View.HasFocus
  102. - Terminal.Gui.View.OnEnter
  103. - Terminal.Gui.View.OnLeave
  104. - Terminal.Gui.View.Focused
  105. - Terminal.Gui.View.MostFocused
  106. - Terminal.Gui.View.ColorScheme
  107. - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  108. - Terminal.Gui.View.ClearNeedsDisplay
  109. - Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  110. - Terminal.Gui.View.KeyPress
  111. - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  112. - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  113. - Terminal.Gui.View.KeyDown
  114. - Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
  115. - Terminal.Gui.View.KeyUp
  116. - Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
  117. - Terminal.Gui.View.EnsureFocus
  118. - Terminal.Gui.View.FocusFirst
  119. - Terminal.Gui.View.FocusLast
  120. - Terminal.Gui.View.FocusPrev
  121. - Terminal.Gui.View.FocusNext
  122. - Terminal.Gui.View.ToString
  123. - Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
  124. - Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
  125. - System.Object.Equals(System.Object)
  126. - System.Object.Equals(System.Object,System.Object)
  127. - System.Object.GetHashCode
  128. - System.Object.GetType
  129. - System.Object.MemberwiseClone
  130. - System.Object.ReferenceEquals(System.Object,System.Object)
  131. modifiers.csharp:
  132. - public
  133. - class
  134. modifiers.vb:
  135. - Public
  136. - Class
  137. - uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
  138. commentId: M:Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
  139. id: '#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])'
  140. parent: Terminal.Gui.Dialog
  141. langs:
  142. - csharp
  143. - vb
  144. name: Dialog(ustring, Int32, Int32, Button[])
  145. nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[])
  146. fullName: Terminal.Gui.Dialog.Dialog(NStack.ustring, System.Int32, System.Int32, Terminal.Gui.Button[])
  147. type: Constructor
  148. source:
  149. remote:
  150. path: Terminal.Gui/Windows/Dialog.cs
  151. branch: refactor_core
  152. repo: tig:tig/gui.cs.git
  153. id: .ctor
  154. path: ../Terminal.Gui/Windows/Dialog.cs
  155. startLine: 32
  156. assemblies:
  157. - Terminal.Gui
  158. namespace: Terminal.Gui
  159. summary: "\nInitializes a new instance of the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref> class with an optional set of <xref href=\"Terminal.Gui.Button\" data-throw-if-not-resolved=\"false\"></xref>s to display\n"
  160. example: []
  161. syntax:
  162. content: public Dialog(ustring title, int width, int height, params Button[] buttons)
  163. parameters:
  164. - id: title
  165. type: NStack.ustring
  166. description: Title for the dialog.
  167. - id: width
  168. type: System.Int32
  169. description: Width for the dialog.
  170. - id: height
  171. type: System.Int32
  172. description: Height for the dialog.
  173. - id: buttons
  174. type: Terminal.Gui.Button[]
  175. description: Optional buttons to lay out at the bottom of the dialog.
  176. content.vb: Public Sub New(title As ustring, width As Integer, height As Integer, ParamArray buttons As Button())
  177. overload: Terminal.Gui.Dialog.#ctor*
  178. nameWithType.vb: Dialog.Dialog(ustring, Int32, Int32, Button())
  179. modifiers.csharp:
  180. - public
  181. modifiers.vb:
  182. - Public
  183. fullName.vb: Terminal.Gui.Dialog.Dialog(NStack.ustring, System.Int32, System.Int32, Terminal.Gui.Button())
  184. name.vb: Dialog(ustring, Int32, Int32, Button())
  185. - uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  186. commentId: M:Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  187. id: AddButton(Terminal.Gui.Button)
  188. parent: Terminal.Gui.Dialog
  189. langs:
  190. - csharp
  191. - vb
  192. name: AddButton(Button)
  193. nameWithType: Dialog.AddButton(Button)
  194. fullName: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  195. type: Method
  196. source:
  197. remote:
  198. path: Terminal.Gui/Windows/Dialog.cs
  199. branch: refactor_core
  200. repo: tig:tig/gui.cs.git
  201. id: AddButton
  202. path: ../Terminal.Gui/Windows/Dialog.cs
  203. startLine: 53
  204. assemblies:
  205. - Terminal.Gui
  206. namespace: Terminal.Gui
  207. summary: "\nAdds a <xref href=\"Terminal.Gui.Button\" data-throw-if-not-resolved=\"false\"></xref> to the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref>, its layout will be controled by the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref>\n"
  208. example: []
  209. syntax:
  210. content: public void AddButton(Button button)
  211. parameters:
  212. - id: button
  213. type: Terminal.Gui.Button
  214. description: Button to add.
  215. content.vb: Public Sub AddButton(button As Button)
  216. overload: Terminal.Gui.Dialog.AddButton*
  217. modifiers.csharp:
  218. - public
  219. modifiers.vb:
  220. - Public
  221. - uid: Terminal.Gui.Dialog.LayoutSubviews
  222. commentId: M:Terminal.Gui.Dialog.LayoutSubviews
  223. id: LayoutSubviews
  224. parent: Terminal.Gui.Dialog
  225. langs:
  226. - csharp
  227. - vb
  228. name: LayoutSubviews()
  229. nameWithType: Dialog.LayoutSubviews()
  230. fullName: Terminal.Gui.Dialog.LayoutSubviews()
  231. type: Method
  232. source:
  233. remote:
  234. path: Terminal.Gui/Windows/Dialog.cs
  235. branch: refactor_core
  236. repo: tig:tig/gui.cs.git
  237. id: LayoutSubviews
  238. path: ../Terminal.Gui/Windows/Dialog.cs
  239. startLine: 63
  240. assemblies:
  241. - Terminal.Gui
  242. namespace: Terminal.Gui
  243. example: []
  244. syntax:
  245. content: public override void LayoutSubviews()
  246. content.vb: Public Overrides Sub LayoutSubviews
  247. overridden: Terminal.Gui.View.LayoutSubviews
  248. overload: Terminal.Gui.Dialog.LayoutSubviews*
  249. modifiers.csharp:
  250. - public
  251. - override
  252. modifiers.vb:
  253. - Public
  254. - Overrides
  255. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  256. commentId: M:Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  257. id: ProcessKey(Terminal.Gui.KeyEvent)
  258. parent: Terminal.Gui.Dialog
  259. langs:
  260. - csharp
  261. - vb
  262. name: ProcessKey(KeyEvent)
  263. nameWithType: Dialog.ProcessKey(KeyEvent)
  264. fullName: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  265. type: Method
  266. source:
  267. remote:
  268. path: Terminal.Gui/Windows/Dialog.cs
  269. branch: refactor_core
  270. repo: tig:tig/gui.cs.git
  271. id: ProcessKey
  272. path: ../Terminal.Gui/Windows/Dialog.cs
  273. startLine: 88
  274. assemblies:
  275. - Terminal.Gui
  276. namespace: Terminal.Gui
  277. example: []
  278. syntax:
  279. content: public override bool ProcessKey(KeyEvent kb)
  280. parameters:
  281. - id: kb
  282. type: Terminal.Gui.KeyEvent
  283. return:
  284. type: System.Boolean
  285. content.vb: Public Overrides Function ProcessKey(kb As KeyEvent) As Boolean
  286. overridden: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
  287. overload: Terminal.Gui.Dialog.ProcessKey*
  288. modifiers.csharp:
  289. - public
  290. - override
  291. modifiers.vb:
  292. - Public
  293. - Overrides
  294. references:
  295. - uid: Terminal.Gui.Dialog
  296. commentId: T:Terminal.Gui.Dialog
  297. parent: Terminal.Gui
  298. name: Dialog
  299. nameWithType: Dialog
  300. fullName: Terminal.Gui.Dialog
  301. - uid: Terminal.Gui.View
  302. commentId: T:Terminal.Gui.View
  303. parent: Terminal.Gui
  304. name: View
  305. nameWithType: View
  306. fullName: Terminal.Gui.View
  307. - uid: Terminal.Gui.Window
  308. commentId: T:Terminal.Gui.Window
  309. parent: Terminal.Gui
  310. name: Window
  311. nameWithType: Window
  312. fullName: Terminal.Gui.Window
  313. - uid: Terminal.Gui.Button
  314. commentId: T:Terminal.Gui.Button
  315. parent: Terminal.Gui
  316. name: Button
  317. nameWithType: Button
  318. fullName: Terminal.Gui.Button
  319. - uid: Terminal.Gui.Colors.Dialog
  320. commentId: P:Terminal.Gui.Colors.Dialog
  321. isExternal: true
  322. - uid: Terminal.Gui.Application.Run
  323. commentId: M:Terminal.Gui.Application.Run
  324. isExternal: true
  325. - uid: Terminal.Gui.Application.RequestStop
  326. commentId: M:Terminal.Gui.Application.RequestStop
  327. isExternal: true
  328. - uid: Terminal.Gui
  329. commentId: N:Terminal.Gui
  330. name: Terminal.Gui
  331. nameWithType: Terminal.Gui
  332. fullName: Terminal.Gui
  333. - uid: System.Object
  334. commentId: T:System.Object
  335. parent: System
  336. isExternal: true
  337. name: Object
  338. nameWithType: Object
  339. fullName: System.Object
  340. - uid: Terminal.Gui.Responder
  341. commentId: T:Terminal.Gui.Responder
  342. parent: Terminal.Gui
  343. name: Responder
  344. nameWithType: Responder
  345. fullName: Terminal.Gui.Responder
  346. - uid: Terminal.Gui.Toplevel
  347. commentId: T:Terminal.Gui.Toplevel
  348. parent: Terminal.Gui
  349. name: Toplevel
  350. nameWithType: Toplevel
  351. fullName: Terminal.Gui.Toplevel
  352. - uid: System.Collections.IEnumerable
  353. commentId: T:System.Collections.IEnumerable
  354. parent: System.Collections
  355. isExternal: true
  356. name: IEnumerable
  357. nameWithType: IEnumerable
  358. fullName: System.Collections.IEnumerable
  359. - uid: Terminal.Gui.Window.Title
  360. commentId: P:Terminal.Gui.Window.Title
  361. parent: Terminal.Gui.Window
  362. name: Title
  363. nameWithType: Window.Title
  364. fullName: Terminal.Gui.Window.Title
  365. - uid: Terminal.Gui.Window.GetEnumerator
  366. commentId: M:Terminal.Gui.Window.GetEnumerator
  367. parent: Terminal.Gui.Window
  368. name: GetEnumerator()
  369. nameWithType: Window.GetEnumerator()
  370. fullName: Terminal.Gui.Window.GetEnumerator()
  371. spec.csharp:
  372. - uid: Terminal.Gui.Window.GetEnumerator
  373. name: GetEnumerator
  374. nameWithType: Window.GetEnumerator
  375. fullName: Terminal.Gui.Window.GetEnumerator
  376. - name: (
  377. nameWithType: (
  378. fullName: (
  379. - name: )
  380. nameWithType: )
  381. fullName: )
  382. spec.vb:
  383. - uid: Terminal.Gui.Window.GetEnumerator
  384. name: GetEnumerator
  385. nameWithType: Window.GetEnumerator
  386. fullName: Terminal.Gui.Window.GetEnumerator
  387. - name: (
  388. nameWithType: (
  389. fullName: (
  390. - name: )
  391. nameWithType: )
  392. fullName: )
  393. - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
  394. commentId: M:Terminal.Gui.Window.Add(Terminal.Gui.View)
  395. parent: Terminal.Gui.Window
  396. name: Add(View)
  397. nameWithType: Window.Add(View)
  398. fullName: Terminal.Gui.Window.Add(Terminal.Gui.View)
  399. spec.csharp:
  400. - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
  401. name: Add
  402. nameWithType: Window.Add
  403. fullName: Terminal.Gui.Window.Add
  404. - name: (
  405. nameWithType: (
  406. fullName: (
  407. - uid: Terminal.Gui.View
  408. name: View
  409. nameWithType: View
  410. fullName: Terminal.Gui.View
  411. - name: )
  412. nameWithType: )
  413. fullName: )
  414. spec.vb:
  415. - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
  416. name: Add
  417. nameWithType: Window.Add
  418. fullName: Terminal.Gui.Window.Add
  419. - name: (
  420. nameWithType: (
  421. fullName: (
  422. - uid: Terminal.Gui.View
  423. name: View
  424. nameWithType: View
  425. fullName: Terminal.Gui.View
  426. - name: )
  427. nameWithType: )
  428. fullName: )
  429. - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
  430. commentId: M:Terminal.Gui.Window.Remove(Terminal.Gui.View)
  431. parent: Terminal.Gui.Window
  432. name: Remove(View)
  433. nameWithType: Window.Remove(View)
  434. fullName: Terminal.Gui.Window.Remove(Terminal.Gui.View)
  435. spec.csharp:
  436. - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
  437. name: Remove
  438. nameWithType: Window.Remove
  439. fullName: Terminal.Gui.Window.Remove
  440. - name: (
  441. nameWithType: (
  442. fullName: (
  443. - uid: Terminal.Gui.View
  444. name: View
  445. nameWithType: View
  446. fullName: Terminal.Gui.View
  447. - name: )
  448. nameWithType: )
  449. fullName: )
  450. spec.vb:
  451. - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
  452. name: Remove
  453. nameWithType: Window.Remove
  454. fullName: Terminal.Gui.Window.Remove
  455. - name: (
  456. nameWithType: (
  457. fullName: (
  458. - uid: Terminal.Gui.View
  459. name: View
  460. nameWithType: View
  461. fullName: Terminal.Gui.View
  462. - name: )
  463. nameWithType: )
  464. fullName: )
  465. - uid: Terminal.Gui.Window.RemoveAll
  466. commentId: M:Terminal.Gui.Window.RemoveAll
  467. parent: Terminal.Gui.Window
  468. name: RemoveAll()
  469. nameWithType: Window.RemoveAll()
  470. fullName: Terminal.Gui.Window.RemoveAll()
  471. spec.csharp:
  472. - uid: Terminal.Gui.Window.RemoveAll
  473. name: RemoveAll
  474. nameWithType: Window.RemoveAll
  475. fullName: Terminal.Gui.Window.RemoveAll
  476. - name: (
  477. nameWithType: (
  478. fullName: (
  479. - name: )
  480. nameWithType: )
  481. fullName: )
  482. spec.vb:
  483. - uid: Terminal.Gui.Window.RemoveAll
  484. name: RemoveAll
  485. nameWithType: Window.RemoveAll
  486. fullName: Terminal.Gui.Window.RemoveAll
  487. - name: (
  488. nameWithType: (
  489. fullName: (
  490. - name: )
  491. nameWithType: )
  492. fullName: )
  493. - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  494. commentId: M:Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  495. parent: Terminal.Gui.Window
  496. name: Redraw(Rect)
  497. nameWithType: Window.Redraw(Rect)
  498. fullName: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  499. spec.csharp:
  500. - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  501. name: Redraw
  502. nameWithType: Window.Redraw
  503. fullName: Terminal.Gui.Window.Redraw
  504. - name: (
  505. nameWithType: (
  506. fullName: (
  507. - uid: Terminal.Gui.Rect
  508. name: Rect
  509. nameWithType: Rect
  510. fullName: Terminal.Gui.Rect
  511. - name: )
  512. nameWithType: )
  513. fullName: )
  514. spec.vb:
  515. - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  516. name: Redraw
  517. nameWithType: Window.Redraw
  518. fullName: Terminal.Gui.Window.Redraw
  519. - name: (
  520. nameWithType: (
  521. fullName: (
  522. - uid: Terminal.Gui.Rect
  523. name: Rect
  524. nameWithType: Rect
  525. fullName: Terminal.Gui.Rect
  526. - name: )
  527. nameWithType: )
  528. fullName: )
  529. - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  530. commentId: M:Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  531. parent: Terminal.Gui.Window
  532. name: MouseEvent(MouseEvent)
  533. nameWithType: Window.MouseEvent(MouseEvent)
  534. fullName: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  535. spec.csharp:
  536. - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  537. name: MouseEvent
  538. nameWithType: Window.MouseEvent
  539. fullName: Terminal.Gui.Window.MouseEvent
  540. - name: (
  541. nameWithType: (
  542. fullName: (
  543. - uid: Terminal.Gui.MouseEvent
  544. name: MouseEvent
  545. nameWithType: MouseEvent
  546. fullName: Terminal.Gui.MouseEvent
  547. - name: )
  548. nameWithType: )
  549. fullName: )
  550. spec.vb:
  551. - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  552. name: MouseEvent
  553. nameWithType: Window.MouseEvent
  554. fullName: Terminal.Gui.Window.MouseEvent
  555. - name: (
  556. nameWithType: (
  557. fullName: (
  558. - uid: Terminal.Gui.MouseEvent
  559. name: MouseEvent
  560. nameWithType: MouseEvent
  561. fullName: Terminal.Gui.MouseEvent
  562. - name: )
  563. nameWithType: )
  564. fullName: )
  565. - uid: Terminal.Gui.Toplevel.Running
  566. commentId: P:Terminal.Gui.Toplevel.Running
  567. parent: Terminal.Gui.Toplevel
  568. name: Running
  569. nameWithType: Toplevel.Running
  570. fullName: Terminal.Gui.Toplevel.Running
  571. - uid: Terminal.Gui.Toplevel.Ready
  572. commentId: E:Terminal.Gui.Toplevel.Ready
  573. parent: Terminal.Gui.Toplevel
  574. name: Ready
  575. nameWithType: Toplevel.Ready
  576. fullName: Terminal.Gui.Toplevel.Ready
  577. - uid: Terminal.Gui.Toplevel.Create
  578. commentId: M:Terminal.Gui.Toplevel.Create
  579. parent: Terminal.Gui.Toplevel
  580. name: Create()
  581. nameWithType: Toplevel.Create()
  582. fullName: Terminal.Gui.Toplevel.Create()
  583. spec.csharp:
  584. - uid: Terminal.Gui.Toplevel.Create
  585. name: Create
  586. nameWithType: Toplevel.Create
  587. fullName: Terminal.Gui.Toplevel.Create
  588. - name: (
  589. nameWithType: (
  590. fullName: (
  591. - name: )
  592. nameWithType: )
  593. fullName: )
  594. spec.vb:
  595. - uid: Terminal.Gui.Toplevel.Create
  596. name: Create
  597. nameWithType: Toplevel.Create
  598. fullName: Terminal.Gui.Toplevel.Create
  599. - name: (
  600. nameWithType: (
  601. fullName: (
  602. - name: )
  603. nameWithType: )
  604. fullName: )
  605. - uid: Terminal.Gui.Toplevel.CanFocus
  606. commentId: P:Terminal.Gui.Toplevel.CanFocus
  607. parent: Terminal.Gui.Toplevel
  608. name: CanFocus
  609. nameWithType: Toplevel.CanFocus
  610. fullName: Terminal.Gui.Toplevel.CanFocus
  611. - uid: Terminal.Gui.Toplevel.Modal
  612. commentId: P:Terminal.Gui.Toplevel.Modal
  613. parent: Terminal.Gui.Toplevel
  614. name: Modal
  615. nameWithType: Toplevel.Modal
  616. fullName: Terminal.Gui.Toplevel.Modal
  617. - uid: Terminal.Gui.Toplevel.MenuBar
  618. commentId: P:Terminal.Gui.Toplevel.MenuBar
  619. parent: Terminal.Gui.Toplevel
  620. name: MenuBar
  621. nameWithType: Toplevel.MenuBar
  622. fullName: Terminal.Gui.Toplevel.MenuBar
  623. - uid: Terminal.Gui.Toplevel.StatusBar
  624. commentId: P:Terminal.Gui.Toplevel.StatusBar
  625. parent: Terminal.Gui.Toplevel
  626. name: StatusBar
  627. nameWithType: Toplevel.StatusBar
  628. fullName: Terminal.Gui.Toplevel.StatusBar
  629. - uid: Terminal.Gui.Toplevel.WillPresent
  630. commentId: M:Terminal.Gui.Toplevel.WillPresent
  631. parent: Terminal.Gui.Toplevel
  632. name: WillPresent()
  633. nameWithType: Toplevel.WillPresent()
  634. fullName: Terminal.Gui.Toplevel.WillPresent()
  635. spec.csharp:
  636. - uid: Terminal.Gui.Toplevel.WillPresent
  637. name: WillPresent
  638. nameWithType: Toplevel.WillPresent
  639. fullName: Terminal.Gui.Toplevel.WillPresent
  640. - name: (
  641. nameWithType: (
  642. fullName: (
  643. - name: )
  644. nameWithType: )
  645. fullName: )
  646. spec.vb:
  647. - uid: Terminal.Gui.Toplevel.WillPresent
  648. name: WillPresent
  649. nameWithType: Toplevel.WillPresent
  650. fullName: Terminal.Gui.Toplevel.WillPresent
  651. - name: (
  652. nameWithType: (
  653. fullName: (
  654. - name: )
  655. nameWithType: )
  656. fullName: )
  657. - uid: Terminal.Gui.View.Enter
  658. commentId: E:Terminal.Gui.View.Enter
  659. parent: Terminal.Gui.View
  660. name: Enter
  661. nameWithType: View.Enter
  662. fullName: Terminal.Gui.View.Enter
  663. - uid: Terminal.Gui.View.Leave
  664. commentId: E:Terminal.Gui.View.Leave
  665. parent: Terminal.Gui.View
  666. name: Leave
  667. nameWithType: View.Leave
  668. fullName: Terminal.Gui.View.Leave
  669. - uid: Terminal.Gui.View.MouseEnter
  670. commentId: E:Terminal.Gui.View.MouseEnter
  671. parent: Terminal.Gui.View
  672. name: MouseEnter
  673. nameWithType: View.MouseEnter
  674. fullName: Terminal.Gui.View.MouseEnter
  675. - uid: Terminal.Gui.View.MouseLeave
  676. commentId: E:Terminal.Gui.View.MouseLeave
  677. parent: Terminal.Gui.View
  678. name: MouseLeave
  679. nameWithType: View.MouseLeave
  680. fullName: Terminal.Gui.View.MouseLeave
  681. - uid: Terminal.Gui.View.Driver
  682. commentId: P:Terminal.Gui.View.Driver
  683. parent: Terminal.Gui.View
  684. name: Driver
  685. nameWithType: View.Driver
  686. fullName: Terminal.Gui.View.Driver
  687. - uid: Terminal.Gui.View.Subviews
  688. commentId: P:Terminal.Gui.View.Subviews
  689. parent: Terminal.Gui.View
  690. name: Subviews
  691. nameWithType: View.Subviews
  692. fullName: Terminal.Gui.View.Subviews
  693. - uid: Terminal.Gui.View.Id
  694. commentId: P:Terminal.Gui.View.Id
  695. parent: Terminal.Gui.View
  696. name: Id
  697. nameWithType: View.Id
  698. fullName: Terminal.Gui.View.Id
  699. - uid: Terminal.Gui.View.IsCurrentTop
  700. commentId: P:Terminal.Gui.View.IsCurrentTop
  701. parent: Terminal.Gui.View
  702. name: IsCurrentTop
  703. nameWithType: View.IsCurrentTop
  704. fullName: Terminal.Gui.View.IsCurrentTop
  705. - uid: Terminal.Gui.View.WantMousePositionReports
  706. commentId: P:Terminal.Gui.View.WantMousePositionReports
  707. parent: Terminal.Gui.View
  708. name: WantMousePositionReports
  709. nameWithType: View.WantMousePositionReports
  710. fullName: Terminal.Gui.View.WantMousePositionReports
  711. - uid: Terminal.Gui.View.WantContinuousButtonPressed
  712. commentId: P:Terminal.Gui.View.WantContinuousButtonPressed
  713. parent: Terminal.Gui.View
  714. name: WantContinuousButtonPressed
  715. nameWithType: View.WantContinuousButtonPressed
  716. fullName: Terminal.Gui.View.WantContinuousButtonPressed
  717. - uid: Terminal.Gui.View.Frame
  718. commentId: P:Terminal.Gui.View.Frame
  719. parent: Terminal.Gui.View
  720. name: Frame
  721. nameWithType: View.Frame
  722. fullName: Terminal.Gui.View.Frame
  723. - uid: Terminal.Gui.View.LayoutStyle
  724. commentId: P:Terminal.Gui.View.LayoutStyle
  725. parent: Terminal.Gui.View
  726. name: LayoutStyle
  727. nameWithType: View.LayoutStyle
  728. fullName: Terminal.Gui.View.LayoutStyle
  729. - uid: Terminal.Gui.View.Bounds
  730. commentId: P:Terminal.Gui.View.Bounds
  731. parent: Terminal.Gui.View
  732. name: Bounds
  733. nameWithType: View.Bounds
  734. fullName: Terminal.Gui.View.Bounds
  735. - uid: Terminal.Gui.View.X
  736. commentId: P:Terminal.Gui.View.X
  737. parent: Terminal.Gui.View
  738. name: X
  739. nameWithType: View.X
  740. fullName: Terminal.Gui.View.X
  741. - uid: Terminal.Gui.View.Y
  742. commentId: P:Terminal.Gui.View.Y
  743. parent: Terminal.Gui.View
  744. name: Y
  745. nameWithType: View.Y
  746. fullName: Terminal.Gui.View.Y
  747. - uid: Terminal.Gui.View.Width
  748. commentId: P:Terminal.Gui.View.Width
  749. parent: Terminal.Gui.View
  750. name: Width
  751. nameWithType: View.Width
  752. fullName: Terminal.Gui.View.Width
  753. - uid: Terminal.Gui.View.Height
  754. commentId: P:Terminal.Gui.View.Height
  755. parent: Terminal.Gui.View
  756. name: Height
  757. nameWithType: View.Height
  758. fullName: Terminal.Gui.View.Height
  759. - uid: Terminal.Gui.View.SuperView
  760. commentId: P:Terminal.Gui.View.SuperView
  761. parent: Terminal.Gui.View
  762. name: SuperView
  763. nameWithType: View.SuperView
  764. fullName: Terminal.Gui.View.SuperView
  765. - uid: Terminal.Gui.View.SetNeedsDisplay
  766. commentId: M:Terminal.Gui.View.SetNeedsDisplay
  767. parent: Terminal.Gui.View
  768. name: SetNeedsDisplay()
  769. nameWithType: View.SetNeedsDisplay()
  770. fullName: Terminal.Gui.View.SetNeedsDisplay()
  771. spec.csharp:
  772. - uid: Terminal.Gui.View.SetNeedsDisplay
  773. name: SetNeedsDisplay
  774. nameWithType: View.SetNeedsDisplay
  775. fullName: Terminal.Gui.View.SetNeedsDisplay
  776. - name: (
  777. nameWithType: (
  778. fullName: (
  779. - name: )
  780. nameWithType: )
  781. fullName: )
  782. spec.vb:
  783. - uid: Terminal.Gui.View.SetNeedsDisplay
  784. name: SetNeedsDisplay
  785. nameWithType: View.SetNeedsDisplay
  786. fullName: Terminal.Gui.View.SetNeedsDisplay
  787. - name: (
  788. nameWithType: (
  789. fullName: (
  790. - name: )
  791. nameWithType: )
  792. fullName: )
  793. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  794. commentId: M:Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  795. parent: Terminal.Gui.View
  796. name: SetNeedsDisplay(Rect)
  797. nameWithType: View.SetNeedsDisplay(Rect)
  798. fullName: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  799. spec.csharp:
  800. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  801. name: SetNeedsDisplay
  802. nameWithType: View.SetNeedsDisplay
  803. fullName: Terminal.Gui.View.SetNeedsDisplay
  804. - name: (
  805. nameWithType: (
  806. fullName: (
  807. - uid: Terminal.Gui.Rect
  808. name: Rect
  809. nameWithType: Rect
  810. fullName: Terminal.Gui.Rect
  811. - name: )
  812. nameWithType: )
  813. fullName: )
  814. spec.vb:
  815. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  816. name: SetNeedsDisplay
  817. nameWithType: View.SetNeedsDisplay
  818. fullName: Terminal.Gui.View.SetNeedsDisplay
  819. - name: (
  820. nameWithType: (
  821. fullName: (
  822. - uid: Terminal.Gui.Rect
  823. name: Rect
  824. nameWithType: Rect
  825. fullName: Terminal.Gui.Rect
  826. - name: )
  827. nameWithType: )
  828. fullName: )
  829. - uid: Terminal.Gui.View.ChildNeedsDisplay
  830. commentId: M:Terminal.Gui.View.ChildNeedsDisplay
  831. parent: Terminal.Gui.View
  832. name: ChildNeedsDisplay()
  833. nameWithType: View.ChildNeedsDisplay()
  834. fullName: Terminal.Gui.View.ChildNeedsDisplay()
  835. spec.csharp:
  836. - uid: Terminal.Gui.View.ChildNeedsDisplay
  837. name: ChildNeedsDisplay
  838. nameWithType: View.ChildNeedsDisplay
  839. fullName: Terminal.Gui.View.ChildNeedsDisplay
  840. - name: (
  841. nameWithType: (
  842. fullName: (
  843. - name: )
  844. nameWithType: )
  845. fullName: )
  846. spec.vb:
  847. - uid: Terminal.Gui.View.ChildNeedsDisplay
  848. name: ChildNeedsDisplay
  849. nameWithType: View.ChildNeedsDisplay
  850. fullName: Terminal.Gui.View.ChildNeedsDisplay
  851. - name: (
  852. nameWithType: (
  853. fullName: (
  854. - name: )
  855. nameWithType: )
  856. fullName: )
  857. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  858. commentId: M:Terminal.Gui.View.Add(Terminal.Gui.View[])
  859. parent: Terminal.Gui.View
  860. name: Add(View[])
  861. nameWithType: View.Add(View[])
  862. fullName: Terminal.Gui.View.Add(Terminal.Gui.View[])
  863. nameWithType.vb: View.Add(View())
  864. fullName.vb: Terminal.Gui.View.Add(Terminal.Gui.View())
  865. name.vb: Add(View())
  866. spec.csharp:
  867. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  868. name: Add
  869. nameWithType: View.Add
  870. fullName: Terminal.Gui.View.Add
  871. - name: (
  872. nameWithType: (
  873. fullName: (
  874. - uid: Terminal.Gui.View
  875. name: View
  876. nameWithType: View
  877. fullName: Terminal.Gui.View
  878. - name: '[]'
  879. nameWithType: '[]'
  880. fullName: '[]'
  881. - name: )
  882. nameWithType: )
  883. fullName: )
  884. spec.vb:
  885. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  886. name: Add
  887. nameWithType: View.Add
  888. fullName: Terminal.Gui.View.Add
  889. - name: (
  890. nameWithType: (
  891. fullName: (
  892. - uid: Terminal.Gui.View
  893. name: View
  894. nameWithType: View
  895. fullName: Terminal.Gui.View
  896. - name: ()
  897. nameWithType: ()
  898. fullName: ()
  899. - name: )
  900. nameWithType: )
  901. fullName: )
  902. - uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
  903. commentId: M:Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
  904. parent: Terminal.Gui.View
  905. name: BringSubviewToFront(View)
  906. nameWithType: View.BringSubviewToFront(View)
  907. fullName: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
  908. spec.csharp:
  909. - uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
  910. name: BringSubviewToFront
  911. nameWithType: View.BringSubviewToFront
  912. fullName: Terminal.Gui.View.BringSubviewToFront
  913. - name: (
  914. nameWithType: (
  915. fullName: (
  916. - uid: Terminal.Gui.View
  917. name: View
  918. nameWithType: View
  919. fullName: Terminal.Gui.View
  920. - name: )
  921. nameWithType: )
  922. fullName: )
  923. spec.vb:
  924. - uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
  925. name: BringSubviewToFront
  926. nameWithType: View.BringSubviewToFront
  927. fullName: Terminal.Gui.View.BringSubviewToFront
  928. - name: (
  929. nameWithType: (
  930. fullName: (
  931. - uid: Terminal.Gui.View
  932. name: View
  933. nameWithType: View
  934. fullName: Terminal.Gui.View
  935. - name: )
  936. nameWithType: )
  937. fullName: )
  938. - uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
  939. commentId: M:Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
  940. parent: Terminal.Gui.View
  941. name: SendSubviewToBack(View)
  942. nameWithType: View.SendSubviewToBack(View)
  943. fullName: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
  944. spec.csharp:
  945. - uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
  946. name: SendSubviewToBack
  947. nameWithType: View.SendSubviewToBack
  948. fullName: Terminal.Gui.View.SendSubviewToBack
  949. - name: (
  950. nameWithType: (
  951. fullName: (
  952. - uid: Terminal.Gui.View
  953. name: View
  954. nameWithType: View
  955. fullName: Terminal.Gui.View
  956. - name: )
  957. nameWithType: )
  958. fullName: )
  959. spec.vb:
  960. - uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
  961. name: SendSubviewToBack
  962. nameWithType: View.SendSubviewToBack
  963. fullName: Terminal.Gui.View.SendSubviewToBack
  964. - name: (
  965. nameWithType: (
  966. fullName: (
  967. - uid: Terminal.Gui.View
  968. name: View
  969. nameWithType: View
  970. fullName: Terminal.Gui.View
  971. - name: )
  972. nameWithType: )
  973. fullName: )
  974. - uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
  975. commentId: M:Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
  976. parent: Terminal.Gui.View
  977. name: SendSubviewBackwards(View)
  978. nameWithType: View.SendSubviewBackwards(View)
  979. fullName: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
  980. spec.csharp:
  981. - uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
  982. name: SendSubviewBackwards
  983. nameWithType: View.SendSubviewBackwards
  984. fullName: Terminal.Gui.View.SendSubviewBackwards
  985. - name: (
  986. nameWithType: (
  987. fullName: (
  988. - uid: Terminal.Gui.View
  989. name: View
  990. nameWithType: View
  991. fullName: Terminal.Gui.View
  992. - name: )
  993. nameWithType: )
  994. fullName: )
  995. spec.vb:
  996. - uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
  997. name: SendSubviewBackwards
  998. nameWithType: View.SendSubviewBackwards
  999. fullName: Terminal.Gui.View.SendSubviewBackwards
  1000. - name: (
  1001. nameWithType: (
  1002. fullName: (
  1003. - uid: Terminal.Gui.View
  1004. name: View
  1005. nameWithType: View
  1006. fullName: Terminal.Gui.View
  1007. - name: )
  1008. nameWithType: )
  1009. fullName: )
  1010. - uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
  1011. commentId: M:Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
  1012. parent: Terminal.Gui.View
  1013. name: BringSubviewForward(View)
  1014. nameWithType: View.BringSubviewForward(View)
  1015. fullName: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
  1016. spec.csharp:
  1017. - uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
  1018. name: BringSubviewForward
  1019. nameWithType: View.BringSubviewForward
  1020. fullName: Terminal.Gui.View.BringSubviewForward
  1021. - name: (
  1022. nameWithType: (
  1023. fullName: (
  1024. - uid: Terminal.Gui.View
  1025. name: View
  1026. nameWithType: View
  1027. fullName: Terminal.Gui.View
  1028. - name: )
  1029. nameWithType: )
  1030. fullName: )
  1031. spec.vb:
  1032. - uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
  1033. name: BringSubviewForward
  1034. nameWithType: View.BringSubviewForward
  1035. fullName: Terminal.Gui.View.BringSubviewForward
  1036. - name: (
  1037. nameWithType: (
  1038. fullName: (
  1039. - uid: Terminal.Gui.View
  1040. name: View
  1041. nameWithType: View
  1042. fullName: Terminal.Gui.View
  1043. - name: )
  1044. nameWithType: )
  1045. fullName: )
  1046. - uid: Terminal.Gui.View.Clear
  1047. commentId: M:Terminal.Gui.View.Clear
  1048. parent: Terminal.Gui.View
  1049. name: Clear()
  1050. nameWithType: View.Clear()
  1051. fullName: Terminal.Gui.View.Clear()
  1052. spec.csharp:
  1053. - uid: Terminal.Gui.View.Clear
  1054. name: Clear
  1055. nameWithType: View.Clear
  1056. fullName: Terminal.Gui.View.Clear
  1057. - name: (
  1058. nameWithType: (
  1059. fullName: (
  1060. - name: )
  1061. nameWithType: )
  1062. fullName: )
  1063. spec.vb:
  1064. - uid: Terminal.Gui.View.Clear
  1065. name: Clear
  1066. nameWithType: View.Clear
  1067. fullName: Terminal.Gui.View.Clear
  1068. - name: (
  1069. nameWithType: (
  1070. fullName: (
  1071. - name: )
  1072. nameWithType: )
  1073. fullName: )
  1074. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  1075. commentId: M:Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  1076. parent: Terminal.Gui.View
  1077. name: Clear(Rect)
  1078. nameWithType: View.Clear(Rect)
  1079. fullName: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  1080. spec.csharp:
  1081. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  1082. name: Clear
  1083. nameWithType: View.Clear
  1084. fullName: Terminal.Gui.View.Clear
  1085. - name: (
  1086. nameWithType: (
  1087. fullName: (
  1088. - uid: Terminal.Gui.Rect
  1089. name: Rect
  1090. nameWithType: Rect
  1091. fullName: Terminal.Gui.Rect
  1092. - name: )
  1093. nameWithType: )
  1094. fullName: )
  1095. spec.vb:
  1096. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  1097. name: Clear
  1098. nameWithType: View.Clear
  1099. fullName: Terminal.Gui.View.Clear
  1100. - name: (
  1101. nameWithType: (
  1102. fullName: (
  1103. - uid: Terminal.Gui.Rect
  1104. name: Rect
  1105. nameWithType: Rect
  1106. fullName: Terminal.Gui.Rect
  1107. - name: )
  1108. nameWithType: )
  1109. fullName: )
  1110. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  1111. commentId: M:Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  1112. parent: Terminal.Gui.View
  1113. isExternal: true
  1114. name: ScreenToView(Int32, Int32)
  1115. nameWithType: View.ScreenToView(Int32, Int32)
  1116. fullName: Terminal.Gui.View.ScreenToView(System.Int32, System.Int32)
  1117. spec.csharp:
  1118. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  1119. name: ScreenToView
  1120. nameWithType: View.ScreenToView
  1121. fullName: Terminal.Gui.View.ScreenToView
  1122. - name: (
  1123. nameWithType: (
  1124. fullName: (
  1125. - uid: System.Int32
  1126. name: Int32
  1127. nameWithType: Int32
  1128. fullName: System.Int32
  1129. isExternal: true
  1130. - name: ', '
  1131. nameWithType: ', '
  1132. fullName: ', '
  1133. - uid: System.Int32
  1134. name: Int32
  1135. nameWithType: Int32
  1136. fullName: System.Int32
  1137. isExternal: true
  1138. - name: )
  1139. nameWithType: )
  1140. fullName: )
  1141. spec.vb:
  1142. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  1143. name: ScreenToView
  1144. nameWithType: View.ScreenToView
  1145. fullName: Terminal.Gui.View.ScreenToView
  1146. - name: (
  1147. nameWithType: (
  1148. fullName: (
  1149. - uid: System.Int32
  1150. name: Int32
  1151. nameWithType: Int32
  1152. fullName: System.Int32
  1153. isExternal: true
  1154. - name: ', '
  1155. nameWithType: ', '
  1156. fullName: ', '
  1157. - uid: System.Int32
  1158. name: Int32
  1159. nameWithType: Int32
  1160. fullName: System.Int32
  1161. isExternal: true
  1162. - name: )
  1163. nameWithType: )
  1164. fullName: )
  1165. - uid: Terminal.Gui.View.ClipToBounds
  1166. commentId: M:Terminal.Gui.View.ClipToBounds
  1167. parent: Terminal.Gui.View
  1168. name: ClipToBounds()
  1169. nameWithType: View.ClipToBounds()
  1170. fullName: Terminal.Gui.View.ClipToBounds()
  1171. spec.csharp:
  1172. - uid: Terminal.Gui.View.ClipToBounds
  1173. name: ClipToBounds
  1174. nameWithType: View.ClipToBounds
  1175. fullName: Terminal.Gui.View.ClipToBounds
  1176. - name: (
  1177. nameWithType: (
  1178. fullName: (
  1179. - name: )
  1180. nameWithType: )
  1181. fullName: )
  1182. spec.vb:
  1183. - uid: Terminal.Gui.View.ClipToBounds
  1184. name: ClipToBounds
  1185. nameWithType: View.ClipToBounds
  1186. fullName: Terminal.Gui.View.ClipToBounds
  1187. - name: (
  1188. nameWithType: (
  1189. fullName: (
  1190. - name: )
  1191. nameWithType: )
  1192. fullName: )
  1193. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  1194. commentId: M:Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  1195. parent: Terminal.Gui.View
  1196. name: SetClip(Rect)
  1197. nameWithType: View.SetClip(Rect)
  1198. fullName: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  1199. spec.csharp:
  1200. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  1201. name: SetClip
  1202. nameWithType: View.SetClip
  1203. fullName: Terminal.Gui.View.SetClip
  1204. - name: (
  1205. nameWithType: (
  1206. fullName: (
  1207. - uid: Terminal.Gui.Rect
  1208. name: Rect
  1209. nameWithType: Rect
  1210. fullName: Terminal.Gui.Rect
  1211. - name: )
  1212. nameWithType: )
  1213. fullName: )
  1214. spec.vb:
  1215. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  1216. name: SetClip
  1217. nameWithType: View.SetClip
  1218. fullName: Terminal.Gui.View.SetClip
  1219. - name: (
  1220. nameWithType: (
  1221. fullName: (
  1222. - uid: Terminal.Gui.Rect
  1223. name: Rect
  1224. nameWithType: Rect
  1225. fullName: Terminal.Gui.Rect
  1226. - name: )
  1227. nameWithType: )
  1228. fullName: )
  1229. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  1230. commentId: M:Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  1231. parent: Terminal.Gui.View
  1232. isExternal: true
  1233. name: DrawFrame(Rect, Int32, Boolean)
  1234. nameWithType: View.DrawFrame(Rect, Int32, Boolean)
  1235. fullName: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect, System.Int32, System.Boolean)
  1236. spec.csharp:
  1237. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  1238. name: DrawFrame
  1239. nameWithType: View.DrawFrame
  1240. fullName: Terminal.Gui.View.DrawFrame
  1241. - name: (
  1242. nameWithType: (
  1243. fullName: (
  1244. - uid: Terminal.Gui.Rect
  1245. name: Rect
  1246. nameWithType: Rect
  1247. fullName: Terminal.Gui.Rect
  1248. - name: ', '
  1249. nameWithType: ', '
  1250. fullName: ', '
  1251. - uid: System.Int32
  1252. name: Int32
  1253. nameWithType: Int32
  1254. fullName: System.Int32
  1255. isExternal: true
  1256. - name: ', '
  1257. nameWithType: ', '
  1258. fullName: ', '
  1259. - uid: System.Boolean
  1260. name: Boolean
  1261. nameWithType: Boolean
  1262. fullName: System.Boolean
  1263. isExternal: true
  1264. - name: )
  1265. nameWithType: )
  1266. fullName: )
  1267. spec.vb:
  1268. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  1269. name: DrawFrame
  1270. nameWithType: View.DrawFrame
  1271. fullName: Terminal.Gui.View.DrawFrame
  1272. - name: (
  1273. nameWithType: (
  1274. fullName: (
  1275. - uid: Terminal.Gui.Rect
  1276. name: Rect
  1277. nameWithType: Rect
  1278. fullName: Terminal.Gui.Rect
  1279. - name: ', '
  1280. nameWithType: ', '
  1281. fullName: ', '
  1282. - uid: System.Int32
  1283. name: Int32
  1284. nameWithType: Int32
  1285. fullName: System.Int32
  1286. isExternal: true
  1287. - name: ', '
  1288. nameWithType: ', '
  1289. fullName: ', '
  1290. - uid: System.Boolean
  1291. name: Boolean
  1292. nameWithType: Boolean
  1293. fullName: System.Boolean
  1294. isExternal: true
  1295. - name: )
  1296. nameWithType: )
  1297. fullName: )
  1298. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  1299. commentId: M:Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  1300. parent: Terminal.Gui.View
  1301. isExternal: true
  1302. name: DrawHotString(ustring, Attribute, Attribute)
  1303. nameWithType: View.DrawHotString(ustring, Attribute, Attribute)
  1304. fullName: Terminal.Gui.View.DrawHotString(NStack.ustring, Terminal.Gui.Attribute, Terminal.Gui.Attribute)
  1305. spec.csharp:
  1306. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  1307. name: DrawHotString
  1308. nameWithType: View.DrawHotString
  1309. fullName: Terminal.Gui.View.DrawHotString
  1310. - name: (
  1311. nameWithType: (
  1312. fullName: (
  1313. - uid: NStack.ustring
  1314. name: ustring
  1315. nameWithType: ustring
  1316. fullName: NStack.ustring
  1317. isExternal: true
  1318. - name: ', '
  1319. nameWithType: ', '
  1320. fullName: ', '
  1321. - uid: Terminal.Gui.Attribute
  1322. name: Attribute
  1323. nameWithType: Attribute
  1324. fullName: Terminal.Gui.Attribute
  1325. - name: ', '
  1326. nameWithType: ', '
  1327. fullName: ', '
  1328. - uid: Terminal.Gui.Attribute
  1329. name: Attribute
  1330. nameWithType: Attribute
  1331. fullName: Terminal.Gui.Attribute
  1332. - name: )
  1333. nameWithType: )
  1334. fullName: )
  1335. spec.vb:
  1336. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  1337. name: DrawHotString
  1338. nameWithType: View.DrawHotString
  1339. fullName: Terminal.Gui.View.DrawHotString
  1340. - name: (
  1341. nameWithType: (
  1342. fullName: (
  1343. - uid: NStack.ustring
  1344. name: ustring
  1345. nameWithType: ustring
  1346. fullName: NStack.ustring
  1347. isExternal: true
  1348. - name: ', '
  1349. nameWithType: ', '
  1350. fullName: ', '
  1351. - uid: Terminal.Gui.Attribute
  1352. name: Attribute
  1353. nameWithType: Attribute
  1354. fullName: Terminal.Gui.Attribute
  1355. - name: ', '
  1356. nameWithType: ', '
  1357. fullName: ', '
  1358. - uid: Terminal.Gui.Attribute
  1359. name: Attribute
  1360. nameWithType: Attribute
  1361. fullName: Terminal.Gui.Attribute
  1362. - name: )
  1363. nameWithType: )
  1364. fullName: )
  1365. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  1366. commentId: M:Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  1367. parent: Terminal.Gui.View
  1368. isExternal: true
  1369. name: DrawHotString(ustring, Boolean, ColorScheme)
  1370. nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme)
  1371. fullName: Terminal.Gui.View.DrawHotString(NStack.ustring, System.Boolean, Terminal.Gui.ColorScheme)
  1372. spec.csharp:
  1373. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  1374. name: DrawHotString
  1375. nameWithType: View.DrawHotString
  1376. fullName: Terminal.Gui.View.DrawHotString
  1377. - name: (
  1378. nameWithType: (
  1379. fullName: (
  1380. - uid: NStack.ustring
  1381. name: ustring
  1382. nameWithType: ustring
  1383. fullName: NStack.ustring
  1384. isExternal: true
  1385. - name: ', '
  1386. nameWithType: ', '
  1387. fullName: ', '
  1388. - uid: System.Boolean
  1389. name: Boolean
  1390. nameWithType: Boolean
  1391. fullName: System.Boolean
  1392. isExternal: true
  1393. - name: ', '
  1394. nameWithType: ', '
  1395. fullName: ', '
  1396. - uid: Terminal.Gui.ColorScheme
  1397. name: ColorScheme
  1398. nameWithType: ColorScheme
  1399. fullName: Terminal.Gui.ColorScheme
  1400. - name: )
  1401. nameWithType: )
  1402. fullName: )
  1403. spec.vb:
  1404. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  1405. name: DrawHotString
  1406. nameWithType: View.DrawHotString
  1407. fullName: Terminal.Gui.View.DrawHotString
  1408. - name: (
  1409. nameWithType: (
  1410. fullName: (
  1411. - uid: NStack.ustring
  1412. name: ustring
  1413. nameWithType: ustring
  1414. fullName: NStack.ustring
  1415. isExternal: true
  1416. - name: ', '
  1417. nameWithType: ', '
  1418. fullName: ', '
  1419. - uid: System.Boolean
  1420. name: Boolean
  1421. nameWithType: Boolean
  1422. fullName: System.Boolean
  1423. isExternal: true
  1424. - name: ', '
  1425. nameWithType: ', '
  1426. fullName: ', '
  1427. - uid: Terminal.Gui.ColorScheme
  1428. name: ColorScheme
  1429. nameWithType: ColorScheme
  1430. fullName: Terminal.Gui.ColorScheme
  1431. - name: )
  1432. nameWithType: )
  1433. fullName: )
  1434. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  1435. commentId: M:Terminal.Gui.View.Move(System.Int32,System.Int32)
  1436. parent: Terminal.Gui.View
  1437. isExternal: true
  1438. name: Move(Int32, Int32)
  1439. nameWithType: View.Move(Int32, Int32)
  1440. fullName: Terminal.Gui.View.Move(System.Int32, System.Int32)
  1441. spec.csharp:
  1442. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  1443. name: Move
  1444. nameWithType: View.Move
  1445. fullName: Terminal.Gui.View.Move
  1446. - name: (
  1447. nameWithType: (
  1448. fullName: (
  1449. - uid: System.Int32
  1450. name: Int32
  1451. nameWithType: Int32
  1452. fullName: System.Int32
  1453. isExternal: true
  1454. - name: ', '
  1455. nameWithType: ', '
  1456. fullName: ', '
  1457. - uid: System.Int32
  1458. name: Int32
  1459. nameWithType: Int32
  1460. fullName: System.Int32
  1461. isExternal: true
  1462. - name: )
  1463. nameWithType: )
  1464. fullName: )
  1465. spec.vb:
  1466. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  1467. name: Move
  1468. nameWithType: View.Move
  1469. fullName: Terminal.Gui.View.Move
  1470. - name: (
  1471. nameWithType: (
  1472. fullName: (
  1473. - uid: System.Int32
  1474. name: Int32
  1475. nameWithType: Int32
  1476. fullName: System.Int32
  1477. isExternal: true
  1478. - name: ', '
  1479. nameWithType: ', '
  1480. fullName: ', '
  1481. - uid: System.Int32
  1482. name: Int32
  1483. nameWithType: Int32
  1484. fullName: System.Int32
  1485. isExternal: true
  1486. - name: )
  1487. nameWithType: )
  1488. fullName: )
  1489. - uid: Terminal.Gui.View.PositionCursor
  1490. commentId: M:Terminal.Gui.View.PositionCursor
  1491. parent: Terminal.Gui.View
  1492. name: PositionCursor()
  1493. nameWithType: View.PositionCursor()
  1494. fullName: Terminal.Gui.View.PositionCursor()
  1495. spec.csharp:
  1496. - uid: Terminal.Gui.View.PositionCursor
  1497. name: PositionCursor
  1498. nameWithType: View.PositionCursor
  1499. fullName: Terminal.Gui.View.PositionCursor
  1500. - name: (
  1501. nameWithType: (
  1502. fullName: (
  1503. - name: )
  1504. nameWithType: )
  1505. fullName: )
  1506. spec.vb:
  1507. - uid: Terminal.Gui.View.PositionCursor
  1508. name: PositionCursor
  1509. nameWithType: View.PositionCursor
  1510. fullName: Terminal.Gui.View.PositionCursor
  1511. - name: (
  1512. nameWithType: (
  1513. fullName: (
  1514. - name: )
  1515. nameWithType: )
  1516. fullName: )
  1517. - uid: Terminal.Gui.View.HasFocus
  1518. commentId: P:Terminal.Gui.View.HasFocus
  1519. parent: Terminal.Gui.View
  1520. name: HasFocus
  1521. nameWithType: View.HasFocus
  1522. fullName: Terminal.Gui.View.HasFocus
  1523. - uid: Terminal.Gui.View.OnEnter
  1524. commentId: M:Terminal.Gui.View.OnEnter
  1525. parent: Terminal.Gui.View
  1526. name: OnEnter()
  1527. nameWithType: View.OnEnter()
  1528. fullName: Terminal.Gui.View.OnEnter()
  1529. spec.csharp:
  1530. - uid: Terminal.Gui.View.OnEnter
  1531. name: OnEnter
  1532. nameWithType: View.OnEnter
  1533. fullName: Terminal.Gui.View.OnEnter
  1534. - name: (
  1535. nameWithType: (
  1536. fullName: (
  1537. - name: )
  1538. nameWithType: )
  1539. fullName: )
  1540. spec.vb:
  1541. - uid: Terminal.Gui.View.OnEnter
  1542. name: OnEnter
  1543. nameWithType: View.OnEnter
  1544. fullName: Terminal.Gui.View.OnEnter
  1545. - name: (
  1546. nameWithType: (
  1547. fullName: (
  1548. - name: )
  1549. nameWithType: )
  1550. fullName: )
  1551. - uid: Terminal.Gui.View.OnLeave
  1552. commentId: M:Terminal.Gui.View.OnLeave
  1553. parent: Terminal.Gui.View
  1554. name: OnLeave()
  1555. nameWithType: View.OnLeave()
  1556. fullName: Terminal.Gui.View.OnLeave()
  1557. spec.csharp:
  1558. - uid: Terminal.Gui.View.OnLeave
  1559. name: OnLeave
  1560. nameWithType: View.OnLeave
  1561. fullName: Terminal.Gui.View.OnLeave
  1562. - name: (
  1563. nameWithType: (
  1564. fullName: (
  1565. - name: )
  1566. nameWithType: )
  1567. fullName: )
  1568. spec.vb:
  1569. - uid: Terminal.Gui.View.OnLeave
  1570. name: OnLeave
  1571. nameWithType: View.OnLeave
  1572. fullName: Terminal.Gui.View.OnLeave
  1573. - name: (
  1574. nameWithType: (
  1575. fullName: (
  1576. - name: )
  1577. nameWithType: )
  1578. fullName: )
  1579. - uid: Terminal.Gui.View.Focused
  1580. commentId: P:Terminal.Gui.View.Focused
  1581. parent: Terminal.Gui.View
  1582. name: Focused
  1583. nameWithType: View.Focused
  1584. fullName: Terminal.Gui.View.Focused
  1585. - uid: Terminal.Gui.View.MostFocused
  1586. commentId: P:Terminal.Gui.View.MostFocused
  1587. parent: Terminal.Gui.View
  1588. name: MostFocused
  1589. nameWithType: View.MostFocused
  1590. fullName: Terminal.Gui.View.MostFocused
  1591. - uid: Terminal.Gui.View.ColorScheme
  1592. commentId: P:Terminal.Gui.View.ColorScheme
  1593. parent: Terminal.Gui.View
  1594. name: ColorScheme
  1595. nameWithType: View.ColorScheme
  1596. fullName: Terminal.Gui.View.ColorScheme
  1597. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  1598. commentId: M:Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  1599. parent: Terminal.Gui.View
  1600. isExternal: true
  1601. name: AddRune(Int32, Int32, Rune)
  1602. nameWithType: View.AddRune(Int32, Int32, Rune)
  1603. fullName: Terminal.Gui.View.AddRune(System.Int32, System.Int32, System.Rune)
  1604. spec.csharp:
  1605. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  1606. name: AddRune
  1607. nameWithType: View.AddRune
  1608. fullName: Terminal.Gui.View.AddRune
  1609. - name: (
  1610. nameWithType: (
  1611. fullName: (
  1612. - uid: System.Int32
  1613. name: Int32
  1614. nameWithType: Int32
  1615. fullName: System.Int32
  1616. isExternal: true
  1617. - name: ', '
  1618. nameWithType: ', '
  1619. fullName: ', '
  1620. - uid: System.Int32
  1621. name: Int32
  1622. nameWithType: Int32
  1623. fullName: System.Int32
  1624. isExternal: true
  1625. - name: ', '
  1626. nameWithType: ', '
  1627. fullName: ', '
  1628. - uid: System.Rune
  1629. name: Rune
  1630. nameWithType: Rune
  1631. fullName: System.Rune
  1632. isExternal: true
  1633. - name: )
  1634. nameWithType: )
  1635. fullName: )
  1636. spec.vb:
  1637. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  1638. name: AddRune
  1639. nameWithType: View.AddRune
  1640. fullName: Terminal.Gui.View.AddRune
  1641. - name: (
  1642. nameWithType: (
  1643. fullName: (
  1644. - uid: System.Int32
  1645. name: Int32
  1646. nameWithType: Int32
  1647. fullName: System.Int32
  1648. isExternal: true
  1649. - name: ', '
  1650. nameWithType: ', '
  1651. fullName: ', '
  1652. - uid: System.Int32
  1653. name: Int32
  1654. nameWithType: Int32
  1655. fullName: System.Int32
  1656. isExternal: true
  1657. - name: ', '
  1658. nameWithType: ', '
  1659. fullName: ', '
  1660. - uid: System.Rune
  1661. name: Rune
  1662. nameWithType: Rune
  1663. fullName: System.Rune
  1664. isExternal: true
  1665. - name: )
  1666. nameWithType: )
  1667. fullName: )
  1668. - uid: Terminal.Gui.View.ClearNeedsDisplay
  1669. commentId: M:Terminal.Gui.View.ClearNeedsDisplay
  1670. parent: Terminal.Gui.View
  1671. name: ClearNeedsDisplay()
  1672. nameWithType: View.ClearNeedsDisplay()
  1673. fullName: Terminal.Gui.View.ClearNeedsDisplay()
  1674. spec.csharp:
  1675. - uid: Terminal.Gui.View.ClearNeedsDisplay
  1676. name: ClearNeedsDisplay
  1677. nameWithType: View.ClearNeedsDisplay
  1678. fullName: Terminal.Gui.View.ClearNeedsDisplay
  1679. - name: (
  1680. nameWithType: (
  1681. fullName: (
  1682. - name: )
  1683. nameWithType: )
  1684. fullName: )
  1685. spec.vb:
  1686. - uid: Terminal.Gui.View.ClearNeedsDisplay
  1687. name: ClearNeedsDisplay
  1688. nameWithType: View.ClearNeedsDisplay
  1689. fullName: Terminal.Gui.View.ClearNeedsDisplay
  1690. - name: (
  1691. nameWithType: (
  1692. fullName: (
  1693. - name: )
  1694. nameWithType: )
  1695. fullName: )
  1696. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  1697. commentId: M:Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  1698. parent: Terminal.Gui.View
  1699. name: SetFocus(View)
  1700. nameWithType: View.SetFocus(View)
  1701. fullName: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  1702. spec.csharp:
  1703. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  1704. name: SetFocus
  1705. nameWithType: View.SetFocus
  1706. fullName: Terminal.Gui.View.SetFocus
  1707. - name: (
  1708. nameWithType: (
  1709. fullName: (
  1710. - uid: Terminal.Gui.View
  1711. name: View
  1712. nameWithType: View
  1713. fullName: Terminal.Gui.View
  1714. - name: )
  1715. nameWithType: )
  1716. fullName: )
  1717. spec.vb:
  1718. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  1719. name: SetFocus
  1720. nameWithType: View.SetFocus
  1721. fullName: Terminal.Gui.View.SetFocus
  1722. - name: (
  1723. nameWithType: (
  1724. fullName: (
  1725. - uid: Terminal.Gui.View
  1726. name: View
  1727. nameWithType: View
  1728. fullName: Terminal.Gui.View
  1729. - name: )
  1730. nameWithType: )
  1731. fullName: )
  1732. - uid: Terminal.Gui.View.KeyPress
  1733. commentId: E:Terminal.Gui.View.KeyPress
  1734. parent: Terminal.Gui.View
  1735. name: KeyPress
  1736. nameWithType: View.KeyPress
  1737. fullName: Terminal.Gui.View.KeyPress
  1738. - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  1739. commentId: M:Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  1740. parent: Terminal.Gui.View
  1741. name: ProcessHotKey(KeyEvent)
  1742. nameWithType: View.ProcessHotKey(KeyEvent)
  1743. fullName: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  1744. spec.csharp:
  1745. - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  1746. name: ProcessHotKey
  1747. nameWithType: View.ProcessHotKey
  1748. fullName: Terminal.Gui.View.ProcessHotKey
  1749. - name: (
  1750. nameWithType: (
  1751. fullName: (
  1752. - uid: Terminal.Gui.KeyEvent
  1753. name: KeyEvent
  1754. nameWithType: KeyEvent
  1755. fullName: Terminal.Gui.KeyEvent
  1756. - name: )
  1757. nameWithType: )
  1758. fullName: )
  1759. spec.vb:
  1760. - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  1761. name: ProcessHotKey
  1762. nameWithType: View.ProcessHotKey
  1763. fullName: Terminal.Gui.View.ProcessHotKey
  1764. - name: (
  1765. nameWithType: (
  1766. fullName: (
  1767. - uid: Terminal.Gui.KeyEvent
  1768. name: KeyEvent
  1769. nameWithType: KeyEvent
  1770. fullName: Terminal.Gui.KeyEvent
  1771. - name: )
  1772. nameWithType: )
  1773. fullName: )
  1774. - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  1775. commentId: M:Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  1776. parent: Terminal.Gui.View
  1777. name: ProcessColdKey(KeyEvent)
  1778. nameWithType: View.ProcessColdKey(KeyEvent)
  1779. fullName: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  1780. spec.csharp:
  1781. - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  1782. name: ProcessColdKey
  1783. nameWithType: View.ProcessColdKey
  1784. fullName: Terminal.Gui.View.ProcessColdKey
  1785. - name: (
  1786. nameWithType: (
  1787. fullName: (
  1788. - uid: Terminal.Gui.KeyEvent
  1789. name: KeyEvent
  1790. nameWithType: KeyEvent
  1791. fullName: Terminal.Gui.KeyEvent
  1792. - name: )
  1793. nameWithType: )
  1794. fullName: )
  1795. spec.vb:
  1796. - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  1797. name: ProcessColdKey
  1798. nameWithType: View.ProcessColdKey
  1799. fullName: Terminal.Gui.View.ProcessColdKey
  1800. - name: (
  1801. nameWithType: (
  1802. fullName: (
  1803. - uid: Terminal.Gui.KeyEvent
  1804. name: KeyEvent
  1805. nameWithType: KeyEvent
  1806. fullName: Terminal.Gui.KeyEvent
  1807. - name: )
  1808. nameWithType: )
  1809. fullName: )
  1810. - uid: Terminal.Gui.View.KeyDown
  1811. commentId: E:Terminal.Gui.View.KeyDown
  1812. parent: Terminal.Gui.View
  1813. name: KeyDown
  1814. nameWithType: View.KeyDown
  1815. fullName: Terminal.Gui.View.KeyDown
  1816. - uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
  1817. commentId: M:Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
  1818. parent: Terminal.Gui.View
  1819. name: OnKeyDown(KeyEvent)
  1820. nameWithType: View.OnKeyDown(KeyEvent)
  1821. fullName: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
  1822. spec.csharp:
  1823. - uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
  1824. name: OnKeyDown
  1825. nameWithType: View.OnKeyDown
  1826. fullName: Terminal.Gui.View.OnKeyDown
  1827. - name: (
  1828. nameWithType: (
  1829. fullName: (
  1830. - uid: Terminal.Gui.KeyEvent
  1831. name: KeyEvent
  1832. nameWithType: KeyEvent
  1833. fullName: Terminal.Gui.KeyEvent
  1834. - name: )
  1835. nameWithType: )
  1836. fullName: )
  1837. spec.vb:
  1838. - uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
  1839. name: OnKeyDown
  1840. nameWithType: View.OnKeyDown
  1841. fullName: Terminal.Gui.View.OnKeyDown
  1842. - name: (
  1843. nameWithType: (
  1844. fullName: (
  1845. - uid: Terminal.Gui.KeyEvent
  1846. name: KeyEvent
  1847. nameWithType: KeyEvent
  1848. fullName: Terminal.Gui.KeyEvent
  1849. - name: )
  1850. nameWithType: )
  1851. fullName: )
  1852. - uid: Terminal.Gui.View.KeyUp
  1853. commentId: E:Terminal.Gui.View.KeyUp
  1854. parent: Terminal.Gui.View
  1855. name: KeyUp
  1856. nameWithType: View.KeyUp
  1857. fullName: Terminal.Gui.View.KeyUp
  1858. - uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
  1859. commentId: M:Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
  1860. parent: Terminal.Gui.View
  1861. name: OnKeyUp(KeyEvent)
  1862. nameWithType: View.OnKeyUp(KeyEvent)
  1863. fullName: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
  1864. spec.csharp:
  1865. - uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
  1866. name: OnKeyUp
  1867. nameWithType: View.OnKeyUp
  1868. fullName: Terminal.Gui.View.OnKeyUp
  1869. - name: (
  1870. nameWithType: (
  1871. fullName: (
  1872. - uid: Terminal.Gui.KeyEvent
  1873. name: KeyEvent
  1874. nameWithType: KeyEvent
  1875. fullName: Terminal.Gui.KeyEvent
  1876. - name: )
  1877. nameWithType: )
  1878. fullName: )
  1879. spec.vb:
  1880. - uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
  1881. name: OnKeyUp
  1882. nameWithType: View.OnKeyUp
  1883. fullName: Terminal.Gui.View.OnKeyUp
  1884. - name: (
  1885. nameWithType: (
  1886. fullName: (
  1887. - uid: Terminal.Gui.KeyEvent
  1888. name: KeyEvent
  1889. nameWithType: KeyEvent
  1890. fullName: Terminal.Gui.KeyEvent
  1891. - name: )
  1892. nameWithType: )
  1893. fullName: )
  1894. - uid: Terminal.Gui.View.EnsureFocus
  1895. commentId: M:Terminal.Gui.View.EnsureFocus
  1896. parent: Terminal.Gui.View
  1897. name: EnsureFocus()
  1898. nameWithType: View.EnsureFocus()
  1899. fullName: Terminal.Gui.View.EnsureFocus()
  1900. spec.csharp:
  1901. - uid: Terminal.Gui.View.EnsureFocus
  1902. name: EnsureFocus
  1903. nameWithType: View.EnsureFocus
  1904. fullName: Terminal.Gui.View.EnsureFocus
  1905. - name: (
  1906. nameWithType: (
  1907. fullName: (
  1908. - name: )
  1909. nameWithType: )
  1910. fullName: )
  1911. spec.vb:
  1912. - uid: Terminal.Gui.View.EnsureFocus
  1913. name: EnsureFocus
  1914. nameWithType: View.EnsureFocus
  1915. fullName: Terminal.Gui.View.EnsureFocus
  1916. - name: (
  1917. nameWithType: (
  1918. fullName: (
  1919. - name: )
  1920. nameWithType: )
  1921. fullName: )
  1922. - uid: Terminal.Gui.View.FocusFirst
  1923. commentId: M:Terminal.Gui.View.FocusFirst
  1924. parent: Terminal.Gui.View
  1925. name: FocusFirst()
  1926. nameWithType: View.FocusFirst()
  1927. fullName: Terminal.Gui.View.FocusFirst()
  1928. spec.csharp:
  1929. - uid: Terminal.Gui.View.FocusFirst
  1930. name: FocusFirst
  1931. nameWithType: View.FocusFirst
  1932. fullName: Terminal.Gui.View.FocusFirst
  1933. - name: (
  1934. nameWithType: (
  1935. fullName: (
  1936. - name: )
  1937. nameWithType: )
  1938. fullName: )
  1939. spec.vb:
  1940. - uid: Terminal.Gui.View.FocusFirst
  1941. name: FocusFirst
  1942. nameWithType: View.FocusFirst
  1943. fullName: Terminal.Gui.View.FocusFirst
  1944. - name: (
  1945. nameWithType: (
  1946. fullName: (
  1947. - name: )
  1948. nameWithType: )
  1949. fullName: )
  1950. - uid: Terminal.Gui.View.FocusLast
  1951. commentId: M:Terminal.Gui.View.FocusLast
  1952. parent: Terminal.Gui.View
  1953. name: FocusLast()
  1954. nameWithType: View.FocusLast()
  1955. fullName: Terminal.Gui.View.FocusLast()
  1956. spec.csharp:
  1957. - uid: Terminal.Gui.View.FocusLast
  1958. name: FocusLast
  1959. nameWithType: View.FocusLast
  1960. fullName: Terminal.Gui.View.FocusLast
  1961. - name: (
  1962. nameWithType: (
  1963. fullName: (
  1964. - name: )
  1965. nameWithType: )
  1966. fullName: )
  1967. spec.vb:
  1968. - uid: Terminal.Gui.View.FocusLast
  1969. name: FocusLast
  1970. nameWithType: View.FocusLast
  1971. fullName: Terminal.Gui.View.FocusLast
  1972. - name: (
  1973. nameWithType: (
  1974. fullName: (
  1975. - name: )
  1976. nameWithType: )
  1977. fullName: )
  1978. - uid: Terminal.Gui.View.FocusPrev
  1979. commentId: M:Terminal.Gui.View.FocusPrev
  1980. parent: Terminal.Gui.View
  1981. name: FocusPrev()
  1982. nameWithType: View.FocusPrev()
  1983. fullName: Terminal.Gui.View.FocusPrev()
  1984. spec.csharp:
  1985. - uid: Terminal.Gui.View.FocusPrev
  1986. name: FocusPrev
  1987. nameWithType: View.FocusPrev
  1988. fullName: Terminal.Gui.View.FocusPrev
  1989. - name: (
  1990. nameWithType: (
  1991. fullName: (
  1992. - name: )
  1993. nameWithType: )
  1994. fullName: )
  1995. spec.vb:
  1996. - uid: Terminal.Gui.View.FocusPrev
  1997. name: FocusPrev
  1998. nameWithType: View.FocusPrev
  1999. fullName: Terminal.Gui.View.FocusPrev
  2000. - name: (
  2001. nameWithType: (
  2002. fullName: (
  2003. - name: )
  2004. nameWithType: )
  2005. fullName: )
  2006. - uid: Terminal.Gui.View.FocusNext
  2007. commentId: M:Terminal.Gui.View.FocusNext
  2008. parent: Terminal.Gui.View
  2009. name: FocusNext()
  2010. nameWithType: View.FocusNext()
  2011. fullName: Terminal.Gui.View.FocusNext()
  2012. spec.csharp:
  2013. - uid: Terminal.Gui.View.FocusNext
  2014. name: FocusNext
  2015. nameWithType: View.FocusNext
  2016. fullName: Terminal.Gui.View.FocusNext
  2017. - name: (
  2018. nameWithType: (
  2019. fullName: (
  2020. - name: )
  2021. nameWithType: )
  2022. fullName: )
  2023. spec.vb:
  2024. - uid: Terminal.Gui.View.FocusNext
  2025. name: FocusNext
  2026. nameWithType: View.FocusNext
  2027. fullName: Terminal.Gui.View.FocusNext
  2028. - name: (
  2029. nameWithType: (
  2030. fullName: (
  2031. - name: )
  2032. nameWithType: )
  2033. fullName: )
  2034. - uid: Terminal.Gui.View.ToString
  2035. commentId: M:Terminal.Gui.View.ToString
  2036. parent: Terminal.Gui.View
  2037. name: ToString()
  2038. nameWithType: View.ToString()
  2039. fullName: Terminal.Gui.View.ToString()
  2040. spec.csharp:
  2041. - uid: Terminal.Gui.View.ToString
  2042. name: ToString
  2043. nameWithType: View.ToString
  2044. fullName: Terminal.Gui.View.ToString
  2045. - name: (
  2046. nameWithType: (
  2047. fullName: (
  2048. - name: )
  2049. nameWithType: )
  2050. fullName: )
  2051. spec.vb:
  2052. - uid: Terminal.Gui.View.ToString
  2053. name: ToString
  2054. nameWithType: View.ToString
  2055. fullName: Terminal.Gui.View.ToString
  2056. - name: (
  2057. nameWithType: (
  2058. fullName: (
  2059. - name: )
  2060. nameWithType: )
  2061. fullName: )
  2062. - uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
  2063. commentId: M:Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
  2064. parent: Terminal.Gui.View
  2065. name: OnMouseEnter(MouseEvent)
  2066. nameWithType: View.OnMouseEnter(MouseEvent)
  2067. fullName: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
  2068. spec.csharp:
  2069. - uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
  2070. name: OnMouseEnter
  2071. nameWithType: View.OnMouseEnter
  2072. fullName: Terminal.Gui.View.OnMouseEnter
  2073. - name: (
  2074. nameWithType: (
  2075. fullName: (
  2076. - uid: Terminal.Gui.MouseEvent
  2077. name: MouseEvent
  2078. nameWithType: MouseEvent
  2079. fullName: Terminal.Gui.MouseEvent
  2080. - name: )
  2081. nameWithType: )
  2082. fullName: )
  2083. spec.vb:
  2084. - uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
  2085. name: OnMouseEnter
  2086. nameWithType: View.OnMouseEnter
  2087. fullName: Terminal.Gui.View.OnMouseEnter
  2088. - name: (
  2089. nameWithType: (
  2090. fullName: (
  2091. - uid: Terminal.Gui.MouseEvent
  2092. name: MouseEvent
  2093. nameWithType: MouseEvent
  2094. fullName: Terminal.Gui.MouseEvent
  2095. - name: )
  2096. nameWithType: )
  2097. fullName: )
  2098. - uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
  2099. commentId: M:Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
  2100. parent: Terminal.Gui.View
  2101. name: OnMouseLeave(MouseEvent)
  2102. nameWithType: View.OnMouseLeave(MouseEvent)
  2103. fullName: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
  2104. spec.csharp:
  2105. - uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
  2106. name: OnMouseLeave
  2107. nameWithType: View.OnMouseLeave
  2108. fullName: Terminal.Gui.View.OnMouseLeave
  2109. - name: (
  2110. nameWithType: (
  2111. fullName: (
  2112. - uid: Terminal.Gui.MouseEvent
  2113. name: MouseEvent
  2114. nameWithType: MouseEvent
  2115. fullName: Terminal.Gui.MouseEvent
  2116. - name: )
  2117. nameWithType: )
  2118. fullName: )
  2119. spec.vb:
  2120. - uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
  2121. name: OnMouseLeave
  2122. nameWithType: View.OnMouseLeave
  2123. fullName: Terminal.Gui.View.OnMouseLeave
  2124. - name: (
  2125. nameWithType: (
  2126. fullName: (
  2127. - uid: Terminal.Gui.MouseEvent
  2128. name: MouseEvent
  2129. nameWithType: MouseEvent
  2130. fullName: Terminal.Gui.MouseEvent
  2131. - name: )
  2132. nameWithType: )
  2133. fullName: )
  2134. - uid: System.Object.Equals(System.Object)
  2135. commentId: M:System.Object.Equals(System.Object)
  2136. parent: System.Object
  2137. isExternal: true
  2138. name: Equals(Object)
  2139. nameWithType: Object.Equals(Object)
  2140. fullName: System.Object.Equals(System.Object)
  2141. spec.csharp:
  2142. - uid: System.Object.Equals(System.Object)
  2143. name: Equals
  2144. nameWithType: Object.Equals
  2145. fullName: System.Object.Equals
  2146. isExternal: true
  2147. - name: (
  2148. nameWithType: (
  2149. fullName: (
  2150. - uid: System.Object
  2151. name: Object
  2152. nameWithType: Object
  2153. fullName: System.Object
  2154. isExternal: true
  2155. - name: )
  2156. nameWithType: )
  2157. fullName: )
  2158. spec.vb:
  2159. - uid: System.Object.Equals(System.Object)
  2160. name: Equals
  2161. nameWithType: Object.Equals
  2162. fullName: System.Object.Equals
  2163. isExternal: true
  2164. - name: (
  2165. nameWithType: (
  2166. fullName: (
  2167. - uid: System.Object
  2168. name: Object
  2169. nameWithType: Object
  2170. fullName: System.Object
  2171. isExternal: true
  2172. - name: )
  2173. nameWithType: )
  2174. fullName: )
  2175. - uid: System.Object.Equals(System.Object,System.Object)
  2176. commentId: M:System.Object.Equals(System.Object,System.Object)
  2177. parent: System.Object
  2178. isExternal: true
  2179. name: Equals(Object, Object)
  2180. nameWithType: Object.Equals(Object, Object)
  2181. fullName: System.Object.Equals(System.Object, System.Object)
  2182. spec.csharp:
  2183. - uid: System.Object.Equals(System.Object,System.Object)
  2184. name: Equals
  2185. nameWithType: Object.Equals
  2186. fullName: System.Object.Equals
  2187. isExternal: true
  2188. - name: (
  2189. nameWithType: (
  2190. fullName: (
  2191. - uid: System.Object
  2192. name: Object
  2193. nameWithType: Object
  2194. fullName: System.Object
  2195. isExternal: true
  2196. - name: ', '
  2197. nameWithType: ', '
  2198. fullName: ', '
  2199. - uid: System.Object
  2200. name: Object
  2201. nameWithType: Object
  2202. fullName: System.Object
  2203. isExternal: true
  2204. - name: )
  2205. nameWithType: )
  2206. fullName: )
  2207. spec.vb:
  2208. - uid: System.Object.Equals(System.Object,System.Object)
  2209. name: Equals
  2210. nameWithType: Object.Equals
  2211. fullName: System.Object.Equals
  2212. isExternal: true
  2213. - name: (
  2214. nameWithType: (
  2215. fullName: (
  2216. - uid: System.Object
  2217. name: Object
  2218. nameWithType: Object
  2219. fullName: System.Object
  2220. isExternal: true
  2221. - name: ', '
  2222. nameWithType: ', '
  2223. fullName: ', '
  2224. - uid: System.Object
  2225. name: Object
  2226. nameWithType: Object
  2227. fullName: System.Object
  2228. isExternal: true
  2229. - name: )
  2230. nameWithType: )
  2231. fullName: )
  2232. - uid: System.Object.GetHashCode
  2233. commentId: M:System.Object.GetHashCode
  2234. parent: System.Object
  2235. isExternal: true
  2236. name: GetHashCode()
  2237. nameWithType: Object.GetHashCode()
  2238. fullName: System.Object.GetHashCode()
  2239. spec.csharp:
  2240. - uid: System.Object.GetHashCode
  2241. name: GetHashCode
  2242. nameWithType: Object.GetHashCode
  2243. fullName: System.Object.GetHashCode
  2244. isExternal: true
  2245. - name: (
  2246. nameWithType: (
  2247. fullName: (
  2248. - name: )
  2249. nameWithType: )
  2250. fullName: )
  2251. spec.vb:
  2252. - uid: System.Object.GetHashCode
  2253. name: GetHashCode
  2254. nameWithType: Object.GetHashCode
  2255. fullName: System.Object.GetHashCode
  2256. isExternal: true
  2257. - name: (
  2258. nameWithType: (
  2259. fullName: (
  2260. - name: )
  2261. nameWithType: )
  2262. fullName: )
  2263. - uid: System.Object.GetType
  2264. commentId: M:System.Object.GetType
  2265. parent: System.Object
  2266. isExternal: true
  2267. name: GetType()
  2268. nameWithType: Object.GetType()
  2269. fullName: System.Object.GetType()
  2270. spec.csharp:
  2271. - uid: System.Object.GetType
  2272. name: GetType
  2273. nameWithType: Object.GetType
  2274. fullName: System.Object.GetType
  2275. isExternal: true
  2276. - name: (
  2277. nameWithType: (
  2278. fullName: (
  2279. - name: )
  2280. nameWithType: )
  2281. fullName: )
  2282. spec.vb:
  2283. - uid: System.Object.GetType
  2284. name: GetType
  2285. nameWithType: Object.GetType
  2286. fullName: System.Object.GetType
  2287. isExternal: true
  2288. - name: (
  2289. nameWithType: (
  2290. fullName: (
  2291. - name: )
  2292. nameWithType: )
  2293. fullName: )
  2294. - uid: System.Object.MemberwiseClone
  2295. commentId: M:System.Object.MemberwiseClone
  2296. parent: System.Object
  2297. isExternal: true
  2298. name: MemberwiseClone()
  2299. nameWithType: Object.MemberwiseClone()
  2300. fullName: System.Object.MemberwiseClone()
  2301. spec.csharp:
  2302. - uid: System.Object.MemberwiseClone
  2303. name: MemberwiseClone
  2304. nameWithType: Object.MemberwiseClone
  2305. fullName: System.Object.MemberwiseClone
  2306. isExternal: true
  2307. - name: (
  2308. nameWithType: (
  2309. fullName: (
  2310. - name: )
  2311. nameWithType: )
  2312. fullName: )
  2313. spec.vb:
  2314. - uid: System.Object.MemberwiseClone
  2315. name: MemberwiseClone
  2316. nameWithType: Object.MemberwiseClone
  2317. fullName: System.Object.MemberwiseClone
  2318. isExternal: true
  2319. - name: (
  2320. nameWithType: (
  2321. fullName: (
  2322. - name: )
  2323. nameWithType: )
  2324. fullName: )
  2325. - uid: System.Object.ReferenceEquals(System.Object,System.Object)
  2326. commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
  2327. parent: System.Object
  2328. isExternal: true
  2329. name: ReferenceEquals(Object, Object)
  2330. nameWithType: Object.ReferenceEquals(Object, Object)
  2331. fullName: System.Object.ReferenceEquals(System.Object, System.Object)
  2332. spec.csharp:
  2333. - uid: System.Object.ReferenceEquals(System.Object,System.Object)
  2334. name: ReferenceEquals
  2335. nameWithType: Object.ReferenceEquals
  2336. fullName: System.Object.ReferenceEquals
  2337. isExternal: true
  2338. - name: (
  2339. nameWithType: (
  2340. fullName: (
  2341. - uid: System.Object
  2342. name: Object
  2343. nameWithType: Object
  2344. fullName: System.Object
  2345. isExternal: true
  2346. - name: ', '
  2347. nameWithType: ', '
  2348. fullName: ', '
  2349. - uid: System.Object
  2350. name: Object
  2351. nameWithType: Object
  2352. fullName: System.Object
  2353. isExternal: true
  2354. - name: )
  2355. nameWithType: )
  2356. fullName: )
  2357. spec.vb:
  2358. - uid: System.Object.ReferenceEquals(System.Object,System.Object)
  2359. name: ReferenceEquals
  2360. nameWithType: Object.ReferenceEquals
  2361. fullName: System.Object.ReferenceEquals
  2362. isExternal: true
  2363. - name: (
  2364. nameWithType: (
  2365. fullName: (
  2366. - uid: System.Object
  2367. name: Object
  2368. nameWithType: Object
  2369. fullName: System.Object
  2370. isExternal: true
  2371. - name: ', '
  2372. nameWithType: ', '
  2373. fullName: ', '
  2374. - uid: System.Object
  2375. name: Object
  2376. nameWithType: Object
  2377. fullName: System.Object
  2378. isExternal: true
  2379. - name: )
  2380. nameWithType: )
  2381. fullName: )
  2382. - uid: System
  2383. commentId: N:System
  2384. isExternal: true
  2385. name: System
  2386. nameWithType: System
  2387. fullName: System
  2388. - uid: System.Collections
  2389. commentId: N:System.Collections
  2390. isExternal: true
  2391. name: System.Collections
  2392. nameWithType: System.Collections
  2393. fullName: System.Collections
  2394. - uid: Terminal.Gui.Dialog.#ctor*
  2395. commentId: Overload:Terminal.Gui.Dialog.#ctor
  2396. name: Dialog
  2397. nameWithType: Dialog.Dialog
  2398. fullName: Terminal.Gui.Dialog.Dialog
  2399. - uid: NStack.ustring
  2400. commentId: T:NStack.ustring
  2401. parent: NStack
  2402. isExternal: true
  2403. name: ustring
  2404. nameWithType: ustring
  2405. fullName: NStack.ustring
  2406. - uid: System.Int32
  2407. commentId: T:System.Int32
  2408. parent: System
  2409. isExternal: true
  2410. name: Int32
  2411. nameWithType: Int32
  2412. fullName: System.Int32
  2413. - uid: Terminal.Gui.Button[]
  2414. isExternal: true
  2415. name: Button[]
  2416. nameWithType: Button[]
  2417. fullName: Terminal.Gui.Button[]
  2418. nameWithType.vb: Button()
  2419. fullName.vb: Terminal.Gui.Button()
  2420. name.vb: Button()
  2421. spec.csharp:
  2422. - uid: Terminal.Gui.Button
  2423. name: Button
  2424. nameWithType: Button
  2425. fullName: Terminal.Gui.Button
  2426. - name: '[]'
  2427. nameWithType: '[]'
  2428. fullName: '[]'
  2429. spec.vb:
  2430. - uid: Terminal.Gui.Button
  2431. name: Button
  2432. nameWithType: Button
  2433. fullName: Terminal.Gui.Button
  2434. - name: ()
  2435. nameWithType: ()
  2436. fullName: ()
  2437. - uid: NStack
  2438. commentId: N:NStack
  2439. isExternal: true
  2440. name: NStack
  2441. nameWithType: NStack
  2442. fullName: NStack
  2443. - uid: Terminal.Gui.Dialog.AddButton*
  2444. commentId: Overload:Terminal.Gui.Dialog.AddButton
  2445. name: AddButton
  2446. nameWithType: Dialog.AddButton
  2447. fullName: Terminal.Gui.Dialog.AddButton
  2448. - uid: Terminal.Gui.Dialog.LayoutSubviews
  2449. commentId: M:Terminal.Gui.Dialog.LayoutSubviews
  2450. parent: Terminal.Gui.Dialog
  2451. name: LayoutSubviews()
  2452. nameWithType: Dialog.LayoutSubviews()
  2453. fullName: Terminal.Gui.Dialog.LayoutSubviews()
  2454. spec.csharp:
  2455. - uid: Terminal.Gui.Dialog.LayoutSubviews
  2456. name: LayoutSubviews
  2457. nameWithType: Dialog.LayoutSubviews
  2458. fullName: Terminal.Gui.Dialog.LayoutSubviews
  2459. - name: (
  2460. nameWithType: (
  2461. fullName: (
  2462. - name: )
  2463. nameWithType: )
  2464. fullName: )
  2465. spec.vb:
  2466. - uid: Terminal.Gui.Dialog.LayoutSubviews
  2467. name: LayoutSubviews
  2468. nameWithType: Dialog.LayoutSubviews
  2469. fullName: Terminal.Gui.Dialog.LayoutSubviews
  2470. - name: (
  2471. nameWithType: (
  2472. fullName: (
  2473. - name: )
  2474. nameWithType: )
  2475. fullName: )
  2476. - uid: Terminal.Gui.View.LayoutSubviews
  2477. commentId: M:Terminal.Gui.View.LayoutSubviews
  2478. parent: Terminal.Gui.View
  2479. name: LayoutSubviews()
  2480. nameWithType: View.LayoutSubviews()
  2481. fullName: Terminal.Gui.View.LayoutSubviews()
  2482. spec.csharp:
  2483. - uid: Terminal.Gui.View.LayoutSubviews
  2484. name: LayoutSubviews
  2485. nameWithType: View.LayoutSubviews
  2486. fullName: Terminal.Gui.View.LayoutSubviews
  2487. - name: (
  2488. nameWithType: (
  2489. fullName: (
  2490. - name: )
  2491. nameWithType: )
  2492. fullName: )
  2493. spec.vb:
  2494. - uid: Terminal.Gui.View.LayoutSubviews
  2495. name: LayoutSubviews
  2496. nameWithType: View.LayoutSubviews
  2497. fullName: Terminal.Gui.View.LayoutSubviews
  2498. - name: (
  2499. nameWithType: (
  2500. fullName: (
  2501. - name: )
  2502. nameWithType: )
  2503. fullName: )
  2504. - uid: Terminal.Gui.Dialog.LayoutSubviews*
  2505. commentId: Overload:Terminal.Gui.Dialog.LayoutSubviews
  2506. name: LayoutSubviews
  2507. nameWithType: Dialog.LayoutSubviews
  2508. fullName: Terminal.Gui.Dialog.LayoutSubviews
  2509. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  2510. commentId: M:Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  2511. parent: Terminal.Gui.Dialog
  2512. name: ProcessKey(KeyEvent)
  2513. nameWithType: Dialog.ProcessKey(KeyEvent)
  2514. fullName: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  2515. spec.csharp:
  2516. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  2517. name: ProcessKey
  2518. nameWithType: Dialog.ProcessKey
  2519. fullName: Terminal.Gui.Dialog.ProcessKey
  2520. - name: (
  2521. nameWithType: (
  2522. fullName: (
  2523. - uid: Terminal.Gui.KeyEvent
  2524. name: KeyEvent
  2525. nameWithType: KeyEvent
  2526. fullName: Terminal.Gui.KeyEvent
  2527. - name: )
  2528. nameWithType: )
  2529. fullName: )
  2530. spec.vb:
  2531. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  2532. name: ProcessKey
  2533. nameWithType: Dialog.ProcessKey
  2534. fullName: Terminal.Gui.Dialog.ProcessKey
  2535. - name: (
  2536. nameWithType: (
  2537. fullName: (
  2538. - uid: Terminal.Gui.KeyEvent
  2539. name: KeyEvent
  2540. nameWithType: KeyEvent
  2541. fullName: Terminal.Gui.KeyEvent
  2542. - name: )
  2543. nameWithType: )
  2544. fullName: )
  2545. - uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
  2546. commentId: M:Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
  2547. parent: Terminal.Gui.Toplevel
  2548. name: ProcessKey(KeyEvent)
  2549. nameWithType: Toplevel.ProcessKey(KeyEvent)
  2550. fullName: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
  2551. spec.csharp:
  2552. - uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
  2553. name: ProcessKey
  2554. nameWithType: Toplevel.ProcessKey
  2555. fullName: Terminal.Gui.Toplevel.ProcessKey
  2556. - name: (
  2557. nameWithType: (
  2558. fullName: (
  2559. - uid: Terminal.Gui.KeyEvent
  2560. name: KeyEvent
  2561. nameWithType: KeyEvent
  2562. fullName: Terminal.Gui.KeyEvent
  2563. - name: )
  2564. nameWithType: )
  2565. fullName: )
  2566. spec.vb:
  2567. - uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
  2568. name: ProcessKey
  2569. nameWithType: Toplevel.ProcessKey
  2570. fullName: Terminal.Gui.Toplevel.ProcessKey
  2571. - name: (
  2572. nameWithType: (
  2573. fullName: (
  2574. - uid: Terminal.Gui.KeyEvent
  2575. name: KeyEvent
  2576. nameWithType: KeyEvent
  2577. fullName: Terminal.Gui.KeyEvent
  2578. - name: )
  2579. nameWithType: )
  2580. fullName: )
  2581. - uid: Terminal.Gui.Dialog.ProcessKey*
  2582. commentId: Overload:Terminal.Gui.Dialog.ProcessKey
  2583. name: ProcessKey
  2584. nameWithType: Dialog.ProcessKey
  2585. fullName: Terminal.Gui.Dialog.ProcessKey
  2586. - uid: Terminal.Gui.KeyEvent
  2587. commentId: T:Terminal.Gui.KeyEvent
  2588. parent: Terminal.Gui
  2589. name: KeyEvent
  2590. nameWithType: KeyEvent
  2591. fullName: Terminal.Gui.KeyEvent
  2592. - uid: System.Boolean
  2593. commentId: T:System.Boolean
  2594. parent: System
  2595. isExternal: true
  2596. name: Boolean
  2597. nameWithType: Boolean
  2598. fullName: System.Boolean
  2599. shouldSkipMarkup: true