2
0

Terminal.Gui.FileDialog.yml 82 KB

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