Terminal.Gui.OpenDialog.yml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.OpenDialog
  4. id: OpenDialog
  5. children:
  6. - Terminal.Gui.OpenDialog.#ctor(NStack.ustring,NStack.ustring)
  7. - Terminal.Gui.OpenDialog.AllowsMultipleSelection
  8. - Terminal.Gui.OpenDialog.CanChooseDirectories
  9. - Terminal.Gui.OpenDialog.CanChooseFiles
  10. - Terminal.Gui.OpenDialog.FilePaths
  11. langs:
  12. - csharp
  13. name: OpenDialog
  14. nameWithType: OpenDialog
  15. fullName: Terminal.Gui.OpenDialog
  16. type: Class
  17. assemblies:
  18. - Terminal.Gui
  19. namespace: Terminal.Gui
  20. summary: The Open Dialog provides an interactive dialog box for users to select files or directories.
  21. remarks: >-
  22. <p>
  23. The open dialog can be used to select files for opening, it can be configured to allow
  24. multiple items to be selected (based on the AllowsMultipleSelection) variable and
  25. you can control whether this should allow files or directories to be selected.
  26. </p>
  27. <p>
  28. To use it, create an instance of the OpenDialog, configure its properties, and then
  29. call Application.Run on the resulting instance. This will run the dialog modally,
  30. and when this returns, the list of filds will be available on the FilePaths property.
  31. </p>
  32. <p>
  33. To select more than one file, users can use the spacebar, or control-t.
  34. </p>
  35. syntax:
  36. content: 'public class OpenDialog : Terminal.Gui.FileDialog'
  37. inheritance:
  38. - System.Object
  39. - Terminal.Gui.Responder
  40. - Terminal.Gui.View
  41. - Terminal.Gui.Toplevel
  42. - Terminal.Gui.Window
  43. - Terminal.Gui.Dialog
  44. - Terminal.Gui.FileDialog
  45. implements: []
  46. inheritedMembers:
  47. - Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  48. - Terminal.Gui.Dialog.LayoutSubviews
  49. - Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  50. - Terminal.Gui.FileDialog.AllowedFileTypes
  51. - Terminal.Gui.FileDialog.AllowsOtherFileTypes
  52. - Terminal.Gui.FileDialog.CanCreateDirectories
  53. - Terminal.Gui.FileDialog.DirectoryPath
  54. - Terminal.Gui.FileDialog.FilePath
  55. - Terminal.Gui.FileDialog.IsExtensionHidden
  56. - Terminal.Gui.FileDialog.Message
  57. - Terminal.Gui.FileDialog.NameFieldLabel
  58. - Terminal.Gui.FileDialog.Prompt
  59. - Terminal.Gui.FileDialog.WillPresent
  60. - Terminal.Gui.Toplevel.CanFocus
  61. - Terminal.Gui.Toplevel.Create
  62. - Terminal.Gui.Toplevel.Running
  63. - Terminal.Gui.View.Add(Terminal.Gui.View[])
  64. - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  65. - Terminal.Gui.View.Bounds
  66. - Terminal.Gui.View.ChildNeedsDisplay
  67. - Terminal.Gui.View.Clear
  68. - Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  69. - Terminal.Gui.View.ClearNeedsDisplay
  70. - Terminal.Gui.View.ClipToBounds
  71. - Terminal.Gui.View.ColorScheme
  72. - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  73. - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  74. - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  75. - Terminal.Gui.View.Driver
  76. - Terminal.Gui.View.EnsureFocus
  77. - Terminal.Gui.View.Focused
  78. - Terminal.Gui.View.FocusFirst
  79. - Terminal.Gui.View.FocusLast
  80. - Terminal.Gui.View.FocusNext
  81. - Terminal.Gui.View.FocusPrev
  82. - Terminal.Gui.View.Frame
  83. - Terminal.Gui.View.HasFocus
  84. - Terminal.Gui.View.Height
  85. - Terminal.Gui.View.Id
  86. - Terminal.Gui.View.LayoutStyle
  87. - Terminal.Gui.View.MostFocused
  88. - Terminal.Gui.View.Move(System.Int32,System.Int32)
  89. - Terminal.Gui.View.PositionCursor
  90. - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  91. - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  92. - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  93. - Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  94. - Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  95. - Terminal.Gui.View.SetNeedsDisplay
  96. - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  97. - Terminal.Gui.View.Subviews
  98. - Terminal.Gui.View.SuperView
  99. - Terminal.Gui.View.ToString
  100. - Terminal.Gui.View.WantMousePositionReports
  101. - Terminal.Gui.View.Width
  102. - Terminal.Gui.View.X
  103. - Terminal.Gui.View.Y
  104. - Terminal.Gui.Window.Add(Terminal.Gui.View)
  105. - Terminal.Gui.Window.GetEnumerator
  106. - Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  107. - Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  108. - Terminal.Gui.Window.Remove(Terminal.Gui.View)
  109. - Terminal.Gui.Window.RemoveAll
  110. - Terminal.Gui.Window.Title
  111. - uid: Terminal.Gui.OpenDialog.#ctor(NStack.ustring,NStack.ustring)
  112. id: '#ctor(NStack.ustring,NStack.ustring)'
  113. parent: Terminal.Gui.OpenDialog
  114. langs:
  115. - csharp
  116. name: OpenDialog(ustring, ustring)
  117. nameWithType: OpenDialog.OpenDialog(ustring, ustring)
  118. fullName: OpenDialog.OpenDialog(ustring, ustring)
  119. type: Constructor
  120. assemblies:
  121. - Terminal.Gui
  122. namespace: Terminal.Gui
  123. syntax:
  124. content: public OpenDialog (NStack.ustring title, NStack.ustring message);
  125. parameters:
  126. - id: title
  127. type: NStack.ustring
  128. description: To be added.
  129. - id: message
  130. type: NStack.ustring
  131. description: To be added.
  132. overload: Terminal.Gui.OpenDialog.#ctor*
  133. exceptions: []
  134. - uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection
  135. id: AllowsMultipleSelection
  136. parent: Terminal.Gui.OpenDialog
  137. langs:
  138. - csharp
  139. name: AllowsMultipleSelection
  140. nameWithType: OpenDialog.AllowsMultipleSelection
  141. fullName: OpenDialog.AllowsMultipleSelection
  142. type: Property
  143. assemblies:
  144. - Terminal.Gui
  145. namespace: Terminal.Gui
  146. summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.OpenDialog"></xref> allows multiple selection.
  147. syntax:
  148. content: public bool AllowsMultipleSelection { get; set; }
  149. return:
  150. type: System.Boolean
  151. description: <code>true</code> if allows multiple selection; otherwise, <code>false</code>, defaults to false.
  152. overload: Terminal.Gui.OpenDialog.AllowsMultipleSelection*
  153. exceptions: []
  154. - uid: Terminal.Gui.OpenDialog.CanChooseDirectories
  155. id: CanChooseDirectories
  156. parent: Terminal.Gui.OpenDialog
  157. langs:
  158. - csharp
  159. name: CanChooseDirectories
  160. nameWithType: OpenDialog.CanChooseDirectories
  161. fullName: OpenDialog.CanChooseDirectories
  162. type: Property
  163. assemblies:
  164. - Terminal.Gui
  165. namespace: Terminal.Gui
  166. summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.OpenDialog"></xref> can choose directories.
  167. syntax:
  168. content: public bool CanChooseDirectories { get; set; }
  169. return:
  170. type: System.Boolean
  171. description: <code>true</code> if can choose directories; otherwise, <code>false</code> defaults to <code>false</code>.
  172. overload: Terminal.Gui.OpenDialog.CanChooseDirectories*
  173. exceptions: []
  174. - uid: Terminal.Gui.OpenDialog.CanChooseFiles
  175. id: CanChooseFiles
  176. parent: Terminal.Gui.OpenDialog
  177. langs:
  178. - csharp
  179. name: CanChooseFiles
  180. nameWithType: OpenDialog.CanChooseFiles
  181. fullName: OpenDialog.CanChooseFiles
  182. type: Property
  183. assemblies:
  184. - Terminal.Gui
  185. namespace: Terminal.Gui
  186. summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.OpenDialog"></xref> can choose files.
  187. syntax:
  188. content: public bool CanChooseFiles { get; set; }
  189. return:
  190. type: System.Boolean
  191. description: <code>true</code> if can choose files; otherwise, <code>false</code>. Defaults to <code>true</code>
  192. overload: Terminal.Gui.OpenDialog.CanChooseFiles*
  193. exceptions: []
  194. - uid: Terminal.Gui.OpenDialog.FilePaths
  195. id: FilePaths
  196. parent: Terminal.Gui.OpenDialog
  197. langs:
  198. - csharp
  199. name: FilePaths
  200. nameWithType: OpenDialog.FilePaths
  201. fullName: OpenDialog.FilePaths
  202. type: Property
  203. assemblies:
  204. - Terminal.Gui
  205. namespace: Terminal.Gui
  206. summary: Returns the selected files, or an empty list if nothing has been selected
  207. syntax:
  208. content: public System.Collections.Generic.IReadOnlyList<string> FilePaths { get; }
  209. return:
  210. type: System.Collections.Generic.IReadOnlyList{System.String}
  211. description: The file paths.
  212. overload: Terminal.Gui.OpenDialog.FilePaths*
  213. exceptions: []
  214. references:
  215. - uid: Terminal.Gui.FileDialog
  216. parent: Terminal.Gui
  217. isExternal: false
  218. name: FileDialog
  219. nameWithType: FileDialog
  220. fullName: Terminal.Gui.FileDialog
  221. - uid: Terminal.Gui.OpenDialog.#ctor(NStack.ustring,NStack.ustring)
  222. parent: Terminal.Gui.OpenDialog
  223. isExternal: false
  224. name: OpenDialog(ustring, ustring)
  225. nameWithType: OpenDialog.OpenDialog(ustring, ustring)
  226. fullName: OpenDialog.OpenDialog(ustring, ustring)
  227. - uid: NStack.ustring
  228. parent: NStack
  229. isExternal: true
  230. name: ustring
  231. nameWithType: ustring
  232. fullName: NStack.ustring
  233. - uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection
  234. parent: Terminal.Gui.OpenDialog
  235. isExternal: false
  236. name: AllowsMultipleSelection
  237. nameWithType: OpenDialog.AllowsMultipleSelection
  238. fullName: OpenDialog.AllowsMultipleSelection
  239. - uid: System.Boolean
  240. parent: System
  241. isExternal: true
  242. name: Boolean
  243. nameWithType: Boolean
  244. fullName: System.Boolean
  245. - uid: Terminal.Gui.OpenDialog.CanChooseDirectories
  246. parent: Terminal.Gui.OpenDialog
  247. isExternal: false
  248. name: CanChooseDirectories
  249. nameWithType: OpenDialog.CanChooseDirectories
  250. fullName: OpenDialog.CanChooseDirectories
  251. - uid: Terminal.Gui.OpenDialog.CanChooseFiles
  252. parent: Terminal.Gui.OpenDialog
  253. isExternal: false
  254. name: CanChooseFiles
  255. nameWithType: OpenDialog.CanChooseFiles
  256. fullName: OpenDialog.CanChooseFiles
  257. - uid: Terminal.Gui.OpenDialog.FilePaths
  258. parent: Terminal.Gui.OpenDialog
  259. isExternal: false
  260. name: FilePaths
  261. nameWithType: OpenDialog.FilePaths
  262. fullName: OpenDialog.FilePaths
  263. - uid: System.Collections.Generic.IReadOnlyList`1
  264. name: IReadOnlyList
  265. nameWithType: IReadOnlyList
  266. fullName: System.Collections.Generic.IReadOnlyList
  267. - uid: System.String
  268. name: String
  269. nameWithType: String
  270. fullName: System.String
  271. - uid: System.Collections.Generic.IReadOnlyList{System.String}
  272. parent: System.Collections.Generic
  273. isExternal: true
  274. name: IReadOnlyList<String>
  275. nameWithType: IReadOnlyList<String>
  276. fullName: System.Collections.Generic.IReadOnlyList<System.String>
  277. spec.csharp:
  278. - uid: System.Collections.Generic.IReadOnlyList`1
  279. name: IReadOnlyList
  280. nameWithType: IReadOnlyList
  281. fullName: System.Collections.Generic.IReadOnlyList
  282. - name: <
  283. nameWithType: <
  284. fullName: <
  285. - uid: System.String
  286. name: String
  287. nameWithType: String
  288. fullName: System.String
  289. - name: '>'
  290. nameWithType: '>'
  291. fullName: '>'
  292. - uid: Terminal.Gui.OpenDialog.#ctor*
  293. parent: Terminal.Gui.OpenDialog
  294. isExternal: false
  295. name: OpenDialog
  296. nameWithType: OpenDialog.OpenDialog
  297. fullName: OpenDialog.OpenDialog
  298. - uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection*
  299. parent: Terminal.Gui.OpenDialog
  300. isExternal: false
  301. name: AllowsMultipleSelection
  302. nameWithType: OpenDialog.AllowsMultipleSelection
  303. fullName: OpenDialog.AllowsMultipleSelection
  304. - uid: Terminal.Gui.OpenDialog.CanChooseDirectories*
  305. parent: Terminal.Gui.OpenDialog
  306. isExternal: false
  307. name: CanChooseDirectories
  308. nameWithType: OpenDialog.CanChooseDirectories
  309. fullName: OpenDialog.CanChooseDirectories
  310. - uid: Terminal.Gui.OpenDialog.CanChooseFiles*
  311. parent: Terminal.Gui.OpenDialog
  312. isExternal: false
  313. name: CanChooseFiles
  314. nameWithType: OpenDialog.CanChooseFiles
  315. fullName: OpenDialog.CanChooseFiles
  316. - uid: Terminal.Gui.OpenDialog.FilePaths*
  317. parent: Terminal.Gui.OpenDialog
  318. isExternal: false
  319. name: FilePaths
  320. nameWithType: OpenDialog.FilePaths
  321. fullName: OpenDialog.FilePaths
  322. - uid: Terminal.Gui.Toplevel.CanFocus
  323. parent: Terminal.Gui.Toplevel
  324. isExternal: false
  325. name: CanFocus
  326. nameWithType: Toplevel.CanFocus
  327. fullName: Toplevel.CanFocus
  328. - uid: Terminal.Gui.View.HasFocus
  329. parent: Terminal.Gui.View
  330. isExternal: false
  331. name: HasFocus
  332. nameWithType: View.HasFocus
  333. fullName: View.HasFocus
  334. - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  335. parent: Terminal.Gui.Window
  336. isExternal: false
  337. name: MouseEvent(MouseEvent)
  338. nameWithType: Window.MouseEvent(MouseEvent)
  339. fullName: Window.MouseEvent(MouseEvent)
  340. - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  341. parent: Terminal.Gui.View
  342. isExternal: false
  343. name: ProcessColdKey(KeyEvent)
  344. nameWithType: View.ProcessColdKey(KeyEvent)
  345. fullName: View.ProcessColdKey(KeyEvent)
  346. - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  347. parent: Terminal.Gui.View
  348. isExternal: false
  349. name: ProcessHotKey(KeyEvent)
  350. nameWithType: View.ProcessHotKey(KeyEvent)
  351. fullName: View.ProcessHotKey(KeyEvent)
  352. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  353. parent: Terminal.Gui.Dialog
  354. isExternal: false
  355. name: ProcessKey(KeyEvent)
  356. nameWithType: Dialog.ProcessKey(KeyEvent)
  357. fullName: Dialog.ProcessKey(KeyEvent)
  358. - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
  359. parent: Terminal.Gui.Window
  360. isExternal: false
  361. name: Add(View)
  362. nameWithType: Window.Add(View)
  363. fullName: Window.Add(View)
  364. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  365. parent: Terminal.Gui.View
  366. isExternal: false
  367. name: Add(View[])
  368. nameWithType: View.Add(View[])
  369. fullName: View.Add(View[])
  370. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  371. parent: Terminal.Gui.View
  372. isExternal: false
  373. name: AddRune(Int32, Int32, Rune)
  374. nameWithType: View.AddRune(Int32, Int32, Rune)
  375. fullName: View.AddRune(Int32, Int32, Rune)
  376. - uid: Terminal.Gui.View.Bounds
  377. parent: Terminal.Gui.View
  378. isExternal: false
  379. name: Bounds
  380. nameWithType: View.Bounds
  381. fullName: View.Bounds
  382. - uid: Terminal.Gui.View.ChildNeedsDisplay
  383. parent: Terminal.Gui.View
  384. isExternal: false
  385. name: ChildNeedsDisplay()
  386. nameWithType: View.ChildNeedsDisplay()
  387. fullName: View.ChildNeedsDisplay()
  388. - uid: Terminal.Gui.View.Clear
  389. parent: Terminal.Gui.View
  390. isExternal: false
  391. name: Clear()
  392. nameWithType: View.Clear()
  393. fullName: View.Clear()
  394. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  395. parent: Terminal.Gui.View
  396. isExternal: false
  397. name: Clear(Rect)
  398. nameWithType: View.Clear(Rect)
  399. fullName: View.Clear(Rect)
  400. - uid: Terminal.Gui.View.ClearNeedsDisplay
  401. parent: Terminal.Gui.View
  402. isExternal: false
  403. name: ClearNeedsDisplay()
  404. nameWithType: View.ClearNeedsDisplay()
  405. fullName: View.ClearNeedsDisplay()
  406. - uid: Terminal.Gui.View.ClipToBounds
  407. parent: Terminal.Gui.View
  408. isExternal: false
  409. name: ClipToBounds()
  410. nameWithType: View.ClipToBounds()
  411. fullName: View.ClipToBounds()
  412. - uid: Terminal.Gui.View.ColorScheme
  413. parent: Terminal.Gui.View
  414. isExternal: false
  415. name: ColorScheme
  416. nameWithType: View.ColorScheme
  417. fullName: View.ColorScheme
  418. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  419. parent: Terminal.Gui.View
  420. isExternal: false
  421. name: DrawFrame(Rect, Int32, Boolean)
  422. nameWithType: View.DrawFrame(Rect, Int32, Boolean)
  423. fullName: View.DrawFrame(Rect, Int32, Boolean)
  424. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  425. parent: Terminal.Gui.View
  426. isExternal: false
  427. name: DrawHotString(ustring, Boolean, ColorScheme)
  428. nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme)
  429. fullName: View.DrawHotString(ustring, Boolean, ColorScheme)
  430. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  431. parent: Terminal.Gui.View
  432. isExternal: false
  433. name: DrawHotString(ustring, Attribute, Attribute)
  434. nameWithType: View.DrawHotString(ustring, Attribute, Attribute)
  435. fullName: View.DrawHotString(ustring, Attribute, Attribute)
  436. - uid: Terminal.Gui.View.Driver
  437. parent: Terminal.Gui.View
  438. isExternal: false
  439. name: Driver
  440. nameWithType: View.Driver
  441. fullName: View.Driver
  442. - uid: Terminal.Gui.View.EnsureFocus
  443. parent: Terminal.Gui.View
  444. isExternal: false
  445. name: EnsureFocus()
  446. nameWithType: View.EnsureFocus()
  447. fullName: View.EnsureFocus()
  448. - uid: Terminal.Gui.View.Focused
  449. parent: Terminal.Gui.View
  450. isExternal: false
  451. name: Focused
  452. nameWithType: View.Focused
  453. fullName: View.Focused
  454. - uid: Terminal.Gui.View.FocusFirst
  455. parent: Terminal.Gui.View
  456. isExternal: false
  457. name: FocusFirst()
  458. nameWithType: View.FocusFirst()
  459. fullName: View.FocusFirst()
  460. - uid: Terminal.Gui.View.FocusLast
  461. parent: Terminal.Gui.View
  462. isExternal: false
  463. name: FocusLast()
  464. nameWithType: View.FocusLast()
  465. fullName: View.FocusLast()
  466. - uid: Terminal.Gui.View.FocusNext
  467. parent: Terminal.Gui.View
  468. isExternal: false
  469. name: FocusNext()
  470. nameWithType: View.FocusNext()
  471. fullName: View.FocusNext()
  472. - uid: Terminal.Gui.View.FocusPrev
  473. parent: Terminal.Gui.View
  474. isExternal: false
  475. name: FocusPrev()
  476. nameWithType: View.FocusPrev()
  477. fullName: View.FocusPrev()
  478. - uid: Terminal.Gui.View.Frame
  479. parent: Terminal.Gui.View
  480. isExternal: false
  481. name: Frame
  482. nameWithType: View.Frame
  483. fullName: View.Frame
  484. - uid: Terminal.Gui.Window.GetEnumerator
  485. parent: Terminal.Gui.Window
  486. isExternal: false
  487. name: GetEnumerator()
  488. nameWithType: Window.GetEnumerator()
  489. fullName: Window.GetEnumerator()
  490. - uid: Terminal.Gui.View.Height
  491. parent: Terminal.Gui.View
  492. isExternal: false
  493. name: Height
  494. nameWithType: View.Height
  495. fullName: View.Height
  496. - uid: Terminal.Gui.View.Id
  497. parent: Terminal.Gui.View
  498. isExternal: false
  499. name: Id
  500. nameWithType: View.Id
  501. fullName: View.Id
  502. - uid: Terminal.Gui.View.LayoutStyle
  503. parent: Terminal.Gui.View
  504. isExternal: false
  505. name: LayoutStyle
  506. nameWithType: View.LayoutStyle
  507. fullName: View.LayoutStyle
  508. - uid: Terminal.Gui.Dialog.LayoutSubviews
  509. parent: Terminal.Gui.Dialog
  510. isExternal: false
  511. name: LayoutSubviews()
  512. nameWithType: Dialog.LayoutSubviews()
  513. fullName: Dialog.LayoutSubviews()
  514. - uid: Terminal.Gui.View.MostFocused
  515. parent: Terminal.Gui.View
  516. isExternal: false
  517. name: MostFocused
  518. nameWithType: View.MostFocused
  519. fullName: View.MostFocused
  520. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  521. parent: Terminal.Gui.View
  522. isExternal: false
  523. name: Move(Int32, Int32)
  524. nameWithType: View.Move(Int32, Int32)
  525. fullName: View.Move(Int32, Int32)
  526. - uid: Terminal.Gui.View.PositionCursor
  527. parent: Terminal.Gui.View
  528. isExternal: false
  529. name: PositionCursor()
  530. nameWithType: View.PositionCursor()
  531. fullName: View.PositionCursor()
  532. - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  533. parent: Terminal.Gui.Window
  534. isExternal: false
  535. name: Redraw(Rect)
  536. nameWithType: Window.Redraw(Rect)
  537. fullName: Window.Redraw(Rect)
  538. - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
  539. parent: Terminal.Gui.Window
  540. isExternal: false
  541. name: Remove(View)
  542. nameWithType: Window.Remove(View)
  543. fullName: Window.Remove(View)
  544. - uid: Terminal.Gui.Window.RemoveAll
  545. parent: Terminal.Gui.Window
  546. isExternal: false
  547. name: RemoveAll()
  548. nameWithType: Window.RemoveAll()
  549. fullName: Window.RemoveAll()
  550. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  551. parent: Terminal.Gui.View
  552. isExternal: false
  553. name: ScreenToView(Int32, Int32)
  554. nameWithType: View.ScreenToView(Int32, Int32)
  555. fullName: View.ScreenToView(Int32, Int32)
  556. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  557. parent: Terminal.Gui.View
  558. isExternal: false
  559. name: SetClip(Rect)
  560. nameWithType: View.SetClip(Rect)
  561. fullName: View.SetClip(Rect)
  562. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  563. parent: Terminal.Gui.View
  564. isExternal: false
  565. name: SetFocus(View)
  566. nameWithType: View.SetFocus(View)
  567. fullName: View.SetFocus(View)
  568. - uid: Terminal.Gui.View.SetNeedsDisplay
  569. parent: Terminal.Gui.View
  570. isExternal: false
  571. name: SetNeedsDisplay()
  572. nameWithType: View.SetNeedsDisplay()
  573. fullName: View.SetNeedsDisplay()
  574. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  575. parent: Terminal.Gui.View
  576. isExternal: false
  577. name: SetNeedsDisplay(Rect)
  578. nameWithType: View.SetNeedsDisplay(Rect)
  579. fullName: View.SetNeedsDisplay(Rect)
  580. - uid: Terminal.Gui.View.Subviews
  581. parent: Terminal.Gui.View
  582. isExternal: false
  583. name: Subviews
  584. nameWithType: View.Subviews
  585. fullName: View.Subviews
  586. - uid: Terminal.Gui.View.SuperView
  587. parent: Terminal.Gui.View
  588. isExternal: false
  589. name: SuperView
  590. nameWithType: View.SuperView
  591. fullName: View.SuperView
  592. - uid: Terminal.Gui.View.ToString
  593. parent: Terminal.Gui.View
  594. isExternal: false
  595. name: ToString()
  596. nameWithType: View.ToString()
  597. fullName: View.ToString()
  598. - uid: Terminal.Gui.View.WantMousePositionReports
  599. parent: Terminal.Gui.View
  600. isExternal: false
  601. name: WantMousePositionReports
  602. nameWithType: View.WantMousePositionReports
  603. fullName: View.WantMousePositionReports
  604. - uid: Terminal.Gui.View.Width
  605. parent: Terminal.Gui.View
  606. isExternal: false
  607. name: Width
  608. nameWithType: View.Width
  609. fullName: View.Width
  610. - uid: Terminal.Gui.View.X
  611. parent: Terminal.Gui.View
  612. isExternal: false
  613. name: X
  614. nameWithType: View.X
  615. fullName: View.X
  616. - uid: Terminal.Gui.View.Y
  617. parent: Terminal.Gui.View
  618. isExternal: false
  619. name: Y
  620. nameWithType: View.Y
  621. fullName: View.Y
  622. - uid: Terminal.Gui.Toplevel.Create
  623. parent: Terminal.Gui.Toplevel
  624. isExternal: false
  625. name: Create()
  626. nameWithType: Toplevel.Create()
  627. fullName: Toplevel.Create()
  628. - uid: Terminal.Gui.Toplevel.Running
  629. parent: Terminal.Gui.Toplevel
  630. isExternal: false
  631. name: Running
  632. nameWithType: Toplevel.Running
  633. fullName: Toplevel.Running
  634. - uid: Terminal.Gui.FileDialog.WillPresent
  635. parent: Terminal.Gui.FileDialog
  636. isExternal: false
  637. name: WillPresent()
  638. nameWithType: FileDialog.WillPresent()
  639. fullName: FileDialog.WillPresent()
  640. - uid: Terminal.Gui.Window.Title
  641. parent: Terminal.Gui.Window
  642. isExternal: false
  643. name: Title
  644. nameWithType: Window.Title
  645. fullName: Window.Title
  646. - uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  647. parent: Terminal.Gui.Dialog
  648. isExternal: false
  649. name: AddButton(Button)
  650. nameWithType: Dialog.AddButton(Button)
  651. fullName: Dialog.AddButton(Button)
  652. - uid: Terminal.Gui.FileDialog.AllowedFileTypes
  653. parent: Terminal.Gui.FileDialog
  654. isExternal: false
  655. name: AllowedFileTypes
  656. nameWithType: FileDialog.AllowedFileTypes
  657. fullName: FileDialog.AllowedFileTypes
  658. - uid: Terminal.Gui.FileDialog.AllowsOtherFileTypes
  659. parent: Terminal.Gui.FileDialog
  660. isExternal: false
  661. name: AllowsOtherFileTypes
  662. nameWithType: FileDialog.AllowsOtherFileTypes
  663. fullName: FileDialog.AllowsOtherFileTypes
  664. - uid: Terminal.Gui.FileDialog.CanCreateDirectories
  665. parent: Terminal.Gui.FileDialog
  666. isExternal: false
  667. name: CanCreateDirectories
  668. nameWithType: FileDialog.CanCreateDirectories
  669. fullName: FileDialog.CanCreateDirectories
  670. - uid: Terminal.Gui.FileDialog.DirectoryPath
  671. parent: Terminal.Gui.FileDialog
  672. isExternal: false
  673. name: DirectoryPath
  674. nameWithType: FileDialog.DirectoryPath
  675. fullName: FileDialog.DirectoryPath
  676. - uid: Terminal.Gui.FileDialog.FilePath
  677. parent: Terminal.Gui.FileDialog
  678. isExternal: false
  679. name: FilePath
  680. nameWithType: FileDialog.FilePath
  681. fullName: FileDialog.FilePath
  682. - uid: Terminal.Gui.FileDialog.IsExtensionHidden
  683. parent: Terminal.Gui.FileDialog
  684. isExternal: false
  685. name: IsExtensionHidden
  686. nameWithType: FileDialog.IsExtensionHidden
  687. fullName: FileDialog.IsExtensionHidden
  688. - uid: Terminal.Gui.FileDialog.Message
  689. parent: Terminal.Gui.FileDialog
  690. isExternal: false
  691. name: Message
  692. nameWithType: FileDialog.Message
  693. fullName: FileDialog.Message
  694. - uid: Terminal.Gui.FileDialog.NameFieldLabel
  695. parent: Terminal.Gui.FileDialog
  696. isExternal: false
  697. name: NameFieldLabel
  698. nameWithType: FileDialog.NameFieldLabel
  699. fullName: FileDialog.NameFieldLabel
  700. - uid: Terminal.Gui.FileDialog.Prompt
  701. parent: Terminal.Gui.FileDialog
  702. isExternal: false
  703. name: Prompt
  704. nameWithType: FileDialog.Prompt
  705. fullName: FileDialog.Prompt