Terminal.Gui.SaveDialog.yml 70 KB

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